View Full Version : Buttons + Effects
wahtever
September 29th, 2005, 09:18 AM
Hi, I'm pretty new at flash but I understand most things. I found this site (www.kirsten-dunst.org (http://www.kirsten-dunst.org/)) and I was wondering how to make the effects on the main graphic. Also if you look over at the left panel where it says Members Login, there are three images that are rollover buttons. Could anyone show me where I can find tutorials/download files for them? Orr even explain it here please. Thanks :)
mathew.er
September 29th, 2005, 09:57 AM
Those are movieclips triggered by rollOver events on the buttons. The code could look like this:
button1.onRollOver = function() {
movie1.gotoAndPlay(2);
};
button1.onRollOut = button1.onReleaseOutside = function() {
movie1.gotoAndStop(1);
};
In the movie1 movieclip you would have the animation going on and on the first and last frame stop(); action.
wahtever
September 29th, 2005, 10:32 AM
Those are movieclips triggered by rollOver events on the buttons. The code could look like this:
button1.onRollOver = function() {
movie1.gotoAndPlay(2);
};
button1.onRollOut = button1.onReleaseOutside = function() {
movie1.gotoAndStop(1);
};
In the movie1 movieclip you would have the animation going on and on the first and last frame stop(); action.
oh i see, thanks but i don't really know how to create the button. could you/anyone show me, step by step on how to put everything together? :huh:
and same with the other effect i mentioned earlier, please.
Powered by vBulletin® Version 4.1.10 Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.