Re: [flexcoders] Re: Flex Compenents, how to make them talk

2008-04-18 Thread Nick Gerig
:* [flexcoders] Re: Flex Compenents, how to make them talk Hi Gordon, I've been using Canvas with ViewStack too. The reason is that I don't know of a lower level alternative that extends Container. I would have thought UIComponent was a good option as it does have Container as a sub-class but I get

[flexcoders] Re: Flex Compenents, how to make them talk

2008-04-17 Thread nickgerig
Sent: Wednesday, April 16, 2008 2:43 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re: Flex Compenents, how to make them talk A click handler in Login's Script could do Application.application.vsApp.selectedChild = Application.application.vsRegister

RE: [flexcoders] Re: Flex Compenents, how to make them talk

2008-04-17 Thread Gordon Smith
To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Flex Compenents, how to make them talk Hi Gordon, I've been using Canvas with ViewStack too. The reason is that I don't know of a lower level alternative that extends Container. I would have thought UIComponent was a good option as it does have

[flexcoders] Re: Flex Compenents, how to make them talk

2008-04-16 Thread Tracy Spratt
Below is a discussion of inter-component communication. I never polished it up, but it will be some value anyway. Tracy Communicating between Components: Note: for loose coupling use events. But that is another topic. A non-trivial flex application is component based. While all of the

[flexcoders] Re: Flex Compenents, how to make them talk

2008-04-16 Thread timgerr
If I have 2 components, how can they share data? If I want to reference somthing on the other component, how can I do that. Thanks, timgerr

[flexcoders] Re: Flex Compenents, how to make them talk

2008-04-16 Thread timgerr
Lets say I have a Flex Component called test1.mxml and that component has a view stack. I then create another component called test2.mxml and I want to reference the view stack in test1.mxml, can I do that? The problem is I want to change states so I have a component that is register.mxml and

RE: [flexcoders] Re: Flex Compenents, how to make them talk

2008-04-16 Thread Gordon Smith
Compenents, how to make them talk Lets say I have a Flex Component called test1.mxml and that component has a view stack. I then create another component called test2.mxml and I want to reference the view stack in test1.mxml, can I do that? The problem is I want to change states so I have

RE: [flexcoders] Re: Flex Compenents, how to make them talk

2008-04-16 Thread Gordon Smith
Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Gordon Smith Sent: Wednesday, April 16, 2008 2:43 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re: Flex Compenents, how to make them talk A click handler

[flexcoders] Re: Flex Compenents, how to make them talk

2008-04-16 Thread timgerr
: Wednesday, April 16, 2008 2:43 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re: Flex Compenents, how to make them talk A click handler in Login's Script could do Application.application.vsApp.selectedChild = Application.application.vsRegister; but it wouldn't