//    Instruction Example :     long mouse.position.y.get (objectid)


        screen.resolution.set (512,384)

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

        screen.set (FRONT)
          text.display ("Press a key to exit.",CENTER,350)
        screen.end ()

        @mouse=mouse.load ("Default.csr")
        mouse.display (@mouse,CENTER,CENTER)

        screen.set (FRONT)
          repeat ()
            %data=mouse.position.y.get (@mouse)
            text.display ("     The Y position of the cursor is : " + STR (%data)+ "    ",CENTER,10)
          until (keyboard.get ())
        screen.end ()

        script.stop ()