//    Instruction Example :      text.color.set (objectid,long,long,long)


        screen.resolution.set (512,384)

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

        @text=text.create ("Hello world...")
        text.persistence.set (@text,TRUE)
        text.display (@text,CENTER,CENTER)

        text.display ("Press a key to continue.",CENTER,20)

        keyboard.wait ()

        text.color.set (@text,125,255,255)

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

        keyboard.wait ()

        script.stop ()