would someone give me a tutorial or a link (maybe to another post) about button animations? I’m new to this website as well as Flash, so… nice to meet you all
Welcome, Spirit. :beam:
We have a couple of tutorials here:
http://www.kirupa.com/developer/flash5/animatedrollover.htm
http://www.kirupa.com/developer/flash5/advroll.htm
There’s one thing you need to know about the second link though. The slash sintax has been deprecated since Flash 5. You should use the dot sintax instead.
[AS]// Slash Sintax
on (rollOver) {
tellTarget ("/rollover") {
gotoAndPlay(“1text”);
}
}
on (rollOut) {
tellTarget ("/rollover") {
gotoAndPlay(“1back”);
}
}
// Dot Sintax
on (rollOver) {
rollover.gotoAndPlay(“1text”);
}
on (rollOut) {
rollover.gotoAndPlay(“1back”);
}[/AS]
=)
ahhh, I c. Thank you
No problem.