Re: Droplet to Rename Breaks Under Jaguar
Re: Droplet to Rename Breaks Under Jaguar
- Subject: Re: Droplet to Rename Breaks Under Jaguar
- From: John Delacour <email@hidden>
- Date: Wed, 11 Sep 2002 18:58:30 +0100
At 9:42 am -0700 11/9/02, Marconi wrote:
What has changed in Jaguar to cause this?
on open added_items
set the number_of_added_items to the number of the added_items
repeat with q from 1 to the number_of_added_items
set this_added_item to item q of the added_items
-- extract the item name from the file path .....
Try this MINI script. I haven't tested it in a commercial
environment but it seems to work fine here with Jaguar.
on open fList
repeat with f in fList
tell app "Finder"
set s to f's name & "-2"
set f's name to s
set f's creator type to "GKON"
set f's file type to "JPEG"
end
end
set fList to {}
end
-- JD
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.