zain
June 12th, 2002, 10:35 AM
I have a movie with one layer and two keyframes.
On the first keyframe is a movieclip (instance name 'MC')
with the following actionscript
onClipEvent (load) {
        xyz = 5;
trace(xyz);
}
The second keyframe is empty but holds the actionscript:
_root.MC.xyz = 10;
trace(_root.MC.xyz);
my question is when i test the movie ... why does the trace action constantly ouput 5s ?? shouldnt it output 5 once and then costantly output 10s? because isnt a movieclip only loaded once??
bit confused here...any help appreciated..thanks
On the first keyframe is a movieclip (instance name 'MC')
with the following actionscript
onClipEvent (load) {
        xyz = 5;
trace(xyz);
}
The second keyframe is empty but holds the actionscript:
_root.MC.xyz = 10;
trace(_root.MC.xyz);
my question is when i test the movie ... why does the trace action constantly ouput 5s ?? shouldnt it output 5 once and then costantly output 10s? because isnt a movieclip only loaded once??
bit confused here...any help appreciated..thanks