| Recent Answers from Scott Cook |
 |
2008-08-21 CUI Customization: If your old .mns file still reflects the current state of your menu, you can use notepad to add the menu item and re-import it. If your .mns is out of date, use the CUI command to customize the pull-down...
|
2008-08-05 Assigning ID to Polylines in AutoCAD: Not possible with built-in autocad, this would require a lisp routine to do, and if the text in line is a separate entity it would not be possible to automate it 100% because I assume you want to associate...
|
2008-08-04 Assigning ID to Polylines in AutoCAD: Entity handles are unique identifiers generated by autocad that don't change between sessions, etc. they are a hexadecimal number and can be used for what you want. you'll probably need to write some sort...
|
2008-07-08 Linetypes with lisp: There is a function called tblsearch you can use to determine if the linetype you are about to load is already loaded. So your code would be something like: (if (not (tblsearch "linetype" "mylinetype"))...
|
2008-06-11 Specific Line types: If you only want one arrow, it might not be possible with a linetype. If I recall correctly, linetypes repeat (meaning you could end up with more than one arrow). I think you might be able to specify a...
|
| More Answers for "AutoCAD" |