//    Instruction Example :      window.resolution.set (long,long)


        screen.resolution.set (512,384)

        screen.set (BACK)
         icon.display ("avo\dinosaur.png",CENTER,CENTER)
        screen.end ()

        text.display ("Press a key to set the window resolution.",CENTER,10)
        text.display (str(window.width.get())+"x"+str(window.height.get()),CENTER,CENTER)

        keyboard.wait ()

        window.resolution.set (320,200)

        text.display (str(window.width.get())+"x"+str(window.height.get()),CENTER,CENTER)
        text.display ("Press a key to exit.",CENTER,350)

        keyboard.wait ()

        script.stop ()