Re: [flexcoders] Bug on IF..ELSE Condition Or What ?

2008-02-24 Thread Eric Cancil
e happen > > as you step line by line through this code? > > > > Gordon Smith > > Adobe Flex SDK Team > > > > -- > > *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On > > Behalf Of *Harry Saputra > > *Se

Re: [flexcoders] Bug on IF..ELSE Condition Or What ?

2008-02-24 Thread Patrick Driggett
're using FlexBuilder, what do you see happen > as you step line by line through this code? > > Gordon Smith > Adobe Flex SDK Team > > -- > *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On > Behalf Of *Harry Saputra > *Sent:*

RE: [flexcoders] Bug on IF..ELSE Condition Or What ?

2008-02-22 Thread Gordon Smith
ug on IF..ELSE Condition Or What ? I get confuse with this. I have very2 simple conditional structure like that : ... var stat:Number = Number(arrPeriodeLirs.getItemAt(0).status); if (stat==2) { Alert.show('Error number 2','error'); } else if ( stat==1 ) { Alert.sho

[flexcoders] Bug on IF..ELSE Condition Or What ?

2008-02-22 Thread Harry Saputra
I get confuse with this. I have very2 simple conditional structure like that : ... var stat:Number = Number(arrPeriodeLirs.getItemAt(0).status); if (stat==2) { Alert.show('Error number 2','error'); } else if ( stat==1 ) { Alert.show('Error number 1','error'); }