A Flash Developer Resource Site

Results 1 to 3 of 3

Thread: tab thru textboxes???

  1. #1
    Senior Member
    Join Date
    Jul 2003
    Location
    fort lauderdale
    Posts
    182

    tab thru textboxes???

    I have this site http://www.visibleworld.com/index_content.html (go into the contact page to see what i am talking about)i just finished, but when u try and tab from text box to text box(it needs to go down, name, comany, title, ect) it goes all over the place selecting buttons, etc.. please tell me how to fix this so the user can easily tab between text boxes!!




    thnx

  2. #2
    Senior Member
    Join Date
    Jul 2003
    Location
    fort lauderdale
    Posts
    182
    anyone?

  3. #3
    Mike Haverstock
    Join Date
    Dec 2001
    Posts
    167

    tabIndex is the trick

    you will have to give your textboxes an instance name if you haven't already... say: Textbox1,Textbox2,Textbox3 .... Then you must specify the order you want to tab through them..
    Code:
    Textbox1.tabIndex = 1;
    Textbox2.tabIndex = 2;
    Textbox3.tabIndex = 3;
    In doing this... you will exclude all of the buttons from being selected while you are tabbing through
    [code]This is using the "
    Code:
    " feature

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center