本地坐标:(0,0)大小(100,100) <?xml:namespace prefix = v ns = "urn:schemas-microsoft-com:vml" /><?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
舞台坐标:(200,200)大小(100,100)
舞台坐标测试:
clipBounds = mc1.getBounds(_root);
trace(clipBounds.xMin);//200
trace(clipBounds.yMin);//200
trace(clipBounds.xMax);//300
trace(clipBounds.yMax);//300
本地坐标测试:clipBounds = mc1.getBounds(mc1);
trace(clipBounds.xMin);//0
trace(clipBounds.yMin);//0
trace(clipBounds.xMax);//100
trace(clipBounds.yMax);//100
时间: 2024-12-21 14:28:24