//    Instruction Example :      window.hide (long)


        screen.resolution.set (512,384)

        text.display ("Press a key to hide the window during 2 seconds.",CENTER,10)

        keyboard.wait ()

        window.hide (true)

        time.wait (2)

        window.hide (false)

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

        keyboard.wait ()

        script.stop ( )