<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: HelpFile in PackageContents.xml in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/helpfile-in-packagecontents-xml/m-p/3815804#M50493</link>
    <description>&lt;P&gt;&lt;SPAN style="font-size: 11px; line-height: 14px;"&gt;While it doesn't hurt anything, there's no need to specify LoadOnAutoCADStartup="False", as this snippet explains from a well written &lt;STRONG&gt;&lt;A target="_self" href="http://adndevblog.typepad.com/autocad/2013/01/autodesk-autoloader-white-paper.html"&gt;Autoloader White Paper&lt;/A&gt;&lt;/STRONG&gt;:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;[quote]&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;LoadOnCommandInvocation&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;– Load only when one of your custom commands is invoked. When using this Load Reason, you must include a ‘Commands’ element.&amp;nbsp;&amp;nbsp;&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;Also, if&amp;nbsp;&lt;EM&gt;LoadOnCommandInvocation&lt;/EM&gt;&amp;nbsp;is enabled, then LoadReasons&amp;nbsp;&lt;EM&gt;LoadOnAutoCADStartup&lt;/EM&gt;&amp;nbsp;&amp;nbsp;and&amp;nbsp;&lt;EM&gt;LoadOnAppearance&lt;/EM&gt;&amp;nbsp;are assumed to be disabled&lt;/STRONG&gt;&lt;/FONT&gt; unless explicitly enabled. Only applies to ARX and .NET modules.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;[/quote]&lt;/P&gt;</description>
    <pubDate>Wed, 27 Mar 2013 02:30:47 GMT</pubDate>
    <dc:creator>BlackBox_</dc:creator>
    <dc:date>2013-03-27T02:30:47Z</dc:date>
    <item>
      <title>HelpFile in PackageContents.xml</title>
      <link>https://forums.autodesk.com/t5/net-forum/helpfile-in-packagecontents-xml/m-p/3809735#M50491</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have created a bundle for my application. The .cuix file is loaded so i see my application in the ribbon, but the application is not loaded until invokation:&lt;/P&gt;&lt;P&gt;LoadOnAutoCADStartup="false"&lt;BR /&gt;LoadOnCommandInvocation="True"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem I have is with the help file. I have added this to the PackageContents.xml:&amp;nbsp;&lt;SPAN style="font-size: 11px; line-height: 14px;"&gt;HelpFile="./Contents/Readme.pdf"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11px; line-height: 14px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11px; line-height: 14px;"&gt;When hoovering the mouse over my buttons in the ribbon (before I have pushed any of them) and pressing F1 AutoCAD opens either the AutoCAD help or the adobe website&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11px; line-height: 14px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;When hoovering the mouse over my buttons in the ribbon (after I have pushed any of them) and pressing F1 AutoCAD opens either the AutoCAD help or my help file.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Either way it seems to be inconsistent. Since it opens my help file some of the times I know it finds my file, but why does it not work every time?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Mar 2013 09:38:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/helpfile-in-packagecontents-xml/m-p/3809735#M50491</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-03-20T09:38:35Z</dc:date>
    </item>
    <item>
      <title>Re: HelpFile in PackageContents.xml</title>
      <link>https://forums.autodesk.com/t5/net-forum/helpfile-in-packagecontents-xml/m-p/3814013#M50492</link>
      <description>&lt;P&gt;I'd start by pointing out that PDF files aren't really what AutoCAD is expecting to use for a help file. HTML files are best. If you use HTML files then you can set command specific help tags by using HTML anchors in your HTML help and then referencing them in your &amp;lt;Command&amp;gt; element... e,g,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Commands GroupName="MY_GROUPTEST"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Command Local="TEST" LocalDeu="DasTest"&amp;nbsp;LocalEsp"DeTesty"&amp;nbsp;Global="TEST" Description="Launches test palette" HelpTopic="#Helptopic" /&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Commands&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Once you do this, when you press F1 for a command you will be taken directly to the command help specifically.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Mar 2013 16:45:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/helpfile-in-packagecontents-xml/m-p/3814013#M50492</guid>
      <dc:creator>fenton_webb</dc:creator>
      <dc:date>2013-03-25T16:45:49Z</dc:date>
    </item>
    <item>
      <title>Re: HelpFile in PackageContents.xml</title>
      <link>https://forums.autodesk.com/t5/net-forum/helpfile-in-packagecontents-xml/m-p/3815804#M50493</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 11px; line-height: 14px;"&gt;While it doesn't hurt anything, there's no need to specify LoadOnAutoCADStartup="False", as this snippet explains from a well written &lt;STRONG&gt;&lt;A target="_self" href="http://adndevblog.typepad.com/autocad/2013/01/autodesk-autoloader-white-paper.html"&gt;Autoloader White Paper&lt;/A&gt;&lt;/STRONG&gt;:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;[quote]&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;LoadOnCommandInvocation&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;– Load only when one of your custom commands is invoked. When using this Load Reason, you must include a ‘Commands’ element.&amp;nbsp;&amp;nbsp;&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;Also, if&amp;nbsp;&lt;EM&gt;LoadOnCommandInvocation&lt;/EM&gt;&amp;nbsp;is enabled, then LoadReasons&amp;nbsp;&lt;EM&gt;LoadOnAutoCADStartup&lt;/EM&gt;&amp;nbsp;&amp;nbsp;and&amp;nbsp;&lt;EM&gt;LoadOnAppearance&lt;/EM&gt;&amp;nbsp;are assumed to be disabled&lt;/STRONG&gt;&lt;/FONT&gt; unless explicitly enabled. Only applies to ARX and .NET modules.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;[/quote]&lt;/P&gt;</description>
      <pubDate>Wed, 27 Mar 2013 02:30:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/helpfile-in-packagecontents-xml/m-p/3815804#M50493</guid>
      <dc:creator>BlackBox_</dc:creator>
      <dc:date>2013-03-27T02:30:47Z</dc:date>
    </item>
  </channel>
</rss>

