// Fireworks JavaScript Command // Install by copying to Fireworks/Configuration/Commands/ // Aaron Beall - http://abeall.com var dom = fw.getDocumentDOM(); // document object var sel = new Array().concat(fw.selection); // saved selection function SelectAllPoints() { if (!sel) return false; for(var s in sel){ for(var c in sel[s].contours){ var con = sel[s].contours[c]; for(var n in con.nodes){ con.nodes[n].isSelectedPoint = true; } } } if(fw.activeTool!='Subselection') fw.activeTool='Subselection'; return true; } SelectAllPoints();