Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help with file

Status
Not open for further replies.

jray2003

Programmer
Aug 12, 2003
253
US
I am writting a Reaction time program and think I have what it takes to do it, but running into some problems. Can some one please check it out and tell me where I went wrong?

The first screen tells what it should be doing. What it isn't doing is running the action script when I click on the start button.

Thank you

http:\\itheplace.com\drop

It is the only file there to download.

Jim
 
Well Jim you had all kinds of little problems. The biggest was that you added frames but didn't change any of the gotoAndPlay(frameNumber) actions. So first problem was that it was going to the wrong frames almost everywhere it called for a frame number.

Second you had the instance names that needed to be on the buttons on the text boxes and vice versa. So when you entered a frame a random text box appeared instead of a random button.

You also where using:
Code:
on(press){
   nextFrame();
}
Should be:
Code:
on(release){
   gotoAndPlay(3);
}

I modified the stopTimer() function so now it shows the time in seconds as opposed to the number of clicks. I also took all stage items off of the actions layer.


Wow JT that almost looked like you knew what you were doing!
 
pixl8r

Thank you for the help. I have much to learn and this has been a good excerise.

Thanks again.
 
You're welcome. We all started as beginners :)

Wow JT that almost looked like you knew what you were doing!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top