Ask a Question related to Macromedia Flash Sitedesign, Design and Development.
-
Troupeslave #1
Trying to create complex button
Okay so I want to creat a button. But I want this button's rollover state to be
a 2-3 frame animation. Kinda like the buttons on this website
[url]http://www.team3d.net[/url]. Can anyone help?
Do I need a different program? Is this done in ActionScripting? Any help would
be appreciated
Troupeslave Guest
-
How to create Button Icon from PNG?
I don't know whether if Acrobat / Reader support using PNG as button icon. If it can how to create the icon form PNG? Thanks. -
Can't Create Flash button?
I download extension falshbutton from your site. but when I Insert Flash button. It show messagebox "Can not create flash button because a... -
How to create a browse button
Can you help me create a browse button with Dreamweaver MX -
Complex properties (Button) not persisting in webcontrol
This seems to be a common issue and one that I have not found a solution to. What I want to do is theoreticly simple. I have tried creating... -
How do I create a 'print' button
Hi My client wants a button a the bottom of cetrain pages which will enable users to click and print rather than going up to file and selecting... -
AWD #2
Re: Trying to create complex button
put your rollover animation in a movie clip and then put that movie clip on
your roll over state. Or you could have the movieclip with the animation. on
your stage under or over your button or wherever it plays at. give it a
instancce name of rollover. have a stop action on the first frame. In the
rollver state of your button tell the target movie clip to goToAndPlay frame
.. Then in the the other states of the button have the MC gotoAndStop (1).
Don't forget in your animation movie clip it put either a stop action on the
last frame or, if you want it to loop, a goToAnd Play (2) .
--
Al Winchell
[url]www.Amazingwebs.com[/url]
den.tigersquadron.com
AWD Guest
-
buckmin #3
Re: Trying to create complex button
i couldnt fully understand your problem but i hope this helps
just put a movie clip about your 2-3 frame animation to your buttons 'Over'
frame
if you want to do this just by actionscript you can do it by adding the code
to your button:
on(rollOver){
myTarget_mc.attachMovie("myAnimation")
myAnimation_mc.play();
}
another way of doing this is making a movie clip and creating different
frames for every animation that will play.
then you will reference to the frames with gotoAndPlay action outside the
movie clip
myButton_mc.onRollOver = myButton_mc.gotoAndPlay(n);
myButton_mc.onRelease = myButton_mc.gotoAndPlay(m);
n here is the desired frame that the animation of rollover event is
triggered and m is the same procedure for release animation
etc..
--
ErdemA
buckmin Guest
-
Troupeslave #4
Re: Trying to create complex button
Very helpful thanx for the insite!
Troupeslave Guest



Reply With Quote

