//    Instruction Example :      text.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 exit.",CENTER,350)
        screen.end ()

        text.font.select ("arial")
        text.char.height.select (48)

        @text=text.create ("Hello World")
        text.persistence.set (@text,ON)

        text.display (@text,CENTER,CENTER)

        repeat ()
          text.position.set (@text,number.random.get (0,512),number.random.get (0,384))
          time.wait (0.5)
        until (keyboard.get ())

        script.stop ()