Re: excluding fields from tab-advancement

2013-07-14 Thread dunbarx
To: How to use LiveCode Sent: Sun, Jul 14, 2013 11:46 am Subject: Re: excluding fields from tab-advancement Then you could make the "non focusable" field "temporarily focusable" just to allow data entry, it worked OK for my test… == on mouseDown set the traversalOn of me t

Re: excluding fields from tab-advancement

2013-07-14 Thread Paul Hibbert
Then you could make the "non focusable" field "temporarily focusable" just to allow data entry, it worked OK for my test… == on mouseDown set the traversalOn of me to true focus on me end mouseDown on closeField set the traversalOn of me to false end closeField on exitField closeFi

Re: excluding fields from tab-advancement

2013-07-14 Thread Dr. Hawkins
On Sat, Jul 13, 2013 at 8:44 PM, wrote: > The easiest way is to make the field non focusable. You can do this in the > inspector or by script. But then the user can't click in, can he? Actually entering one of these to enter a value will be a rare event, but I do want it to be possible. --

Re: excluding fields from tab-advancement

2013-07-13 Thread dunbarx
Hi. The easiest way is to make the field non focusable. You can do this in the inspector or by script. Craig Newman -Original Message- From: Dr. Hawkins To: How to use LiveCode Sent: Sat, Jul 13, 2013 8:35 pm Subject: excluding fields from tab-advancement I have some fields

excluding fields from tab-advancement

2013-07-13 Thread Dr. Hawkins
I have some fields (e.g., totals that might need to be overridden for reasons beyond my comprehension) that I want users to be able to click into, but be excluded as the user tabs along in the "normal" fields. I'm not seeing a clean way to do this. I could intercept tabs, perhaps? Catch mouseUp