//    Instruction Example :      window.statusbar.hide (long)


        screen.resolution.set (512,384)

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

        window.statusbar.display ()
        text.display ("Press a key to hide the status bar. ",CENTER,10)

        keyboard.wait ()

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

        window.statusbar.hide (TRUE)

        keyboard.wait ()

        window.statusbar.hide (FALSE)

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

        keyboard.wait ()

        script.stop ()