I am trying to set up a .bundle folder to download a number of plugins that I developed for AutoCAD. One of these plugins is a .dvb file, so in PackageContents.xml I have the following XML code
<ComponentEntry AppName = "" Version = "2014.1" ModuleName = "./Contents/Windows/WindowsDoors.dvb" AppDescription = "" PerDocument ="True" LoadOnAutoCADStartup="True"> <Commands> <Command Local="CSC" Global="CAD_STANDARD_CREATOR" /> <Command Local="CSB" Global="CAD_STANDARD_BLOCK" /> <Command Local="CSP" Global="CAD_STANDARD_PATH" /> </Commands> </ComponentEntry>
When I start AutoCAD and try to run the corresponding plugin, the command line tells me
Command: -vbarun Macro name: RunMeWindowDoor Macro not found.
AutoCAD does not seem to find the macro, although I say the XML file loads it, and I cannot figure out what the cause of the error is.
source share