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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recurring Problem

Status
Not open for further replies.
Simple? Maybe! But I don't understand what you're trying to achieve here. Hit button 1... and I should see frame 3 up there? Hit button 2... and I should see frame 4 up there?

Can you upload the fla to your site... I can have a look at it!

;-)
 
Your buttons were sending you to frames 3&4 but on that level!
Change the actionscript of your buttons:

BUTTON 1:
on (release) {
tellTarget ( _level0 ) {
gotoAndStop (3);
}
}

BUTTON 2:
on (release) {
tellTarget ( _level0 ) {
gotoAndStop (4);
}
}

It does work... But this causes your buttons to dissapear!
If you can't make it work, post your email, I can send you the corrected fla.

Ciao mate!

;-)
 
Thanks a lot, oldnewbie. My code was slightly wrong!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top