Thanks but i dont know how to do a compare based on your example show?

for(var i:uint = 0; i < records.length; i++) {
//If array matchs show text                             
if(payment_grid.selectedItem.PAYMENT_TYPE_CODE == records.valueof ????){
                                 Alert.show(records[0].addresschange);          
        
                                
        }



--- In flexcoders@yahoogroups.com, Pedro Sena <sena.pe...@...> wrote:
>
> records[0].addresschange
> 
> You are putting an object inside your array
> 
> Using records[0] you retrieve your object
> using records[0].addresschange you access its property called addresschange
> 
> On Thu, May 21, 2009 at 11:14 AM, Jason B <nos...@...> wrote:
> 
> >
> >
> > var records:Array = new Array({
> > addresschange: "Remember to reset the station address.",
> > etc.....
> > });
> >
> >
> > Alert.show(records['addresschange']);
> > Alert.show(records[0]);
> > Alert.show(records.addresschange);
> >
> > how the heck can i access the item directly by index name?
> >
> >  
> >
> 
> 
> 
> -- 
> /**
> * Pedro Sena
> * Systems Architect
> * Sun Certified Java Programmer
> * Sun Certified Web Component Developer
> */
>


Reply via email to