for each(var value in object) {}

and

for (var key in object) {
   var value = object[key];
}

-J

On Wed, May 7, 2008 at 3:27 PM, timgerr <[EMAIL PROTECTED]> wrote:

>   I have this object and I am not sure what is in it. So I do this
> for each (var somthing:String in myObject){
> trace(somhting);
> }
>
> So with this I get all the object answers. I want to get what is
> referecing the object answers, in PHP I can do this.
> foreach ($somthing as $service => $myObject){
> echo $somthing . " " . $services . "<br/>";
> }
>
> I want to print out what is pointing to the values, can this be done
> in flex?
>
> Thanks,
> timgerr
>
>  
>



-- 
"Therefore, send not to know For whom the bell tolls. It tolls for thee."

:: Josh 'G-Funk' McDonald
:: 0437 221 380 :: [EMAIL PROTECTED]

Reply via email to