Ask a Question related to Macromedia Director Lingo, Design and Development.

  1. #1

    Default focus button

    Hi,

    I have a form within a projector, the form is made of of several editable text fields and a submit button.
    With each field I can tab to the next field, so that the user does not need a mouse, but how do I tab from the last field to the submit button so that the user can just press enter.

    The submit button doesn't seem to support recieving focus. I realise I can add a simple RETURN or ENTER pressed event on the editable fields to submit the form, but would really like to do it via the submit button itself.

    Anyone got a solution?

    Thanks

    Tim


    digitalT webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. CS2 Button Rollover options "On Blur / On Focus"
      I'm trying to learn more about the interactive aspects of the program. And I'm stumped when it comes to these 2 events listed for button options. I...
    2. How control which button has focus [ENTER]
      Hello, I'm facing a problem with the behavior of the key while editing items in a datagrid. I would like to make sure that the cancel button is...
    3. Popup; show, take focus, wait for button action, give focus, hide
      Hi. I've got a popup MC for displaying a message or asking a yes/no question that has to do the following on an event: - show and take focus...
    4. focus/lost focus of custom control
      Hi new to .NET and have a question. What I want to do if have a custome control (contains a table grid of text boxes) and multiple instances...
    5. JavaScript Access to Button in form tags (webcontrol or html button)
      Hello, I have a button called LoadBtn, which exists in <form name="Form1" runat=server></form> tags. I then have javascript loaded outside of...
  3. #2

    Default Re: focus button

    Add 1 additional field positioned off stage (locv - 1000) that coincides
    with the enter button, monitor the keyboardfocussprite when it = the
    offscreen field, enable the button, might be able to check focus from a
    common keyUp handler which also can handle return key when button is
    hilite.
    JB Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139