Publishing SWF using Adobe Flash
Posted
by Kim
on Stack Overflow
See other posts from Stack Overflow
or by Kim
Published on 2010-06-08T05:06:00Z
Indexed on
2010/06/08
5:12 UTC
Read the original article
Hit count: 471
Hello everyone,
I have a SWF file which contains of an image (1keyframe) and also, it contains an AS3 file with the following codes:
var loader:Loader=new Loader(); var ur:URLRequest=new URLRequest("1.swf"); loader.load(ur); addChild(loader);
so basically, i am trying to play the swf file (1.swf - an audio) while the image is being displayed. What I want to know is how will I be able to publish this project into an SWF file which can still play as expected even without the raw 1.swf file. I can publish SWF right now but when I delete the 1.swf file, my generated swf can only display the image.
Help me please. Thanks in advance :)
© Stack Overflow or respective owner