OK - imagine:
_root.AAAA._alpha = 0;
_root.mc1.AAAA.mc2.onRollOver = function() {
if (findValue("AAAA", arrayName) == 1) {
_root.AAAA._alpha = 100;
}
}
_root.mc1.AAAA.mc2.onRollOut = function() {
_root.AAAA._alpha=0;
}
Now, I have to repeat this code like 50 times for 50 different movies with the
'AAAA' being replaced by a different instance name.... My thought was to put
the AAAA's into an array and loop through that - but as I am finding the code
is not called until the event (i.e. onRollOver and thus the last array member
is the active one... Is there anyway to minimize the code instead of havign to
repeat this 50 times - I am sure I am approaching this from the wrong
direction....
_______________________________________________
Flashcoders mailing list
[email protected]
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders