Message 1 of 14
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi All,
I have problem with autoloader.
I created very simple packageContext.xml to load lisp at every document. The problem is that the lisp is loaded only at startup.
PackageContext.xml:
<?xml version="1.0" encoding="utf-8" ?>
<ApplicationPackage
SchemaVersion="1.0"
AutodeskProduct="AutoCAD"
ProductType="Application"
AppVersion="1.1"
Author="---------"
Name="LISP"
Description="LISP"
Icon="./logo.ico"
HelpFile="./Help.htm"
ProductCode="{7C1EEA79-B0DD-400D-9D10-8D9DA92FD4CA}"
>
<CompanyDetails
Name="---"
Url="---"
Email="---"
/>
<RuntimeRequirements Platform="AutoCAD*" />
<Components>
<RuntimeRequirements SupportPath="./Support/Lisp/" />
<ComponentEntry AppName="MainLISP"
ModuleName="./Support/Lisp/_load.lsp" PerDocument="True" LoadOnAutoCADStartup="True" LoadOnCommandInvocation="True" />
</Components>
</ApplicationPackage>
Solved! Go to Solution.