Re: [Spam] RE: [Spam] [flexcoders] Question on Flex Script Execution + Alert.show

2009-08-27 Thread Beau Scott
> Tracy Spratt, > > Lariat Services, development services available > -- > > *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On > Behalf Of *Nick Middleweek > *Sent:* Thursday, August 27, 2009 6:43 AM > *To:* flexcoders@yah

Re: [Spam] RE: [Spam] RE: [Spam] [flexcoders] Question on Flex Script Execution + Alert.show

2009-08-27 Thread Samuel Colak
groups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Nick Middleweek Sent: Thursday, August 27, 2009 6:43 AM To: flexcoders@yahoogroups.com Subject: Re: [Spam] RE: [Spam] [flexcoders] Question on Flex Script Execution + Alert.show Why won't it work? I can't see why i

Re: [Spam] RE: [Spam] RE: [Spam] [flexcoders] Question on Flex Script Execution + Alert.show

2009-08-27 Thread Nick Middleweek
-- > > *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On > Behalf Of *Nick Middleweek > *Sent:* Thursday, August 27, 2009 6:43 AM > *To:* flexcoders@yahoogroups.com > *Subject:* Re: [Spam] RE: [Spam] [flexcoders] Question on Flex Sc

RE: [Spam] RE: [Spam] [flexcoders] Question on Flex Script Execution + Alert.show

2009-08-27 Thread Tracy Spratt
, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Nick Middleweek Sent: Thursday, August 27, 2009 6:43 AM To: flexcoders@yahoogroups.com Subject: Re: [Spam] RE: [Spam] [flexcoders] Question on Flex Script Execution + Alert.show

Re: [Spam] RE: [Spam] [flexcoders] Question on Flex Script Execution + Alert.show

2009-08-27 Thread Beau Scott
;> >> Lariat Services, development services available >> -- >> >> *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On >> Behalf Of *Nick Middleweek >> *Sent:* Wednesday, August 26, 2009 7:33 PM >> *To:* flexcoders@yah

Re: [Spam] RE: [Spam] [flexcoders] Question on Flex Script Execution + Alert.show

2009-08-27 Thread Nick Middleweek
to:flexcod...@yahoogroups.com] *On > Behalf Of *Nick Middleweek > *Sent:* Wednesday, August 26, 2009 7:33 PM > *To:* flexcoders@yahoogroups.com > *Subject:* Re: [Spam] [flexcoders] Question on Flex Script Execution + > Alert.show > > > > > > I'm not sure if this tech

RE: [Spam] [flexcoders] Question on Flex Script Execution + Alert.show

2009-08-26 Thread Tracy Spratt
: flexcoders@yahoogroups.com Subject: Re: [Spam] [flexcoders] Question on Flex Script Execution + Alert.show I'm not sure if this technique is frowned upon but... You could have a new private var boolAlertContinue:Boolean = false; In your alertHandler function, you would set it to

RE: [flexcoders] Question on Flex Script Execution + Alert.show

2009-08-26 Thread Tracy Spratt
paradigm. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Angelo Anolin Sent: Wednesday, August 26, 2009 2:03 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Question on Flex Script

Re: [Spam] [flexcoders] Question on Flex Script Execution + Alert.show

2009-08-26 Thread Nick Middleweek
I'm not sure if this technique is frowned upon but... You could have a new private var boolAlertContinue:Boolean = false; In your alertHandler function, you would set it to true... boolAlertContinue = true; And after the Alert.show and before the if(myAlert == 1) you need to do a do while loop.

Re: [flexcoders] Question on Flex Script Execution + Alert.show

2009-08-26 Thread Angelo Anolin
Thanks and regards, Angelo From: Beau Scott To: flexcoders@yahoogroups.com Sent: Thursday, 27 August, 2009 0:32:02 Subject: Re: [flexcoders] Question on Flex Script Execution + Alert.show Alert.show is async, so move the code after Alert.show to the alertHandler

Re: [flexcoders] Question on Flex Script Execution + Alert.show

2009-08-26 Thread Beau Scott
Alert.show is async, so move the code after Alert.show to the alertHandler method after your if/else block that's already in there. Beau On Wed, Aug 26, 2009 at 12:03 AM, Angelo Anolin wrote: > > > Hi FlexCoders, > > This has puzzled me a bit.. > > I have the following scripts in my applicatio

[flexcoders] Question on Flex Script Execution + Alert.show

2009-08-25 Thread Angelo Anolin
Hi FlexCoders, This has puzzled me a bit.. I have the following scripts in my application: private var myAlert:int; private function testFunction(evt:Event):void { Alert.show('do you want to proceed', 'Title', Alert.YES | Alert.NO, null, alertHandler, null, Alert.YES); if(myAlert == 1)