Hi,
I’m trying to use this, but having some problems: Basicly i have 4 menu buttos: about, contact, test1, test2 And i want this to load a swf to a movieclip(mid5), this is where i’m with the code (i’m no developer so can you tell me what i’m doing wrong):
// Getting URL when press
this.onRelease=function(){
if (_root.currMovie == undefined) {
_root.currMovie = word.text;
_root.mid5.loadMovie(_root.currMovie+”.swf”
;
} else if (_root.currMovie != (word.text))
{if (_root.mid5._currentframe >= _root.mid5.midframe) {
_root.currMovie = (word.text);
_root.mid5.play;
}
}
}















