Page 1 of 1

Insert tab in a field

Posted: Wed Nov 25, 2009 6:08 pm
by Vincent
Hi,

I would like to use the keyboard's tab key to delimite some items in a field. But when I press the tab key on my keyboard, my cursor changes the selectioned field on my stack. So, I can't insert a tabulation between the items in the field. My items are words.

Someone could help me, please ?

Thanks you in advance,

Vincent.

Re: Insert tab in a field

Posted: Wed Nov 25, 2009 6:14 pm
by sturgis
one way would be to do something like this

Code: Select all

on tabKey
   put tab into the selection
end tabKey
Captures the tab key press, then manually puts tab at the cursor position. If something has actively been selected in the field it will be replaced by tab.

Re: Insert tab in a field

Posted: Wed Nov 25, 2009 6:23 pm
by Vincent
Thanks you, it works !

Vincent.