Login using the username and password you created for AcrobatUsers.com.
Note: This is not the same as your Adobe ID.
Benefits of Free Membership:
Find out what AcrobatUsers.com is all about
You don't have to be a member to look at any content on the site. Increase your expertise with our helpful tutorials, videos, forums, and sample PDFs.
Like what you see? Take the next step and become a member. Register now to get discounts, attend eSeminars, ask questions and more.
Get the most out of your membership. Post in the forums, create your profile, submit to the gallery, attend a user group meeting. Log In now.
I'm trying to create the autotab process for my form using Acrobat 8 Professional and editing in Livecycle 8. I've researched this to death and every response seems to be to use:
xfa.host.setFocus(somPath)
This does allow the automatic movement to the next field but the problem is that in the process you have to listen to the beep of it reaching its max character limit and you lose a character in the move as well (so you practically have to double enter everything which loses the point of not having to tab over). Is there a way to do this in a smoother fashion? I'd like to not lose a character in the process of autotabbing over to my next field. The beep I can live with if I need to. Any help you can provide would be much appriciated. Thanks!
My Product Information:
LiveCycle Designer Pro 8 / Windows
Offline

How well your autotabbing works is a matter of how well your code is written. You don't have to lose a character.
Offline
Ms Jones: Had similar question/problem, found this Java Script on Google Forum posted by mbsnowrider in response to similar question by <a href="mailto:caryn681@msn.com">caryn681@msn.com</a>
l=event.value.length;
if (l==2)
getField("NEXTFIELD").setFocus();
Where '2' in the 'if' condition is the number of characters to reach (or an end-user to enter) before jumping to the next field. 'NEXTFIELD', as it may imply, the name of the form field you want to 'auto-tab' to once the number of characters you specify in the 'if' condition is reached.
I set the value of 'I' to one less than what I defined the field length to and got the character entered and auto tabbed without having the beeping sound. The field would accept 1 character and auto tab when "I"=0 (field length of 1) and 10 characters when "I"=9 (field length of 10). FYI I am using Acrobat 7 Pro on Mac, but I have tested in Acrobat Reader 8 on a Win XP Pro system and it works.
Hope this helps.
Lee Walters
Offline