//    Instruction Example :      scroll.position.set (objectid,long,long)


        screen.resolution.set (512,384)

        screen.set (BACK)
          pattern.display ("avo\bubble.gif")
        screen.end ()

        screen.set (FRONT)
          text.display ("Press a key to set the position of the scroll.",CENTER,10)
        screen.end ()

        sequence.refresh.set (screen.refresh.get())

        @icon=icon.load ("avo\cloud.png")

        %width=icon.width.get (@icon)
        %height=icon.height.get (@icon)

        @icon_virtual=icon.create (%width*2,%height)

        screen.set (@icon_virtual)
          icon.display (@icon,%width*0,0)
          icon.display (@icon,%width*1,0)
        screen.end ()

        scroll.speed.select (100)
        @scroll=scroll.create (@icon_virtual,right,%width*1,%height)

        scroll.display (@scroll,CENTER,CENTER)

        keyboard.wait ()

        scroll.position.set (@scroll,0,0)
        text.display ("Press a key to exit.",CENTER,350)

        keyboard.wait ()

        script.stop ()