Help with dynaminc textboxes

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

  1. #1

    Default Help with dynaminc textboxes

    I'm trying to create a button that when clicked will display text in a dynamic textbox. I've tried a lot of different things, but for once trial-and-error isn't working for me. Can someone help?

    Thanks a lot,
    Dave


    davidamos webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. Totaling textboxes
      Hi, I'm having trouble figureing out the last part of this problem. I'am using a javascript function to give me a grand total price for all the...
    2. EditCommandColumn makes my textboxes too big
      Hi all, I've added an EditCommandColumn to my dinamically created Datagrid. All works pretty well, events fire in the correct way and so on. My...
    3. ASP.NET Datagrid filling textboxes
      I am currently filling textboxes with the data from a datagrid with the following code: Sub Fillnextrecord(ByVal e As DataGridCommandEventArgs) ...
    4. movieclip - textboxes - problem
      Hi, I'm having a movieclip "feld0" containing a dynamic textbox "text1". why does only the text "Home" in feld0 appear. I can't see the other...
    5. Create Textboxes at run time.
      Hi Kenneth, If you want to create server-side controls, then its just not that simple, although its not difficult at all. You could take a look...
  3. #2

    Default Re: Help with dynaminc textboxes

    in this example, both items are created on the _root timeline.

    create a dynamic text box. give it a variable name (ie 'myText'). Create a
    button. Put this actionScript on it:

    on (release) {
    myText = "this is my text";
    }

    }`¬P






    "davidamos" <webforumsuser@macromedia.com> wrote in message
    news:bjml0v$bth$1@forums.macromedia.com...
    > I'm trying to create a button that when clicked will display text in a
    dynamic textbox. I've tried a lot of different things, but for once
    trial-and-error isn't working for me. Can someone help?
    >
    > Thanks a lot,
    > Dave
    >
    >

    Peter Blumenthal 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