Rename with incremental number and letter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Good Day,
So I have a renaming macro which will numerically number each selected toolpath,
but instead of numbering numerically I'd like to be able to number selected toolpaths thus,
1a,1b,1c and so on.
FOREACH $tp IN explorer_selected_entities() {
If $tp.Strategy == 'drill' AND $tp.drill.type == 'single_peck' {
RENAME TOOLPATH $tp.Name ${ i + tp.Strategy + tp.drill.type + tp.Tool.name + "-T" + tp.tool.number }
$i = $i + 1
Just a wee snippet of the numbering code, what would I have to change to output the incremental number and incremental letter?
Regards