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!

Flasher - code for ya! 1

Status
Not open for further replies.

oldnewbie

Technical User
Dec 6, 2000
9,142
CA
Montréal comes to Toronto's rescue!

Change your services button's script to this:

on (press) {
if (_root.current_selection == "services") {
stop ();
} else {
gotoAndStop ("services clip");
_root.current_selection == "services";
}
}

Change your clients button's script to this:

on (press) {
if (_root.current_selection == "clients") {
stop ();
} else {
gotoAndStop ("clients clip");
_root.current_selection == "clients";
}
}

Change your contact button's script to this:

on (press) {
if (_root.current_selection == "contact") {
stop ();
} else {
gotoAndStop ("contact clip");
_root.current_selection == "contact";
}
}


That's it!

Regards,
Might I be blessed with your vote!
new.gif
 
what do you know... I never even saw this. I didn't catch what you meant when you wrote "code in thread I started!"
Now I just happened to be looking back for a different thread and saw this. thanx very much. As usual, you have gone out of your way to help. Can I ask what motivates you to be so generous with your time and knowledge? Just curious. Thanx again!

Oh, and Montreal explains all that french I've been seeing!
 
Close to retirement! I'm a film and TV editor!
Was just looking for an agreable way of spending all this free time ahead of me!

But really I'm only into it for the stars! [bigglasses]

BTW, did you get that PHP mail script working?

Regards,
new.gif
 
Well, I have to say that I'm very glad you made that decision! Of all the threads I've posted, you've definitely answered most of them. I don't want to take you for granted without letting you know how much I appreciate it...

(Regarding the php script, simple as it probably is, there are a couple things I don't understand so I didn't try uploading it yet.)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top