Hi,
You can use movieclips as buttons. Consider a movieclip with seperate frames each holding a different image.
Code:
_root.mcInstanceName.onRollOver=function(){
_this.gotoAndStop("frameLabel");
}
_root.mcInstanceName.onRollOver=function(){
this.gotoAndStop("frameLabel");
}
To control one movieclip timeline from another might look something like...
Code:
[code]
_root.mcInstanceName.onRollOver=function(){
_root.someOtherMC.gotoAndStop("frameLabel");
}
_root.mcInstanceName.onRollOver=function(){
_root.someOtherMC.gotoAndStop("frameLabel");
}
[/code]
Bookmarks