Hi, there
I have difficulty in achieving the following effect:
Press button 1, the numbers in dynamic text box adds continuously; Release button 1, the numbers stopped.
I put the dynamic textbox in the mc "figure".I tried it in two frames, with
stop() in the first frame
gotoAndPlay(1) in the second frame
And for button, I put the following action:
on (press) {
n = 3;
n = Number
+1;
}
on (release) {
tellTarget (_root.figure) {
stop ();
}
}
But, it DIDN'T WORK AT ALL. What is the problem?? Please take an "expert" look at it. Thank you!!
I have difficulty in achieving the following effect:
Press button 1, the numbers in dynamic text box adds continuously; Release button 1, the numbers stopped.
I put the dynamic textbox in the mc "figure".I tried it in two frames, with
stop() in the first frame
gotoAndPlay(1) in the second frame
And for button, I put the following action:
on (press) {
n = 3;
n = Number
}
on (release) {
tellTarget (_root.figure) {
stop ();
}
}
But, it DIDN'T WORK AT ALL. What is the problem?? Please take an "expert" look at it. Thank you!!