Author Topic: Cursor menu - custom  (Read 9163 times)

0 Members and 1 Guest are viewing this topic.

like_citrus

  • Newt
  • Posts: 114
Re: Cursor menu - custom
« Reply #15 on: June 22, 2020, 09:27:05 PM »
OK cheers.

BIGAL

  • Swamp Rat
  • Posts: 1396
  • 40 + years of using Autocad
Re: Cursor menu - custom
« Reply #16 on: June 23, 2020, 10:22:32 PM »
What I am talking about is Screen menus. These were very helpful a bit like a dcl but much easier to code they would appear on the right side. You could pick an answer for your lisp code etc. Its not code but rather its part of the menu.

Code: [Select]
Begin AutoCAD Screen Menus

***SCREEN
**S
[AutoCAD]^C^C^P(ai_rootmenus) ^P


**WALLW 3
[AutoCAD]^C^C^P$S=X $S=S
[--]
[SELECT]
[WALL]
[WIDTH]
[------]
[  50mm]50
[  60mm]60
[  70mm]70
[  80mm]80
[  90mm]90

**SET_SC 2
[SCALES: ]
[  1:1   ]1
[  1:2   ]2
[  1:5   ]5
[  1:10  ]10
[  1:20  ]20

**brickwid 3
[AutoCAD]^C^C^P$S=X $S=S
[select]
[no of]
[bricks]

[ 0.5]110
[ 1.0]230
[ 1.5]360
[ 2.0]470
[ 2.5]590

https://forums.autodesk.com/t5/autocad-forum/screen-menu/td-p/5376189

For me now I use a library dcl its only a couple of lines of code required depending on a list choice or a Button dcl

A man who never made a mistake never made anything

like_citrus

  • Newt
  • Posts: 114
Re: Cursor menu - custom
« Reply #17 on: June 24, 2020, 02:55:40 AM »
Thanks this was interesting to know.