[flexcoders] Re: I'm trying to get a value from 1 array based off the ID in another.

2008-08-27 Thread actionscript_czar
Assuming that rankgradeID is the index of another array it would be easy rankGrade = model.rankArray [model.student.RANKGRADEID].RANKABBRIVIATION; Otherwise you might look into using a dictionary rather than a simple array. Then, the code above would work as long as model.rankTable used RANKGR

[flexcoders] Re: I'm trying to get a value from 1 array based off the ID in another.

2008-08-27 Thread jason_graves2003
That Worked! Thank You!! --- In flexcoders@yahoogroups.com, "actionscript_czar" <[EMAIL PROTECTED]> wrote: > > Assuming that rankgradeID is the index of another array it would be > easy > rankGrade = model.rankArray > [model.student.RANKGRADEID].RANKABBRIVIATION; > > Otherwise you might look