/* * [KC] Move To 0,0 * By Kevin Cao(http://kevincao.com) * 2005.7.3 */ var dom = fl.getDocumentDOM(); var sel = dom.selection; if(dom.library.itemExists("KC_temp_mc")) { dom.library.deleteItem("KC_temp_mc"); } for( i=0; i 0) { dom.convertToSymbol("movie clip", "KC_temp_mc", "top left"); //dom.setTransformationPoint({x:0, y:0}); var mItem = dom.selection[0]; var mat = mItem.matrix; mat.tx = 0; mat.ty = 0; mItem.matrix = mat; dom.breakApart(); dom.library.deleteItem("KC_temp_mc"); } } dom.selection = sel;