;

PDA

Click to See Complete Forum and Search --> : load function help


hmvince
07-27-2009, 04:15 AM
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

a_modified_dog
07-27-2009, 06:55 AM
try this on frame#1 of your movieclip -
this.onEnterFrame = function(){
test();
this.onEnterFrame = null;
};

function test(){
trace("test");
};