Ever since I installed CS3 on my work machine, which was also recently upgraded to 10.4, I’m unable to get my file associations to bind to the previous versions of the software through Finder’s “get info”>>“open with”; I’d like to keep the previous version (or the one before that) as the default. I tried resetting the launch services database with a 3rd party tool - this did not remedy the situation.
I’ve observed that I can manually adjust a single file in the Finder, and this sticks, so I started comparing the file properties; the only discernable difference is in the Kind. I’ve been unable to change that property via AS, and was wondering if I’m going about it wrong, or if that is even something I should be targeting. Can AS be used to walk my files to manually edit their associations and/or is there another solution to pursue?
tell application "Finder"
set isSelected to the selection
set fileData to {}
repeat with counterVar in isSelected
set the end of fileData to counterVar's {kind, creator type, file type}
--set counterVar's kind to "Adobe® Indesign CS2" --receives error
set counterVar's properties to {kind:"Adobe® Indesign CS2"} --no error, but ineffectual
end repeat
fileData
end tell