//    Instruction Example :     long mouse.width.get (objectid)


        screen.resolution.set (512,384)

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

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

        screen.set (FRONT)
          %data=mouse.width.get (@mouse)
          text.display ("The width of the cursor is : " + STR (%data),CENTER,10)
          text.display ("Press a key to exit.",CENTER,350)
        screen.end ()

        keyboard.wait ()

        script.stop ()