Home › Forums › General XMetaL Discussion › Count Macro › Reply To: Count Macro
Reply to: Count Macro
February 9, 2009 at 6:00 pm[code]
//XMetaL Script Language JScript:
Selection.MoveToElement(“coc”);
[/code]
or if you want to go backwards:
[code]
//XMetaL Script Language JScript:
Selection.MoveToElement(“coc”, false);
[/code]
or if you want the entire contents of the
[code]
//XMetaL Script Language JScript:
Selection.MoveToElement(“coc”);
Selection.SelectContainerContents();
[/code]