Re: Inserting text into a field

2011-07-01 Thread Ronald Zellner
This may be over-kill, but it works. Script on the text field: on selectionChanged --set variable for insertion point global insertPoint put word 2 of the selectedChunk into insertPoint end selectionChanged Script on Combo box: on menuPick pItemName global insertPoint switch pIte

Re: Inserting text into a field

2011-06-30 Thread Richmond Mathewson
On 07/01/2011 09:25 AM, Pete wrote: Thanks. Pete Molly's Revenge On Thu, Jun 30, 2011 at 9:29 PM, J. Landman Gaywrote: On 6/30/11 11:05 PM, Pete wrote: - combobox with text choices - field with text in it and the cursor somewhere in the middle of the text - s

Re: Inserting text into a field

2011-06-30 Thread Pete
Thanks. Pete Molly's Revenge On Thu, Jun 30, 2011 at 9:29 PM, J. Landman Gay wrote: > On 6/30/11 11:05 PM, Pete wrote: > >> - combobox with text choices >> - field with text in it and the cursor somewhere in the middle of the text >> - select an entry from the co

Re: Inserting text into a field

2011-06-30 Thread J. Landman Gay
On 6/30/11 11:05 PM, Pete wrote: - combobox with text choices - field with text in it and the cursor somewhere in the middle of the text - select an entry from the combobox - how do I insert the combobox entry into the text field, starting where the cursor is positioned? put the label of me int

Inserting text into a field

2011-06-30 Thread Pete
- combobox with text choices - field with text in it and the cursor somewhere in the middle of the text - select an entry from the combobox - how do I insert the combobox entry into the text field, starting where the cursor is positioned? Pete Molly's Revenge __