Using DisplayObject in Flex:
var point:Point = new
Point(event.localX,event.localY);
point = event.target.localToGlobal(point);
var objects:Array = this.getObjectsUnderPoint(point);This objects Array containing only string objects not the objects of type DisplayObject for( var obj: DisplayObject in objects) : // It is giving me the error because objects is containing only string. According to documentation, this array contains objects of type DisplayObjects. Thanks.
