hello all,
i need your help again.
i need to put the:
onClipEvent (load){
function inside a movieclip (on the frame) but it wont let me. is there anyway i can do this.
thanks in advance
Printable View
hello all,
i need your help again.
i need to put the:
onClipEvent (load){
function inside a movieclip (on the frame) but it wont let me. is there anyway i can do this.
thanks in advance
try this on frame#1 of your movieclip -
PHP Code:this.onEnterFrame = function(){
test();
this.onEnterFrame = null;
};
function test(){
trace("test");
};