//    Instruction Example :      text.hide (objectid,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,ON)
        text.display (@text,CENTER,CENTER)
        text.display ("Press a key to hide the text.",CENTER,10)

        keyboard.wait ()

        text.hide (@text,TRUE)

        text.display ("Press a key to display the text.",CENTER,10)

        keyboard.wait ()

        text.hide (@text,FALSE)

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

        keyboard.wait ()

        script.stop ()