ArcanE
September 20, 2004, 5:29pm
1
Is there a way to achieve what i’m trying to do here? Obviously it doesn’t work this way because only the last event handler is activated and the first one is ignored.
this.txtbtn_edegem.onRelease, this.btn_edegem.onRelease = function() {
if(_root.content == Number(_root.content)){
loadMovieNum("realisaties_sevenoaks.swf",_root.content);
} else {
_root.content.loadMovie("realisaties_sevenoaks.swf");
}
}
I’m simply trying to apply the function to the two handlers in the beginning of the first line: this.txtbtn_edegem.onRelease and this.btn_edegem.onRelease
Thanks!
system
September 20, 2004, 6:24pm
2
']Is there a way to achieve what i’m trying to do here? Obviously it doesn’t work this way because only the last event handler is activated and the first one is ignored.
this.txtbtn_edegem.onRelease, this.btn_edegem.onRelease = function() {
if(_root.content == Number(_root.content)){
loadMovieNum("realisaties_sevenoaks.swf",_root.content);
} else {
_root.content.loadMovie("realisaties_sevenoaks.swf");
}
}
I’m simply trying to apply the function to the two handlers in the beginning of the first line: this.txtbtn_edegem.onRelease and this.btn_edegem.onRelease
Thanks!
this.txtbtn_edegem.onRelease = this.btn_edegem.onRelease=function () {…
system
September 20, 2004, 8:25pm
3
Works like a charm, thanks stingy!