Search found 1 match

by OttoM
Sun Sep 24, 2023 10:54 am
Forum: Mac OS
Topic: Automatically rename objects.
Replies: 17
Views: 72061

Re: Automatically rename objects.

Hi,
to automatically rename all images of a group, simply code this:

repeat with i = 1 to the number of images of group "mygroup"
put short name of image i of group "mygroup" into tempvariable
replace "myoldname" with "mynewname" in tempvariable
set name of image i of group "mygroup" to ...