hey Tom, You can also restrict the cursor to the screen positions using
buddyAPI.

Using the Projector's stage rect you could place the cursor inside the
screen area, check out the scripts below.

-- movie script
global gSRect
on startMovie
  gSRect = the stage.rect
  baRestrictCursor(gSRect.left, gSRect.top, gSRect.right,gSRect.bottom)
end

on placeCursor x, y
  baPlaceCursor(gSRect.left + x, gSRect.top + y)
end
-- end movie script


on mouseUp
  placeCursor(100,100)
end

ragards

ø¤º°`°º¤ø,¸¸,ø¤º°`°º¤ø,¸¸,ø¤º°`°º¤ø
Ramesh CT
http://www.lingoman.net/
ø¤º°`°º¤ø,¸¸,ø¤º°`°º¤ø,¸¸,ø¤º°`°º¤ø

>>>
I have and love the buddi API which will let me do this but....
It using the entire screen (size) resolution as the coordinate system
and not the projector size....  so it changes depending on the screen
resolution the projector is running on.


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]

Reply via email to