Remembering User input

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

  1. #1

    Default Remembering User input

    I would like to make Director remember input that the user has typed into an
    input field and then want it to place the data the user inputted on another
    frame or screen in the movie. - Is this possible??

    Please help me if you can, i have been trying to do this for weeks.

    Lamptey Guest

  2. Similar Questions and Discussions

    1. Saving user input to xml
      I'm sorry this is a question from a server ignoramus, so please be kind: I've previously captured user input using a combination of cfml and text...
    2. Emailing user input - Flash 8
      I'de be grateful to anyone who is able to offer Action script advice regarding how to capture and then email user input. Cheers
    3. Check website user input with PHP
      Hello everybody, Currently I'm working on a webshop. When a user, inputs a website I want to check if it exists. How can I do this? I'm...
    4. Getting User Input via Email
      Hi Does anyone know if its possible to create and email HTML forms. Email recipients would then input information to these forms in the same...
    5. User Control with Input Parameter
      I want to be able to create a UserControl that consists of a header, a menu system under the header, and a graphic down the left side. This would...
  3. #2

    Default Re: Remembering User input

    Hi Lamptey,

    This seems rather simple, unless I misunderstood what you want.

    Just place the content of the field the user is supposed to have used into a
    global variable and then use that variable to populate another field or text
    later on.

    -- Movie script

    global gUserInput

    on retrieveUserInput
    gUserInput = member("userInputField").text
    end

    on displayUserInput
    member("AnotherInputField").text = gUserInput
    end
    --

    Call those beahviors from a button on frame script.


    HTH


    Sébastien



    "Lamptey" <webforumsuser@macromedia.com> a écrit dans le message de news:
    c7geju$3do$1@forums.macromedia.com...
    > I would like to make Director remember input that the user has typed into
    an
    > input field and then want it to place the data the user inputted on
    another
    > frame or screen in the movie. - Is this possible??
    >
    > Please help me if you can, i have been trying to do this for weeks.
    >

    Sébastien \(sg\) Guest

  4. #3

    Default Re: Remembering User input

    How do you call beahviors from a button on frame script?
    Lamptey 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