//    Instruction Example :      icon.rotation.set (objectid,float,float,float)


        screen.resolution.set (512,384)

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

        text.display ("Press a key to exit.",CENTER,350)

        @icon=icon.load ("avo\dinosaur.png")
        icon.persistence.set (@icon,ON)
        icon.display (@icon,CENTER,CENTER)

        repeat ()
          icon.rotation.set (@icon,0.5,0.9,number.random.get (0.1,359.9))
          time.wait (0.3)
        until (keyboard.get ())

        script.stop ()