Re: Using Applescript Droplet as Default Application? (10.4.11)
Re: Using Applescript Droplet as Default Application? (10.4.11)
- Subject: Re: Using Applescript Droplet as Default Application? (10.4.11)
- From: julifos <email@hidden>
- Date: Sat, 17 Jan 2009 09:51:25 +0100
- Thread-topic: Using Applescript Droplet as Default Application? (10.4.11)
> How's this for irony? Your recipe works perfectly for everything except
> InDesign, lol!
>
> I can now change my app to the be the default launcher for .txt, .dmg, .doc
> files etc. Just not .indd! Does that mean there is something weird with the
> way that Adobe set up the InDesign app, maybe?
Curious behaviour...
Anyway, you could still "force" it. Just open ID's "plist" file and copy all
needed CFBundleTypeExtensions and CFBundleTypeOSTypes into your own "plist"
file (into CFBundleDocumentTypes). Such as:
<array>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
<string>*</string>
<string>AAAA</string>
<string>BBBB</string>
</array>
<key>CFBundleTypeOSTypes</key>
<array>
<string>****</string>
<string>XXXX</string>
<string>YYYY</string>
<string>ZZZZ</string>
</array>
<key>CFBundleTypeRole</key>
<string>Editor</string>
</dict>
</array>
This way "should" work (but it should work without this workaround, as well,
so maybe it won't work after all ;-)
jj
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden