0
Problem with menu
New Here
,
/t5/animate-discussions/problem-with-menu/td-p/662988
Apr 04, 2007
Apr 04, 2007
Copy link to clipboard
Copied
Hi guys, I cant seem to get the actionscript to work on this
menu.
http://www.flashvault.net/tutorial.asp?ID=105
Do i have to create different layers for everything? I cant seem to get it to work on more than one button. If someone could please help me figure it out. Thank you 🙂
http://www.flashvault.net/tutorial.asp?ID=105
Do i have to create different layers for everything? I cant seem to get it to work on more than one button. If someone could please help me figure it out. Thank you 🙂
TOPICS
ActionScript
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

/t5/animate-discussions/problem-with-menu/m-p/662989#M290784
Apr 04, 2007
Apr 04, 2007
Copy link to clipboard
Copied
It would help if you posted the code you have written.
regards
Nick Barling
www.barkingweb.com
regards
Nick Barling
www.barkingweb.com
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
dlabaj
AUTHOR
New Here
,
/t5/animate-discussions/problem-with-menu/m-p/662990#M290785
Apr 05, 2007
Apr 05, 2007
Copy link to clipboard
Copied
This is the information that i got from the link that I
posted. I get the action script to work for the first button. What
i want to happen is when you roll over the buttons they shift to
the right a little. Its a pretty basic action but I am a newbie. If
you check the tutorial link out maybe you will get a better idea of
what I mean. If someone could please help me I would really
appreciate it. Thank you guys ;). If you need more info please
reply and I will try to supply it :)
Take the Selection Tool (V), and click once on the Invisible Button to select it. Aftetr that, open the Action Script Panel (F9), and paste this script:
on (rollOver) {
_root.mouse_over_home_mc = true;
}
on (rollOut) {
_root.mouse_over_home_mc = fstartlse;
}
on (release){
getURL(" http://www.flashvault.net/", "blank");
}
Step 26
Insert a new layer and name it AS (Action Script).
Step 27
Click on the first frame of layer AS, and in A.S. Panel paste this scritp:
_root.home_mc.onEnterFrame = function() {
if (mouse_over_home_mc) {
_root.home_mc.nextFrame();
} else {
_root.home_mc.prevFrame();
}
};
Take the Selection Tool (V), and click once on the Invisible Button to select it. Aftetr that, open the Action Script Panel (F9), and paste this script:
on (rollOver) {
_root.mouse_over_home_mc = true;
}
on (rollOut) {
_root.mouse_over_home_mc = fstartlse;
}
on (release){
getURL(" http://www.flashvault.net/", "blank");
}
Step 26
Insert a new layer and name it AS (Action Script).
Step 27
Click on the first frame of layer AS, and in A.S. Panel paste this scritp:
_root.home_mc.onEnterFrame = function() {
if (mouse_over_home_mc) {
_root.home_mc.nextFrame();
} else {
_root.home_mc.prevFrame();
}
};
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
dlabaj
AUTHOR
New Here
,
LATEST
/t5/animate-discussions/problem-with-menu/m-p/662991#M290786
Apr 05, 2007
Apr 05, 2007
Copy link to clipboard
Copied
Oh Thank you for replying nick 🙂 I just wanted to say that I
did change the instance name in the properties panel to the
appropriate symbol name and they have different names.
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

