[flexcoders] Binding a ComboBox to a ViewStack

2005-10-10 Thread face7hill
Hi Everyone, Anybody have any luck binding a ViewStack as a dataProvider for a ComboBox? Is this even possible? I tried a couple of things but all I get is an empty ComboBox. Ideally, I'd like the ComboBox to use the "label" attribute from the ViewStack and use the ViewStack component id as

[flexcoders] Re: Function using selectedChild does not like the argument I'm sending it

2005-10-10 Thread face7hill
Solved this with: mx.core.Application.application.nextScreenName = eval (event.target.data); --- In flexcoders@yahoogroups.com, "face7hill" <[EMAIL PROTECTED]> wrote: > > Hi Everyone, > > I have a ViewStack with a bunch of screens in my Main.mxml app.

[flexcoders] SOLVED: Re: Function using selectedChild does not like the argument...

2005-10-10 Thread face7hill
--- In [EMAIL PROTECTED], "face7hill" <[EMAIL PROTECTED]> wrote: > > Hi Everyone, > > I have a ViewStack with a bunch of screens in my Main.mxml app. On > the first viewstack (mainViewStack.selectedChild=screen0) I'm > calling a component (Screen0.m

[flexcoders] Function using selectedChild does not like the argument I'm sending it

2005-10-09 Thread face7hill
Hi Everyone, I have a ViewStack with a bunch of screens in my Main.mxml app. On the first viewstack (mainViewStack.selectedChild=screen0) I'm calling a component (Screen0.mxml). Inside that component, I have a bunch of radio buttons. When a user clicks a radio button, the buttonClicked() fu

[flexcoders] Re: Pass data from child component to parent in wizard app

2005-10-05 Thread face7hill
it : ) > > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of face7hill > Sent: Wednesday, October 05, 2005 3:22 PM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Pass data from child component to parent i

[flexcoders] Pass data from child component to parent in wizard app

2005-10-05 Thread face7hill
Hello All, I have a wizard type app called "main.mxml" with three children ("screen1", "screen2" and "screen3"). I have a button in main.mxml called "nextButton". Inside screen1.mxml are a couple of radio buttons that a user can select. How do I get the selected radio button (in the child c

[flexcoders] sending arguments to addEventListener

2005-10-01 Thread face7hill
I'm trying to create a wizard based application. I'm having trouble sending arguments to my "back" and "next" buttons using addEventListener. Basically, when my app loads, in the viewstack, the second screen is loaded, i.e. it loads before the user gets a chance to hit the next button. I'm

[flexcoders] I wish there was a good tutorial on the preloader

2005-09-10 Thread face7hill
It seems like a lot of people have asked a ton of preloader questions and few get answered. I'm a noob and so I read through the archives on google and yahoo groups, still few answers. I also read the section on preloaders in "Developing Rich Clients with Macromedia Flex"--the example ther

[flexcoders] Help: link to a specific viewstack inside a specific tab

2005-09-06 Thread face7hill
I'm using tabs for my main navigation in my app. On the first tab, I have a button which points to tab 2. Tab 2 has a viewstack. I want the button in tab 1 to point to tab 2 > myViewstack.selectedIndex=3. I have something like: function goTab2Stack3(){ myViewStack.selectedIndex=3; myta