Scroll bgcolor="#FFFFFF">

scroll.lib
(Requires kernel.lib and create.lib)

scrollBox:This function returns a handle that can be used to control a scrollBox. It is imperative that both name have the same values.
name=new scrollBox("name")

innerDiv:This value references the DIV that will be used as the scrollable area. The value will return a handle to control that DIV. For instance, name.innerDiv.write("Hello World"). If you want to know the name of the DIV, use scroll_name=name.innerDiv.obj.
name.innerDiv.function()

outerDiv:This value references the DIV that will outline the scrollable area. The value will return a handle to control that DIV. For instance, name.outerDiv.move(10,10). If you want to know the name of the DIV, use scroll_name=name.outerDiv.obj.
name.outerDiv.function()

Scroll:This function will scroll to the x and y coordinates in the scrollable area.
name.scroll(x,y)

Scroll directions: These functions will scroll left, right, up, or down at an increment of pixels. To stop the functions from scrolling continuously, use name.stop().
name.left(increment)
name.right(increment)
name.down(increment)
name.up(increment)
name.stop()

Scroll capture: This function will capture the x and y coordinates of a DIV being scrolled.
function scrolling(name,x,y){}