Re: [macwiz] quick way to rename pics?
Re: [macwiz] quick way to rename pics?
- Subject: Re: [macwiz] quick way to rename pics?
- From: "Arthur J Knapp" <email@hidden>
- Date: Mon, 15 Jan 2001 10:56:02 -0500
>
Date: Fri, 12 Jan 2001 12:22:30 -0900
>
Subject: Re: [macwiz] quick way to rename pics?
>
From: Yosemite <email@hidden>
>
set i to 1
>
repeat 545 times
>
set student to Value of Cell ("$A$" & i as string)
>
set sNum to Value of Cell ("$B$" & i as string)
>
("machd0:desktop folder:temp:" & i & ".jpg") to ,
>
set i to i + 1
>
end repeat
Why not:
repeat with i from 1 to 545
-- whatever
end repeat
--
{
Arthur J Knapp, of STELLARViSIONs ;
http://www.STELLARViSIONs.com ;
mailto:email@hidden ;
http://developer.apple.com/techpubs/
macos8/InterproCom/AppleScriptScripters/
AppleScriptLangGuide/
}