简体   繁体   中英

Dynamically set property of Object in AS3

How can I do this...

var Object."a" = 3;

Something like this?

setPropertyOfObjectWith(myObjekt:Object,probname:String,value);

This should work:

var obj:Object = new Object();
obj["something"] = 12;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM