Input text deletion question

Ask a Question related to Macromedia Flash Actionscript, Design and Development.

  1. #1

    Default Input text deletion question

    Here is what I am looking for:

    I have an input text box (txtbox1)
    and that is where the user inputs the answer to the question
    once the game is over, we have an option to go back and try the game again
    but what happens is when you go back, the text you have previously typed is
    still there. Is there a command that will clear out the text in the input box
    on the
    second try?

    Thanks guys!


    lagunahair Guest

  2. Similar Questions and Discussions

    1. text input
      im trying to input text into a feild using a keypad arrangment with images as the buttons. problem is everytime i press the next button it...
    2. Input Text, need help
      ok what do i do if say, i have an input box and the user types something. lets say that the box is named 'input', how do i put an action on a button...
    3. Text vs Field for text input
      I know this is a bit of a back-to-basics question, but it is something I have never really got my head around when to use text and when to use...
    4. Perl Newbie question: How would you take keyboard input and run a shell scrip with that input?
      I don't think you could be vaguer :) Very basic #!/usr/bin/perl # update.pl multiple options command line my @packages = @ARGV foreach...
    5. Question about Input Text Boxes.
      Hey all, I was wondering... I really like the input text box for the search box on the main page of macromedia.com. I wanted to do something...
  3. #2

    Default Re: Input text deletion question

    txtbox1.text = "";

    that should do it

    Steve
    MedaXis 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