Help!
Trying to add a button to a PDF form that needs to be able to identify which field on the form has 'got focus' and to use this to initiate a java script action that will use the 'got focus' field name as part of the script action. I am assuming that the button will have to be added to a toolbar since a button on the form will move the focus from the field in focus to the button itself. Any of you gurus out there managed to achieve this or is this not achievable? Any help or guidance on this would be hugely appreciated!
If you click on a button, then that button field obtains the focus. If you want to known within a script which form field has focus, you can use the 'event.target.name' method, but for folder level scripts you will need to pass the current 'doc' object an the current field object as parameters to the function.
George Kaiser