**HELP ** Basic Actionscript
**HELP ** Basic Actionscript
- Started
- Last post
- 2 Responses
- Dcsign
I have an input field in flash which asks the user to enter a numerical digit. This digit is then * by two different numbers then displayed in two different output fields later in the time line..
HOW DO I DO IT?
I know this is a really basic question but i can;t seem to get the flipping thing to work...
- shant0
name the variable for the input field something like inputnum.
somewhere down the line make 2 dynamic text fields, give their variable names num1 and num2.
on the same frame, or a frame somewhere before the frame that the dynamic texts is on, put this:
num1 = inputnum * 3;
num2 = inputnum * 8;that should do it.
num1 = inputnum*3
- Dcsign0
Thanks v. much Shant.... much appreciated :)