Menu
Recently some time due to the end of the work is very busy, QQ open hanging grade and do not chat, have a lot of friends message asked me how to use SWiSHmax to do navigation menu. Hey, today just idle so little, still miss the menu thing, then use swish to do a "imitation Korea elastic Menu" to everyone, I hope you like!!!
In fact very simple, as long as the completion of a few steps (swish is good, high efficiency, with the flash of the aunt, see you face defy appearance, singled out! Said well, one to one, no one is allowed to foul ah! )
source file (rar compressed file, 170K): Click to download
First, create the scene I used here 760 120 Frames 35
To import a background picture,
Use FW to draw a box (here you can draw at will)
In the add text, and the box is grouped into the shape
Then convert to Wizard, and the wizard is named "Roller"
Select the shape in the sprite, open the Expert mode, and enter the script
On (rollover) {
Jump = false;
Xskal = Xskal * 1.5;
Yskal = Yskal * 1.5;
_parent.roller = 1;
}
On (RollOut) {
Xskal = 100;
Yskal = 100;
_parent.roller = 0;
}
OK, on the return to the wizard level, select the wizard "Roller" to open Expert mode, enter the script
OnLoad () {
Xskal = 100;
Yskal = 100;
Jump = false;
SX = 0;
SY = 0;
Multiplikator = 0.800000;
Ratio = 0.300000;
}
Onenterframe () {
if (!jump) {
SX = Number (SX * multiplikator) + number ((Xskal-_xscale) * ratio);
SY = number (SY * multiplikator) + number ((Yskal-_yscale) * ratio);
_xscale = _xscale + SX;
_yscale = _yscale + SY;
}
}
Copy a few more, put in the scene in line, change the text inside, became a navigation bird ~ ~ ^o^
To make a link, just add a rollover front
On (release) {
GetURL ("Http://www.maydaydesign.net");
}
Modify the URL inside for you want to use ~ ~ Fire ~ ~
And then copy and modify the Good elves into a wizard named "Nav".
In doing some animation modification, import a background music, as you always like, haha, call it a break ~ ~
Have not understand to QQ message, in the work, I will try to give you reply.