show/hide this revision's text 3 added 69 characters in body

Luca Tettamanti gave good answers to your specific questions already, so I'll just offer some additional info on the general subject:

I've implemented a simple plugin API for a Flex app using the ModuleManager class (and the other stuff in the mx.modules package.) The gist of it is that you subclass plugins from ModuleBase and use ModuleManager in the host app to load them. Then you have the plugins implement a common interface (e.g. IMyAppPlugin) and use some sort of a facade to represent and implement the interface to the host application that the plugins can use (e.g. MyAppFacade implements IMyAppFacade.) Whenever plugins are loaded, inject this facade reference into them.

The topic "Modular applications overview" in the Flex 3 help has some good info (the subchapter "Module domains" discusses application domains in the context of modules.) Here's an excerpt:

"By default, a module is loaded into a child domain of the current application domain. You can specify a different application domain by using the applicationDomain property of the ModuleLoader class."

The topic "Using the ApplicationDomain class" goes into more depth on the subject of application domains, and you should definitely read it if you haven't already.

show/hide this revision's text 2 added 400 characters in body

Luca Tettamanti gave good answers to your specific questions already, so I'll just offer some additional info on the general subject:

I've implemented a simple plugin API for a Flex app using the ModuleManager class (and the other stuff in the mx.modules package.) The gist of it is that you subclass modules plugins from ModuleBase and use ModuleManager in the host app to load them. Then you have the plugins implement a common interface (e.g. IMyAppPlugin) and use some sort of a facade to represent and implement the interface to the host application that the plugins can use (e.g. MyAppFacade implements IMyAppFacade.)

The topic "Modular applications overview" in the Flex 3 help has some more good info on this (the subchapter "Module domains" discusses application domains in the context of modules.) Here's an excerpt:

"By default, a module is loaded into a child domain of the current application domain. You can specify a different application domain by using the applicationDomain property of the ModuleLoader class."

The topic "Using the ApplicationDomain class" would probably be quite useful for goes into more depth on the subject of application domains, and you as wellshould definitely read it if you haven't already.

show/hide this revision's text 1

Luca Tettamanti gave good answers to your specific questions already, so I'll just offer some additional info on the general subject:

I've implemented a simple plugin API for a Flex app using the ModuleManager class (and the other stuff in the mx.modules package.) The gist of it is that you subclass modules from ModuleBase and use ModuleManager in the host app to load them.

The topic "Modular applications overview" in the Flex 3 help has some more info on this (the subchapter "Module domains" discusses application domains in the context of modules.) Here's an excerpt:

"By default, a module is loaded into a child domain of the current application domain. You can specify a different application domain by using the applicationDomain property of the ModuleLoader class."

The topic "Using the ApplicationDomain class" would probably be quite useful for you as well.