Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/13/2018 in all areas

  1. Maybe the MAXACTVP variable has been changed? Sets the maximum number of viewports that can be active at one time in a layout. https://knowledge.autodesk.com/support/autocad/learn-explore/caas/CloudHelp/cloudhelp/2016/ENU/AutoCAD-Core/files/GUID-86846A4D-4E21-4E62-A710-E7B55243452D-htm.html
    2 points
  2. Hahaha .. this would be my believable version (command "circle" "0,0,0" "1") (command "polygon" "3" "0,0,0" "I" "1") (command "polygon" "4" "0,0,0" "c" "1")
    1 point
  3. Oh.. well I started with the three command-calls, and then the self-criticism kicked in
    1 point
  4. Nothing wrong with those specs at all.
    1 point
  5. (Original code source) Depending on where you want the label to appear, change: (setq str (car line)) to: (setq str (strcat (car line) ",Setout")) This will result in: number,Setout,x,y,z If you want it at the start, change it to: (setq str (strcat "Setout," (car line))) to yield: Setout,number,x,y,z If you want it at the end, change: (write-line str file) to: (write-line (strcat str ",Setout") file) which will yield: number,x,y,z,Setout
    1 point
×
×
  • Create New...