I have a work in hands that's being published for flash player 5.
Using attachMovie(), and having to use the target path to the movie clip later, I stored the reference to the attached movie like I always do:
Actionscript:
-
temp_mc = target_mc.attachMovie("ball_mc", "ball_mc", 1);
Well... this doesn't work in FP5!
But the same can be achieved with an extra line of code:
Actionscript:
-
target_mc. attachMovie("ball_mc", "ball_mc", 1);
-
temp_mc = target_mc.ball_mc;
The only problem is that it took me some minutes to figure this out.
Another curious situation is owning Flash MX 2004 and not being able to save a file for Flash 5... nevertheless I can publish it for that version.