Autodesk ObjectARX
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
How to define a help call to a URL (website)?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hi,
I'd like to define a help call for all my commands to my online documentation.In other words, I don't use CHM files, and I'd like to know how use API function acedSetFunHelp with a link to a website and not a CHM?
I also raises the question whether one function will also define the behavior of F1 button in the ribbon?
Regards,
Jonathan
Solved! Go to Solution.
Re: How to define a help call to a URL (website)?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
If I remember correctly, calling a Webpage directly is something like this:
acedSetFunHelp(_T("MyCOMMAND"),_T(http://mywebsite.com/MyCommandHelp.htm),_T(""), 0) or
Calling a Webpage directly, with an HTML anchor
acedSetFunHelp(_T("MyCOMMAND"),_T(http://mywebsite.com/MyProductPage.htm),_T("#MyCommandTopic"), 0) or
Fenton Webb
Developer Technical Services
Autodesk Developer Network
Re: How to define a help call to a URL (website)?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Thank you for your interesting answer. I tested with a URL like this : http://www.mywebsite.com/mycommand/mysection and it didn't work. It seems that if the URL ends with .htm, it works. Do you have more details about that?
Another question: Do you know how to tell AutoCAD to use the default browser and not IE?
Regards,
Jonathan
Re: How to define a help call to a URL (website)?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
I believe that's a Windows registry entry, not an AutoCAD one...Basically setting the default browser... Google will help with this one for you.
Fenton Webb
Developer Technical Services
Autodesk Developer Network
