Thanks for responding Harbs!
Could you give me an example of this please. The only way I've been able to
load the other mx:Application is modifying the index.html and adding an
<iframe src='indexOfAnotherApplication.html' > then instantiating the
object via:
var obj :Object = window.frames["0"]["application"]["path"];
obj = new obj();
but then fails on adding to the screen via:
addChild(obj as IUIComponent)
Not sure what you mean by cross-op, but would need the apps to share many
models or singletons.
On Thu, Nov 25, 2021 at 2:48 AM Harbs <[email protected]> wrote:
> How much cross-op do you need?
>
> I’d probably load it in an iframe you can use either <html:Iframe> or
> <js:WebBrowser>
>
> If you need limited communication, you can use postMessage to communicate
> between the two apps.
>
> https://developer.mozilla.org/en-US/docs/Web/API/Window/postMessage
>
> > On Nov 25, 2021, at 1:29 AM, GAbe Barbosa <[email protected]> wrote:
> >
> > Hi royale folks,
> >
> > I've tried using mx:Modules with no success. I'm trying to come up with
> an
> > alternative solution and need help.
> >
> > How would you launch/load an application from the currently running
> > application at runtime. Ensuring I don't get any duplicate deps is a
> whole
> > other problem, so don't worry about that for now.
> >
> > Will be grateful for any ideas, suggestions. Thank you!
>
>