Is there a way to tell if a MovieClip exists in HAXE?
Example AS3 (works):
var thumbContainer:MovieClip = new MovieClip();
thumbContainer.name = “thumbContainer”;
addChild (thumbContainer);
if (getChildByName(“thumbContainer”) != null) {
trace(“exists”)
}
Thanks!