Re: defaultcursor problem

2012-10-14 Thread Peter M. Brigham
Actually, the whole point of the "defaultcursor" is that it is *not* reset at idle even without it being locked, whereas "the cursor" is reset at idle and must be locked to be persistent. Setting the defaultcursor used to work over an unlocked, editable field, but it doesn't any more. Checking t

Re: defaultcursor problem

2012-10-12 Thread dunbarx
Peter. In my test, I also locked the cursor. Should have mentioned that. Craig -Original Message- From: Peter M. Brigham To: How to use LiveCode Sent: Fri, Oct 12, 2012 10:17 am Subject: Re: defaultcursor problem That never works. Setting "the cursor" will only be ver

Re: defaultcursor problem

2012-10-12 Thread Bob Sneidar
Lock the cursor first. If you don't, it will revert the first idle it gets. As someone mentioned use the cursor. Locking it will prevent the reversion you are seeing. (It actually is changing but so fast you can't see it.) Bob On Oct 12, 2012, at 6:06 AM, Peter M. Brigham wrote: > Anyone have

Re: defaultcursor problem

2012-10-12 Thread André Bisseret
pmbrig > > On Oct 12, 2012, at 9:36 AM, dunb...@aol.com wrote: > >> Hi. >> >> >> Try this with "the cursor" instead of "the defaultCursor". >> >> >> Craig Newman >> >> >> >> -Origina

Re: defaultcursor problem

2012-10-12 Thread Peter M. Brigham
". > > > Craig Newman > > > > -Original Message- > From: Peter M. Brigham > To: How to use LiveCode > Sent: Fri, Oct 12, 2012 9:07 am > Subject: defaultcursor problem > > > Anyone have an idea why this doesn't work? Put the following

Re: defaultcursor problem

2012-10-12 Thread dunbarx
Hi. Try this with "the cursor" instead of "the defaultCursor". Craig Newman -Original Message- From: Peter M. Brigham To: How to use LiveCode Sent: Fri, Oct 12, 2012 9:07 am Subject: defaultcursor problem Anyone have an idea why this doesn't work? P

defaultcursor problem

2012-10-12 Thread Peter M. Brigham
Anyone have an idea why this doesn't work? Put the following into the script of an unlocked field: on mousemove put the commandkey is down into cmK if cmK then set the defaultcursor to hand else set the defaultcursor to empty end if end mousemove I want the cursor to beco