[flexcoders] BETA 2: DateField appears behind TitleWindow when clicked

2006-04-01 Thread Alex Alex
Hello, I have a TitleWindow and inside I hold a signup form. In the signup form I ask for the Birthdate using a DateField. When clicked on for the first time the popup calendar appears on top of the TitleWindow. BUT if I want to pick another date and I click on the small calendar icon for a

[flexcoders] BETA 2: How to validate a form before actually submitting

2006-04-01 Thread Alex Alex
Hello, In a signup form, when I click the submit button I would like for all the validation to happen and then actually hit the addMember() function. But if a form fails the validation how can I prevent the execution of addMember(). Thanks, Alexander -- Flexcoders Mailing List FAQ:

Re: [flexcoders] A suggestion for the group (Tutorials and Tip's)

2006-04-01 Thread Michael Schmalle
BTW, You can go to this url; http://www.flex2components.com/wiki/doku.php/as3:flex2framework:hierarchy To see what this wiki is about. I plan on automating this wiki with my DocumentX project that is Flex. Then we can see the real power of Flex documenting itself with the developers as the

RE: [flexcoders] Run shortcut

2006-04-01 Thread Stefan Richter
Anyone got any luck with this? I seem to be unable to set up a working shortcut for Run... From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stefan RichterSent: 29 March 2006 15:54To: flexcoders@yahoogroups.comSubject: [flexcoders] Run shortcut

Re: [flexcoders] BETA 2: How to validate a form before actually submitting

2006-04-01 Thread Dreamer
Alex Alex, you can write a function,like that. if(validation is success) addMember(); else alert(invalid input!!!);     Peace, Dreamer [EMAIL PROTECTED]   2006-04-01 ===

[flexcoders] Re: Flex Beta 2 - Loader not loading SWF 100%

2006-04-01 Thread inawire
Can you supply some sample code snipits? Thanks Ross --- In flexcoders@yahoogroups.com, Bruno Martins [EMAIL PROTECTED] wrote: Hi Ross, My friend Beck Novaes did a better implementation of AppLoader. Tks.. -- Flexcoders Mailing List FAQ:

[flexcoders] Re: BETA 2: How to validate a form before actually submitting

2006-04-01 Thread Alex Alex
Hi Mike, I understand the login, but how do I reference the validation? I mean what would actually go where you have validation is success. I'm not an actionscrip expert! I'm a cfforever guy ;-). Alexander --- In flexcoders@yahoogroups.com, Dreamer [EMAIL PROTECTED] wrote: Alex Alex,

Re: [flexcoders] Re: BETA 2: How to validate a form before actually submitting

2006-04-01 Thread Manish Jethani
On 4/1/06, Alex Alex [EMAIL PROTECTED] wrote: I mean what would actually go where you have validation is success. In Flex 1.5 you used to be able to call isStructureValid() on the data model. I don't know how it is in Flex 2.0 Mansih -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Re: BETA 2: How to validate a form before actually submitting

2006-04-01 Thread Marc Archuleta
Here's a code snippet that works in Flex 1.5. It may need some refactoring for version 2. This code uses the StringValidator. If Validator.isStructureValid fails, myfield_ti will be highlighted in red and there will be a little message saying it's a required field (or whatever the particular

[flexcoders] Cairngorm 2 and mx:States

2006-04-01 Thread sof4real03
As I'm implementing the usage of the Cairngorm 2 microarchitecture on a project, I came across a question regarding the new Flex 2 States concept and how to best implement it with Cairngorm. My feeling is the States should be defined in the ModelLocator. That would imply the Model knowing more

Re: [flexcoders] Extending MXML components (change from 1.5 to 2)

2006-04-01 Thread Nathan Smith
We have a simillar problem with porting from Beta 1 to Beta 2.The following error occurs when we load our FormWindow component: Error: Multiple sets of visual children have been specified for this component (component definition and component instance)at mx.core::Container/initialize()at

Re: [flexcoders] Cairngorm 2 and mx:States

2006-04-01 Thread Scott Langeberg
Actually, application state can be stored in the Model. If you look at the login example, you'll see them storing a workflowState variable. However, if you're talking about your views, then that is probably the proper time to use the mx:States objects. ScottOn 4/1/06, sof4real03 [EMAIL

RE: [flexcoders] A suggestion for the group (Tutorials and Tip's)

2006-04-01 Thread Matt Chotin
In addition to all of the community resources out there and the labs Wiki we are investigating adding some more functionality to the Developer Center that will provide more sample code and task-based solutions. I currently own most sample content for the Flex 2 release and despite the problems