[flexcoders] Access a ViewStack within a custom component

2007-10-14 Thread George Georgiou
Hi there, I have this really simple problem. I have created a ViewStack within my main application. I would like to switch into different views from a custom component that I have. Here's my code: and within

RE: [flexcoders] Access a viewstack

2007-06-01 Thread Gordon Smith
Sent: Tuesday, May 29, 2007 8:24 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Access a viewstack I solve it using this: http://www.nielsbruin.nl/flex_examples/modelexample/ModelExample.html <http://www.nielsbruin.nl/flex_examples/modelexample/ModelExample.html> But for me

Re: [flexcoders] Access a viewstack

2007-05-29 Thread Tom Chiverton
On Tuesday 29 May 2007, Giro wrote: > But for me is strange that flex dont have a more easy solution. The thing about Flex is that it doesn't force any one way of doing things. -- Tom Chiverton Helping to professionally monetize cross-media systems on: http://thefalken.livejournal.com *

RE: [flexcoders] Access a viewstack

2007-05-29 Thread Giro
, 29 de mayo de 2007 16:56 Para: flexcoders@yahoogroups.com Asunto: Re: [flexcoders] Access a viewstack On Tuesday 29 May 2007, Giro wrote: > How can I do it? Either give your component a function call back (onClick ?) so it can fire code in the parent directly when stuff happens, refer to

Re: [flexcoders] Access a viewstack

2007-05-29 Thread Tom Chiverton
On Tuesday 29 May 2007, Giro wrote: > How can I do it? Either give your component a function call back (onClick ?) so it can fire code in the parent directly when stuff happens, refer to the view via parent., or investigate something like a ModelLocator. -- Tom Chiverton Helping to ambassador

[flexcoders] Access a viewstack

2007-05-29 Thread Giro
I have a viewstack on my main application. I have two views, in one of this view I have a component. I another I have a simple panel. When I push a button inside the component, I want to change main viewstack, but the problem is that I can't access the main viewstack ID from my component. Ho