Questions tagged [swfloader]

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

SWFLoader is responsible for loading Flex applications or sub-applications into another applications.

The control can be used to load SWF files, as well as images such as GIF, PNG and JPG.

136 questions
0
votes
1 answer

Flex Swfloader with a swf which loads another swf file

I have one Swfloader. This swfloader loads file A.swf. On creationComplete event, File A.swf loads another swf(file B.swf). Everything works fine when I run the application once in the same machine. But when I run two or more instance of the…
casey
  • 33
  • 5
0
votes
0 answers

AS3 - Detect timeline code inside loaded SWF files

I'm investigating legacy project. Many SWF files are loaded dynamicaly. I've founded that some of them has code on frames. Cause of this I get unexpected behaviour in my application. Is there way to detect this code (it can be in symbol linked to AS…
Sergey Senkov
  • 1,490
  • 1
  • 13
  • 23
0
votes
0 answers

AS3: How to find source of embed fonts?

I'm investigating huge legacy project, where many SWF assets are dynamically loaded. I guess designers used embedded fonts in Flash IDE. Now I'm making localization and my issue is that embedded Futura font doesn't have non-english symbols. I've…
Sergey Senkov
  • 1,490
  • 1
  • 13
  • 23
0
votes
2 answers

Flex: Need embedded SWF to be able to interact with project assets

I have a Flex project in which I am embedding a Flash SWF containing an image viewer. The SWF file I'm embedding is supplemented by an XML file, which contains a list of images to show, and an images folder containing the images. The problem I'm…
bwv2
  • 1
  • 1
0
votes
0 answers

Load external SWF loader content not accessible

Actually i have a SWF that is loaded by another SWF. This SWF that is loaded, itself load another SWF. This may be weird, but it's in a context of an online game that let you develop SWF as plugins. So, we have SWFA(the video game) ---> SWFB ---->…
0
votes
0 answers

SWF file not opening in chrome and firefox

I have a package file which includes the collection of SWF files and HTML files. and when I run HTML file it shows the SWF file running in IE, however, it is not running in chrome and firefox. Please find the package…
Ramesh
  • 101
  • 5
0
votes
0 answers

XML/Class/ .swf import

I'm not entirely sure of myself when it comes to as3 but seem to understand 'most' things. I'm having a bit of an issue and hope that someone may be able to lend me their brainpower: I have a .fla that calls on multiple class files. Within one of…
P.T. Fenn
  • 55
  • 8
0
votes
0 answers

How to display SWF files or macromedia contents of website inside android app

I have an app that displays news of famous websites but i want to add some more news sites and e-paper of famous newspapers.But those E-paper uses adobe flash player or something others to load epapers.I want to load them in my android app. As there…
0
votes
2 answers

Unloading swf from parent swf

So I loaded a swf into another swf like so correctURL being my external swf variable function startLoad(){ var mRequest:URLRequest = new URLRequest(correctURL.toString()); mLoader.contentLoaderInfo.addEventListener(Event.COMPLETE,…
Hornerlas
  • 105
  • 12
0
votes
2 answers

Class in loaded SWF cannot use base class in loading SWF

I have two SWF files which I shall call container and slave. The slave file contains a movieclip that extends from a class I shall call base. base extends MovieClip and is compiled into an SWC. slave includes this SWC as a runtime library, while…
Bart van Heukelom
  • 43,244
  • 59
  • 186
  • 301
0
votes
3 answers

ActionScript 3.0 how many loaders?

I want to load 2 different elements on my flash video: First is a dynamic photo (I take the specific number from an external variable) Latter is a swf video... My question is? I'm new to AS3, I saw that I need a loader and I can load everything..…
0
votes
1 answer

flex 4: resize SWFLoader element to fit inside a VGroup element

I'm trying to resize a flash game inside a VGroup, no matter what configuration i try to set, some of my flash games are clipped out. i see only 80% of the actual flash screen. this is my code:
ufk
  • 30,912
  • 70
  • 235
  • 386
0
votes
1 answer

How to change the frame rate of a SWF file using as3?

I have a flex application which loads the swf files using SWFLoader and i have set the frame rate of the application 60.When i load a swf file it is playing vary fast,I think this is happening for the application frame rate.I want the frame rate of…
Babu
  • 440
  • 5
  • 23
0
votes
1 answer

Import classes from SWF into Flex app without starting the imported SWF

Background I would like to write an AI for a certain Flash game, and as part of that I want to train an image recognizer with elements of the game. In order to do that, first I want to generate many samples with various configurations that can be…
David Frank
  • 5,918
  • 8
  • 28
  • 43
0
votes
0 answers

AS3 - Flash CS6 - Loading three Interactive swf files from a single swf one by one. third one loads but doesn't play

Hi I am loading three swf's from a loader file. Each one is loaded on a different Scene. There's a switchboard Scene which moves user to the relevant scene where the file is loaded by AS3 Code below. var swf3:MovieClip; var Sim3:Loader = new…