Tagged Questions

In Adobe Flex 4.5, SWFLoader is used to load application into another application.

learn more… | top users | synonyms

3
votes
2answers
285 views

Alert gives PopUpManager error when used with SWFLoader

I am using SWFLoader to load a swf file. The code is below: <?xml version="1.0" encoding="utf-8"?> <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" ...
3
votes
3answers
2k views

resize loaded SWF to fit in canvas

a .fla is 500 x 300. Inside, content moves OUT of the 500 x 300 stage so that it appears like it hides or moves off of the screen. .fla complied... loaded into Flex via SWFLoader: <mx:Conainer ...
3
votes
3answers
10k views

Passing flashvars-style parameters to a loaded SWF

I have a Flex 3 app (player v9) which loads a Flash SWF (AS3, also player v9) and needs to dynamically pass it a collection of parameters which are known at run-time. These are parameters that are ...
2
votes
2answers
106 views

Can't seem to listen for UncaughtErrorEvent for SubApplication loaded by SWFLoader

I have a main Flex Application ('A.swf') loading a SubApplication (defined in' B.swf') via a SWFLoader and I need to listen for UncaughtErrorEvent from the SubApplication. I'm not able to get my event ...
2
votes
2answers
588 views

Flex: Impossible to resize the external loaded SWF's content

I have an application where I try to load an external SWF. So, we have: My application: The Stage's dimensions are 768x1280. ScaleMode = EXACT_FIT. External SWF: It's another application where its ...
2
votes
1answer
568 views

FLex : unload swf file in SWFLoader

In Flex 3 I have a SWFLoader: <mx:SWFLoader id="player" source="http://youtube.com/v/..." /> and after some time I invoke player.unloadAndStop(). And I always get this error: ReferenceError: ...
2
votes
1answer
481 views

Flex AIR SwfLoader CPU Usage > 50% problem

I have an AIR application, I use SwfLoader to load another swf file to display in this app. The problem is the CPU Usage always takes over 50%, but it only takes 15% when the swf file runs in ...
2
votes
2answers
10k views

How to access parent movieclip's variable from loaded swf

I have a swf which load an external swf. The loader swf has a variable which i want to access from the loaded swf. I use MovieClip(parent.parent).myVar but it return this error TypeError: Error ...
2
votes
3answers
6k views

How can I get the width/height of a loaded swf's stage in AS2?

I'm using MovieClipLoader to load an external as2 swf file into my as2 flash project, and I'm having trouble getting the original stage size of the loaded swf. When I run the following code: var ...
2
votes
2answers
2k views

Flex loads SWF as Sprite. How do I load it as a Movieclip instead?

I have a problem converting SWFLoader.content into a MovieClip instance while following (TheFlashCanon's excellent tutorial) on making a SWF communicate with Flex. The SWF loaded in question is ...
2
votes
3answers
2k views

Simulate ajax loader in winform app

I have a winform app which render a few charts, based on the user selection. I want to simulate an ajax style loader such that when the user makes a selection, there will be an overlay on the form ...
2
votes
5answers
7k views

How to raise an event from a SWF in a SWFLoader to a parent Flex application?

How can I raise an event from a SWF file loaded into a Flex application (using SWFLoader)? I want to be able to detect a) when a button is pressed b) when the animation ends
2
votes
6answers
13k views

How do I unload a externally loaded SWF file from a SWFLoader component in Adobe Flex?

I have an application that loads external SWF files and plays them inside a Adobe Flex / Air application via the SWFLoader Flex component. I have been trying to find a way to unload them from a button ...
1
vote
1answer
48 views

Add layer on top of existing SWF in Flash Pro

A project I'm involved in has a specific requirement where a layer must be added on top of an existing SWF. The SWF is created by converting a PDF using SWFTools pdf2swf. This layer will be used to ...
1
vote
2answers
43 views

Get the version of a loaded SWF into a MovieClip

Is it possible to read the SWF version of a loaded SWF into a main one? var mcl:Loader = new Loader(); mcl.contentLoaderInfo.addEventListener (Event.COMPLETE, prepareDisplay(mcl)); mcl.load (new ...
1
vote
3answers
79 views

can't add Application to displaylist

I'm trying to use a SWFLoader to load an Application and add the loaded Application to my Displaylist. public function onComplete(e:Event):void { someContainer.addChild((e.target.content)); } ...
1
vote
1answer
173 views

Error in Flex webapp with TabNavigator loaded using SWFLoader - WebKit browsers

I use a flex app (A) to load another flex app (B) using SWFLoader (both built using Flex Builder 3 sometime ago). Everything works fine as expected across all (IE, FF, Chrome, Safari) desktop ...
1
vote
2answers
152 views

Flex: When I load a local external SWF, the application load-unload infinitely

I have a Flex application that just load an external SWF, but the application load and unload infinitely my swf. The embeded as3 code is: <![CDATA[ import mx.events.FlexEvent; ...
1
vote
0answers
23 views

Add a Custom QUEUE ERROR in SWFUploader

I would like to have a custom queue error in SWFUploader. I would like to check the file that is being queued to have no white spaces on its file name. How will I get this done?
1
vote
1answer
192 views

Flash - can't access classes in another SWF

I'm trying to load a local SWF file and use the classes in that SWF (its a code only SWF, nothing in library). Here's the code that loads the library: var AD:ApplicationDomain = ...
1
vote
1answer
194 views

get the event when the loaded movieclip is ready in the right frame

i'm developing an app that use swf to load elements and add properties to the loaded swf. I use SWFLoader to load the movie and on the COMPLETE event i move the loaded MovieClip to a specific frame ...
1
vote
1answer
276 views

Flex 4, SWFLoader border resize issue

Following is the issue i am facing. I have a MainPage, on initialize I am calling a method which would create a SWFLoader object (aka LoginPage) and loads it in the MainPage. When we run the MainPage ...
1
vote
1answer
954 views

How can I pass parameters to a loaded swf application?

When I load an swf application using SWFLoader in Flex 4, how can I pass parameters to that application?
1
vote
4answers
863 views

Problem Loading AS2 swf into AS3 swf

I've been trying very hard to get an AS2 swf to load properly inside an AS3 swf - but to no avail ... The AS2 file (which is a rather big app referencing many external xml files etc.) works perfectly ...
1
vote
1answer
620 views

AS3: How do I add event listeners to objects in SWFs that I'm loading dynamically?

I have a parent SWF (Parent) that handles user navigation between multiple children SWFs (Child_1, Child_2, Child_3). How do I add event listeners to the navigation buttons on the children SWFs so ...
1
vote
3answers
836 views

detect the size of swf. flex/as3

I'm creating a map that has points of interest. (POI) When a user mouses over the POI an info bubble pops onto the screen and it loads an swf. I currently have 3 problems. My 4th problem is that this ...
1
vote
1answer
4k views

SWFLoader starts to play SWF without the loading being complete

I need to play SWF files in my project. These SWF files have background music in them. The which Sound Sync Options of this music in Flash is set to "stream". This is done so that if you pause the ...
1
vote
1answer
1k views

How to scale a loaded SWF?

I want to load a swf into a Flex application and scale it down into a thumbnail-size. I've looked at http://stackoverflow.com/questions/245420/dimensions-of-loaded-swfs-stage, but it does not really ...
1
vote
1answer
238 views

How to load a preloader in Actionscript3?

I want to load a preloader (call it "target app") into my own Flash application (call it "hosting app") via Loader. The target app loads like a typical preloader several other SWF files via relative ...
1
vote
2answers
3k views

Flex: how to load a .swf and use its library?

I have a symbol in a .swf's library, with a linkage name of "Pana". The Pana symbol is just a 100 frame animation that I would like to have timeline control over in Flex. So how can I load the .swf ...
1
vote
4answers
1k views

Waiting while SWFLoader loads a swf file

Currently I'm working on an application (Flex) which heavily uses external SWFs. I'd like to create a static method which takes a filename as an argument and returns SWF wrapped in some other class. ...
1
vote
1answer
1k views

Memory consumption of nested flex applications with RSLs using SWFLoader?

these days I read a lot with regards to RSLs. One disadvantage is that RSLs must be loaded into memory but can save significant loading time. Now what happens in the following scenario: I have a ...
1
vote
1answer
663 views

Declarative and programmatic SWFLoaders

What's the difference in terms of security between declarative and programmatic SWFLoaders? In the ff. code, loader1 throws a security exception while loader2 does not. public ...
0
votes
0answers
21 views

Loader SWF with variable playback controls, possible?

I'm trying to speed up some school videos (.swf files). I've asked this before with no luck: SWF Variable Playback Speed. Curious if this could be done via Javacript, I found another user asked this ...
0
votes
1answer
13 views

SWFLoader vertical scrolling

I have flash movie with 5 frames in swfloader. Is there any chances to scroll between frames like documents? Thanks.
0
votes
1answer
43 views

android application - interactive swf file not properly working through WebView control

I want to clarify one doubt ..How we can properly load an interactive swf file in an android application.? In case with a non-interactive swf file its OK..i can able to display it properly. But in ...
0
votes
1answer
25 views

Getting Handles to dynamically created swfloader

How I can change frame of dynamically created swfloader in Flash Builder 4.5? Thanks.
0
votes
1answer
40 views

SWFLoader crash

hello i try to load an swf into another one using SWFLoader, but it crashes somewhere inside the swfloader class. loaderGameSelection = new SWFLoader(); ...
0
votes
1answer
66 views

Accessing an array of colorPicker values in a loaded swf in flex

I have a flex application that dynamically loads swfs and I want to to use a set of color pickers in an external component within the application to determine a color array in the loaded swf. I ...
0
votes
0answers
63 views

Flex SWFLoader preloading

I got struck with 2 issues couldn't resolve it , I am loading a PlayerSWF in Flex using SWFLoader. Issue #1 : How to use pre loader for loading PlayerSWF in Main.swf. My application will looks ...
0
votes
1answer
30 views

what event sets the dimensions of a swfloader?

I am trying to scale a swf that has been loaded via a swfloader. When I get the complete event or the init event the dimensions of the swfloader are still zero. I don't see a value in the dimensions ...
0
votes
0answers
94 views

pushing flashvars from an air application to an embed SWF in air via SWFLoader

I have an air application in which I have to play a swf ... but I need to push from my flex app some flashvars to the embed flash movie. I've googled about it without finding a viable solution. My ...
0
votes
2answers
209 views

Memory leak when using SWFLoader in Adobe AIR

I'm trying to load windowed sub-application in another windowed application, The requirement is to replace one loaded application with another on user action. I tried the documented method of ...
0
votes
1answer
93 views

How to detect the presense of an SWF in the browser cache?

I have an AS3 application that loads various SWFs at runtime. The loading animation that is being used has a fairly long in and out animation that I don't want to show if the target SWF is in the ...
0
votes
3answers
185 views

Why isn't the swfloader working?

I am trying to use the mxml swfloader component to load the external flash from the following url, but it doesn't load anything. I'm using FlashBuilder 4.5. ...
0
votes
1answer
113 views

Access SWF Method From Flex

I have hit a brick wall after trying almost every example I have come accross. I was hoping that someone here might be able to help me. In a nutshell I have a Flex parent which is embedding a Flash ...
0
votes
1answer
276 views

modifying variables in a running swf from an SWFLoader

I have a flex application that's compiled with flex 4.1. I want that flex application to load an swf that contains the variable score and i want to be able to modify this variable. I wrote two ...
0
votes
0answers
109 views

Flex SWFLoader 'reloads' calling class

Am trying to use a class to load another class which in turn uses SWFLoader to load an external SWF. Here is the source code: Main.mxml <?xml version="1.0" encoding="utf-8"?> ...
0
votes
2answers
418 views

Can I pass parameters in Flex 3 to variables in a swf file using swfloader?

I've created a Flash Animation (CS5, ActionScript 3) and converted it to SWF. The flash animation needs the values of 3 variables (defined in the swf timeline) BEFORE it starts running in my Flex ...
0
votes
0answers
219 views

TLF text security violation

If I use TLF 2.0 in a flash file and publish the swf to a server, then I make an AIR application and load the swf from the server. After the load completes the SWF starts playing. Whenever it reaches ...

1 2