Making Lookup Tables with Object Literals : Dynamic object « Class « Flash / Flex / ActionScript






Making Lookup Tables with Object Literals

 


package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){


        var info:Object = {city:"Toronto", country:"Canada"};
        
        //The preceding code is identical to the following code:
        var info:Object = new Object(  );
        info.city = "Toronto";
        info.country = "Canada";
        

    }
  }
}

        








Related examples in the same category

1.Create dynamic class
2.Dynamic References to Variables and Methods
3.Using Dynamic Instance Variables to Create Lookup Tables
4.Dynamic ActionScript: All dynamic instance variables are untyped and public
5.Processing Dynamic Instance Variables with for-each-in and for-in Loops
6.Call setPropertyIsEnumerable in dynamic object
7.Dynamically Adding New Behavior to an Instance