need a little help with flash
need a little help with flash
Out of context: Reply #1
- Started
- Last post
- 2 Responses
- Anarchitect0
you should create an 'active' variable on the _root to hold the 'active section'.
function activate(status){
this.useHandCursor = this.enabled = status;
if(status){
_root.active = this;
loadSection();
}
}this.onPress = function(){
_root.active.activate(false);
this.activate(true);
}