Tagged Questions
4
votes
4answers
11k views
Adobe Flash Builder (flex4): addChild() is not available in this class.
I want to load an swf into a flex 4 application in order to use its classes.
var ldr:Loader=new Loader();
ldr.load(new URLRequest("file://path/to/fileswf"));
...
1
vote
2answers
2k views
Can an AS2 swf be loaded into an AS3 swf? How can I add this to the stage and interact with it from As3 swf?
I am trying to load a swf written in AS2 into an AS3 swf - using Loader class and listening for Event.COMPLETE. in my onCompleteHandler function i want to add this to the stage so Im trying -
...
0
votes
2answers
224 views
unload dynamically loaded swf after displaying it AS3
I am doing a presentation on which I need to use a lot of video clips. I load all these videos dynamically using Loader. I use a code snippet like this:
var req:URLRequest = new ...
0
votes
1answer
530 views
Using the Loader display object to load X jpegs, then resize each of the images differently while they're on the stage
Hey there, I was wondering if this is possible to do
I am able to load the image in and have it displayed easily enough by using addChild(myLoader); where myLoader is in the classWide private scope.
...
0
votes
1answer
501 views
Problem displaying image on the movieclip
Have little bit of problem for my flash apps
I have a loader which load the image from the server. I also have a large movieclip that hold a list of small movieclips that are used to preview an image ...