Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Re: Assigning help: to an AppleScript applet' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Re: Assigning help: to an AppleScript applet
Authored by: Lankhmart on May 19, '04 08:30:03PM

Actually, the Application Bundle version is proving troublesome for me, but the standard application type with edited plst resource works fine in my experience.



[ Reply to This | # ]
Re: Assigning help: to an AppleScript applet
Authored by: Lankhmart on May 19, '04 09:52:45PM
It turns out I just had to restart the Finder to get it to acknowledge the creator code change in the bundle app's Info.plist file. For the sake of completeness, you might also add a few more lines to the plist to let the system know that your AppleScript can in fact handle the "help:" URL scheme.

	<key>CFBundleURLTypes</key>
	<array>
		<dict>
			<key>CFBundleURLSchemes</key>
			<array>
				<string>help</string>
			</array>
		</dict>
	</array>
Just place that before the closing
</dict></plist>


[ Reply to This | # ]