Help me for my Help menu

Hello,

I have created a Help menu in my application ASS. I have connected the showHelp: action at First Responder and it’s OK (CFBundleHelpBookName in the InfoPlist.strings file).
I want to add a "What’s new in my app?"entry in my Help menu. Please, can you tell me how make that? How to set a specific file and open it in the HelpViewer application?
Thanks!

Here, the solution:


	set the pathNames to (main bundle path for directory "AppHelp/pgs" resource "ox12" extension "html")
	do shell script "open -a /System/Library/CoreServices/'Help Viewer.app' " & pathNames

You should use “qouted form of pathNames” in the shell script in case the path has a space or some other character that needs to be escaped in it.

Jon