[flexcoders] Re: filter AS syntax question

2007-02-14 Thread nasawebguy
: Wednesday, February 14, 2007 9:06 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: filter AS syntax question Thanks Tom! But I get this error 1084: Syntax error: expecting rightparen before bitwisenot in the return line below... private function filterByProduct( item:Object

[flexcoders] Re: filter AS syntax question

2007-02-13 Thread nasawebguy
Thanks Tom! But I get this error 1084: Syntax error: expecting rightparen before bitwisenot in the return line below... private function filterByProduct( item:Object ) : Boolean { var ProductItem:Object = productgrid.selectedItem; if( ProductItem == null ) return false;

[flexcoders] Re: filter AS syntax question

2007-02-13 Thread Paul DeCoursey
I don't think there is a bitwise not assignment operator (~=), I'm guessing it should be ~ vs ~=. --- In flexcoders@yahoogroups.com, nasawebguy [EMAIL PROTECTED] wrote: Thanks Tom! But I get this error 1084: Syntax error: expecting rightparen before bitwisenot in the return line below...