flash on 2012-12-28
♥0 |
Line 25 |
Modified 2012-12-28 19:40:10 |
MIT License
archived:2017-03-20 03:49:33
ActionScript3 source code
/**
* Copyright TmskSt ( http://wonderfl.net/user/TmskSt )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/whDm
*/
package {
import flash.display.Sprite;
import com.actionscriptbible.Example;
public class FlashTest extends Example {
public function FlashTest() {
// write as3 code here..
const A:String = "Z";
const N:Number = 100;
const OBJ:Object = {
A : N
}
const B:String = "K";
OBJ[B] = null;
const ARG:Array = [A];
trace(ARG);
trace("***");
trace(A in OBJ);
trace("A" in OBJ);
trace("Z" in OBJ);
trace("***");
trace(B in OBJ);
trace("B" in OBJ);
trace("K" in OBJ);
}
}
}