I bet he means 'plugins' like some web apps are starting to have.
I think your answer is; You need to create a framework that has a public
interface API. Once this api is set you can load any component/module at
runtime and share within the specified ApplicationDomain.
I am working on something similar for future projects and components of
mine. But, making use of good interfaces is one way to start this without
any destination in mind.
IE
IStyleClient.
I could load a module at runtime and check it with
if (module is IStyleClient)
style = IStyleClient(module).getStyle('blah');
That is the simple point. One other thing you need is a map or start up
expectation of what the app can handle. This means what interfaces the app
is going to use. A little more complicated but, I am sure in the next 2
years this will become like a 'myspace' fad in Flex. Pretty sure and mark my
words on this one. :)
Peace, Mike
On 14 Apr 2007 09:09:39 -0700, Muzak <[EMAIL PROTECTED]> wrote:
If you mean you want to create components for distribution or want to
have them available accros projects, look into creating swc
files.
http://livedocs.macromedia.com/flex/201/html/creating_comps_041_1.html
http://livedocs.adobe.com/flex/201/html/building_overview_121_09.html
http://livedocs.macromedia.com/flex/201/html/compilers_123_42.html
Is this what you're after?
regards,
Muzak
----- Original Message -----
From: "Nick Rathke" <[EMAIL PROTECTED] <nick%40sci.utah.edu>>
To: <[EMAIL PROTECTED] <flexcoders%40yahoogroups.com>>
Sent: Saturday, April 14, 2007 2:12 PM
Subject: [flexcoders] open source plug-in AS frame work ?
> Greetings Flex coders,
>
> Is there an open source plug-in framework for AS/Flex that allows for
> new new components to be added to an exiting application?
>
> I have Google for it, but anything with AS or Flex and plug-in all seem
> to point to the Eclipse Flex builder plug-in.
>
> I am looking for something along the lines of
> http://jpf.sourceforge.net/index.html.
>
> --
> Nick Rathke
--
Teoti Graphix
http://www.teotigraphix.com
Blog - Flex2Components
http://www.flex2components.com
You can find more by solving the problem then by 'asking the question'.