tags:

views:

220

answers:

3

I'm looking to have a couple of plugins in a Flex project I'm working on. I know I can load a SWF using the SWFLoader, but I thought in Flex3 you can now have Runtime Shared Libraries or something. Does anyone have any good documentation on loading a plugin at runtime? Ideally I'd like to be able to load a plugin from a URL, then execute some code from within the plugin (e.g. add a control to the page).

+3  A: 

You can use either Modules or RSL.

RSLs have the advantage of getting cached by flash rather than the browser so they stick around longer.

Modules are easier to create and use. I have used modules and had issues with modules failing to load (code needs to handle that case). I haven't tried RSLs yet.

Here is some documentation on creating RSLs http://labs.adobe.com/wiki/index.php/Flex_3:Feature_Introductions:Flex_3_RSLs

Brian
A: 

Note that, currently, loaded RSLs must be compiled against the very same version of the Flex framework.. if you plan for a "binary" plugin system, probably you want to wait for the Marshall plan feature to be implemented, in the next Flex version.

Cosma Colanicchia
A: 

If you want to try a new and alternative approach, this is a application core framework modelled after java OSGi: http://www.potomacframework.org/ I haven't tried it myself, but it looks really cool!

Cambiata