AS3 with(){} - any way to refer to the object in ()?
Can I refer the thing I just mentioned in with() with a reserved variable or something? Or do I have to write the entire thing out?
with(something){
someFunction(something)
}
In this example it's simple, but sometimes it's really long and I would like to avoid 开发者_运维知识库it if possible.
If it was javascript, then you could use valueOf(). I don't know if AS3 supports that.
Yes you can, see this actionscript reference page on help.adobe.com:
精彩评论