hi i am a beginner
i want to rename 5 sphere
i try to write a simple code,like this:
Set oRoot=ActiveSceneRoot
Set oSel=Application.Selection
For Each oItem in oSel
oItem.Name="aaa"
Next
' Output of above script:
'INFO : "aaa"
'INFO : "aaa1"
'INFO : "aaa2"
'INFO : "aaa3"
'INFO : "aaa4"
but i want their name is: aaa01,aaa02,aaa03,aaa04,aaa05
how to do that?thx:)