Absolutley.
to make it a link you use the getURL attribute in your AS panel:
Code:
on(release){
getURL("http://whatever.com", _blank);
}
Note the _blank could be _self or _parent or _top as well, what ever you need.
_self specifies the current frame in the current window.
_blank specifies a new window.
_parent specifies the parent of the current frame.
_top specifies the top-level frame in the current window.
to initiate another animation etc same type of thing. Lets say you have an MC with 40 frames. and there are 4 different animations, each 10 frames each. every 10 frames you would have a stop(); command.
On your button you would put something like:
Code:
on(release){
_root.MC-name.gotoAndPlay(10);
}
this would take MC (here named MC-name) to frame 10 and play until the stop(); command on frame 20.
Bookmarks