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

close enough

Status
Not open for further replies.

wakkoguy

Technical User
Oct 30, 2001
84
US
i want the user to have to roll over the logo to use the navigation. know what i mean? so is that possible? if not it's kewl i heard something about using the Track As Menu option.
also is there a way to play a movie clip reversed(backwards) without having to make all new mc's?
you've been a huge help thanx a bunch guyz!
 
For reverse play, check this:

Regards,
mywink2.gif
ldnewbie
 
hey thanx man! that really helped!
i just wanted to let u know something
the part where you said
on (rollOver) {
tellTarget ("reverse") {
gotoAndStop ("stop");
// label in reverse control
}
// the above tellTarget could be replace by...
// _root.reverse.gotoAndPlay("stop");
is not needed all that is needed is
tellTarget ("light1") {
// instance name of the light1 mc
play ();
}
I'm trying to show you up or anything i'm just letting you know so that it won't be as confusing know what i mean? cause i kept trying to figure out why you would need that! hehe
 
ok i'm stupid you do need that syntax. i thought it would work without it. your the man
 
Just to remind everybody...
Although the tellTarget action will still work, it is deprecated in Flash 5, as are the ifFrameLoaded & toggleHighQuality actions. You should check the Actionscript dictionary to learn by what actions they should be replaced with.

Regards,
mywink2.gif
ldnewbie
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top