Tagged Questions

4
votes
1answer
397 views

What is ApplicationDomain.domainMemory for?

In AS3, what is ApplicationDomain.domainMemory for? http://www.adobe.com/livedocs/flash/9.0/ActionScriptLangRefV3/flash/system/ApplicationDomain.html#domainMemory
2
votes
4answers
221 views

Share Classes between Parent and Child SWF

So i have a situation where i want to pass a object of a class say 'MyBigAwesomeClass' from a child to a parent. I import the class definition into both the parent and child. Now, if i load the ...
2
votes
2answers
1k views

C# Assembly Loading and Late Binding

I'm reading this book on C# and .NET and I'm learning a bunch of cool stuff. I've read the part where the author talks about dynamically loading an assembly and creating an instance of a type in that ...
1
vote
2answers
420 views

Howto: Flex Module with its own custom RSLs loaded only into child ApplicationDomain?

I have a complicated application. I use Flex 4.1 RSLs and custom RSLs for all my libraries (and there are like 15 of custom SWCs - Flex Library Project) I would like to load main application with ...
1
vote
0answers
538 views

AS3 Loader's unloadAndStop odd behavior

I know the AS3 Loader's class unloadAndStop() supposes to unload and stop everything on a SWF's stage when I load one, but does it also changes objects within the library (even if they are not on ...
1
vote
1answer
895 views

Actionscript 3 loading external swf casting issue

I'm having something of an issue with trying to load externally defined classes in actionscript 3.0. I believe this to be an issue with my understanding of the ApplicationDomain / LoaderContext ...
1
vote
1answer
893 views

Flex SWF assets loaded into Flash SWF at runtime within same ApplicationDomain

I'm trying to load a swf compiled by the Flex SDK into a swf exported by the Flash IDE and instantiate the assets by way of getDefinition(). Normally this works fine with assets exported from the ...
1
vote
2answers
1k views

Create Plugins in Flex - loading nested SWF files

I'm trying to implement a plugin system for our application, and having a devil of a time getting SWF file which was dynamically loaded itself, load additional SWF files. It goes something like this: ...
0
votes
2answers
47 views

Share a as3 class between domains

I have a Singleton class instantiated in Main.swf located at domainA. The file loads Game.swf from domainB via LoaderMax (http://www.greensock.com/). When I try to access the Singleton I guess this is ...
0
votes
1answer
100 views

Release application domain from main SWF

i like to know that there is way to remove all data after unload swf . Calling Loader.unloadAndStop(); remove content and loaded bytes , but loaded classes stays in application domain . If i load it ...
0
votes
1answer
76 views

Loading a class in module1 with the same name as a class in module2

I have a Flex application that can load modules as necessary. When the first module is loaded, it creates a class MyBackground(), which paints the background red. When I choose to load a second module ...
0
votes
2answers
2k views

“Bootstrapping” a remote swf into the application SecurityDomain (actionscript3)

My Flash (AS3/AIR) application is currently using a slightly unusual architecture (for a Flash app) to provide particular base classes for loaded content at runtime. The external content is published ...