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

Button Downstate

Status
Not open for further replies.

Tee1212

Vendor
Mar 26, 2001
82
US
Does anyone know how I can specify that one of my flash buttons (Home) with my nav bar starts out as the downstate?

Thanks,
Teresa
 
Create a movie clip with only the copied down state of your home button and a stop(); action on its only frame. Drag it on stage and position it exactly over your normal up state home button. Give an instance name, such as home_initial_mc, so that it can be targeted. Then on all the other buttons' scripts add the following line to your on release scripts:

_root.home_initial_mc._visible = false;

You might need to further correct the path in the above, depending where you've inserted this "down" state mc. Regards,

oldman3.gif
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top