Re: Problem with correct cursor showing up

2005-11-28 Thread J. Landman Gay

[EMAIL PROTECTED] wrote:
Hope someone can help with the following problem.   I want to program a 
button so that the cursor changes to hand on MouseEnter and changes back to 
Arrow on mouseLeave.   I inserted the following script (using Macintosh OS X 
Panther):


on MouseEnter
  set the cursor to hand
  set the lockcursor to true
end MouseEnter

on mouseLeave
  set the cursor to arrow
end mouseLeave

While this works in the unbuilt program, once it is built the cursor show up 
as Watch rather than Hand   on both Macintosh and   Windows.   Anyone have 
a suggestion?   Thanks.


RR has changed the cursor IDs a couple of times and I've lost track of 
what's what. In the most current version, the cursor ID for hand is 
28. What happens if instead of using the constant hand you use the 
actual ID of 28? That is, set the cursor to 28.


--
Jacqueline Landman Gay | [EMAIL PROTECTED]
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Problem with correct cursor showing up

2005-11-27 Thread Stgoldberg
Hope someone can help with the following problem.   I want to program a 
button so that the cursor changes to hand on MouseEnter and changes back to 
Arrow on mouseLeave.   I inserted the following script (using Macintosh OS X 
Panther):

on MouseEnter
  set the cursor to hand
  set the lockcursor to true
end MouseEnter

on mouseLeave
  set the cursor to arrow
end mouseLeave

While this works in the unbuilt program, once it is built the cursor show up 
as Watch rather than Hand   on both Macintosh and   Windows.   Anyone have 
a suggestion?   Thanks.
Steve Goldberg
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Problem with correct cursor showing up

2005-11-27 Thread Sarah Reichelt
 Hope someone can help with the following problem.   I want to program a
 button so that the cursor changes to hand on MouseEnter and changes back to
 Arrow on mouseLeave.   I inserted the following script (using Macintosh OS X
 Panther):

 on MouseEnter
   set the cursor to hand
   set the lockcursor to true
 end MouseEnter

 on mouseLeave
   set the cursor to arrow
 end mouseLeave

 While this works in the unbuilt program, once it is built the cursor show up
 as Watch rather than Hand   on both Macintosh and   Windows.   Anyone have
 a suggestion?   Thanks.

In the Standalone settings, you might be best to tell it you will set
the required inclusions and make sure Cursors is checked.

Cheers,
Sarah
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution