Hi,
When my page loads, an outline fades in.
When I click on button 2, I want the outline to resize smaller.
When I click back on button 1, I want the outline to resize back to the original size.
I want to tell the button that if the outline is on the “released” state already, don’t go to the frame label “released”, but if it’s on the “out” state, THEN go to the “release” state.
Here is my code:
menu_one_mc.onRelease = function() {
stick(“menu_one_mc”);
myPicLoader.contentPath = “clients.swf”
outline_mc.gotoAndPlay(“released”);
};
menu_two_mc.onRelease = function() {
stick(“menu_two_mc”);
myPicLoader.contentPath = “contact.swf”
outline_mc.gotoAndPlay(“out”);
};
menu_three_mc.onRelease = function() {
stick(“menu_three_mc”);
myPicLoader.contentPath = “promos.swf”
outline_mc.gotoAndPlay(“released”);
};