Hello,
This is a script which I downloaded (from this site, I believe) to change icons. But it may not be for OS/X 2.6 which is what I am running (although, being new to Applescript, I am not certain about that). I tried saving it as an Application and clicking on it in the appropriate window, and also tried drag-and-drop. It doesn’t seem to want to work for me. Please help.
Here it is:
on open
tell application “Finder”
set icon of selection to icon of (path to me)
end tell
end open
on run
tell application “Finder”
try
if kind of selection is “application program” then
if (name of (path to me)) = (name of item 1 of selection) then
error
else
set icon of selection to icon of (path to me)
end if
else
set icon of selection to icon of (path to me)
end if
on error
display dialog " Drag an item to me to place the icon of this script on it" & return & �
“Make copies of it with different icons!” & return & return & “Written by Kembas” & �
return & “kembas@iig.com.au” buttons {“OK”} default button 1
end try
end tell
end run
Thank you in advance for your advice.
Sincerely,
Variable as the shade