Futurescale, Inc. PureMVC Home

The PureMVC Framework Code at the Speed of Thought


Over 10 years of community discussion and knowledge are maintained here as a read-only archive.

New discussions should be taken up in issues on the appropriate projects at https://github.com/PureMVC

Show Posts

* | |

  Show Posts
Pages: [1]
1  Announcements and General Discussion / Fabrication / Re: questions about moduleAddress and parent access on: June 25, 2009, 03:02:35
1) That is the same way I do it, passing a reference to the parent router and address as the body of an initModule notification sent to the loaded module.

2) I noticed the same issue with moduleAddress.  Instead I use: module.moduleFabricator.moduleAddress

:
var module:FlexModuleLoader = modulesContainer.getChildAt(event.oldIndex) as FlexModuleLoader;
routeNotification(ControllerConstants.LEAVE_MODULE, proxy.state, null, module.moduleFabricator.moduleAddress);

Pages: [1]