RE: [flexcoders] Checkbox with function problem

2008-02-15 Thread steven pollard
same result. I accidently left that true in there by mistake was testing. thanks To: [EMAIL PROTECTED]: [EMAIL PROTECTED]: Fri, 15 Feb 2008 17:53:01 +Subject: Re: [flexcoders] Checkbox with function problem Maybe it should really be: if (!signature_include.selected) { Paul

Re: [flexcoders] Checkbox with function problem

2008-02-15 Thread Paul Andrews
Maybe it should really be: if (!signature_include.selected) { Paul - Original Message - From: steven pollard To: flexcoders@yahoogroups.com Sent: Friday, February 15, 2008 5:43 PM Subject: RE: [flexcoders] Checkbox with function problem I tried that and still the same

RE: [flexcoders] Checkbox with function problem

2008-02-15 Thread steven pollard
I tried that and still the same results.. here is my code To: [EMAIL PROTECTED]: [EMAIL PROTECTED]: Fri, 15 Feb 2008 17:34:34 +Subject: RE: [flexcoders] Checkbox with function problem Use == rather than = (the former compares, the latter sets the value). (That’s from

RE: [flexcoders] Checkbox with function problem

2008-02-15 Thread Jim Hayes
5 February 2008 17:33 To: flexcoders@yahoogroups.com Subject: [flexcoders] Checkbox with function problem Hello Everyone, I am emailing because I have a problem whenever I write a function with if (Checkbox.selected=ture/false){something} or if (!checkbox.selected){something} Flex reads the

[flexcoders] Checkbox with function problem

2008-02-15 Thread ghus32
Hello Everyone, I am emailing because I have a problem whenever I write a function with if (Checkbox.selected=ture/false){something} or if (!checkbox.selected){something} Flex reads the function before I call it, or it reads the selected. So when I run the program the checkbox is already sele