Hey guys, I recently downloaded FB 4.7 and noticed something changed when compiling and running my project.
I have the following code in one of my classes. It simply embeds a symbol from a SWF and adds it to the stage as a MovieClip:
[Embed(source="/../lib/swfs/splash_screens.swf", symbol="Splash1")]
private static const Splash1:Class;
...
_splash1 = new Splash1();
addChild(_Splash1);
_splash1.play();
Now, in this MovieClip in the FLA there are two layers, one layer is a bunch of vector animation and the second layer is the background (as an imported Bitmap) - no animation.
The problem is that second layer with the background doesn't show up in my project after I've embedded and added the MovieClip to the stage, it's as if the MovieClip has a transparent background with just the first layer with all of the vector animation showing up.
Things I've tried/noted:
- The background layer is not a guide and is visible if I play the raw SWF to just see what it looks like
- If I add other layers and just draw nonsense on them, etc - they do show up
- If I trace the background Bitmap (turns it into vector art) it will show up
- If I convert the background Bitmap to a Graphic or MovieClip and then put it on the stage, it still doesn't show up
- It seems FB 4.7 is grabbing the correct symbol from the library, it's just not grabbing the background (which is also in the library, as an imported Bitmap) which I feel it should, since it's included in the MovieClip symbol
Now I understand there are workarounds that I can always use as a last resort (embedding the background JPG and adding it to the stage as a Bitmap separately at runtime), but I'd prefer to have this working correctly so if things change visually in the future, it's less work for me.
I'm pretty sure when I originally coded this when using FB 4.6 I did not have this issue (and since then nothing has changed at all, not the code or the SWF file). This is why I'm led to believe it's either a FB 4.7 issue or maybe there's something extra I need to do to the FLA before exporting the SWF file.
Any help appreciated!