TheSwamp

CAD Forums => CAD General => Topic started by: GDF on April 05, 2018, 08:23:32 AM

Title: Sreenmenu
Post by: GDF on April 05, 2018, 08:23:32 AM
Don't laugh...

;;Command: REDEFINE
;;Enter command name: screenmenu
;;(setvar "SCREENMENU" 1)

Does anyone have an example of adding a screen menu form another loaded partial submenu into the Acad menu?
Title: Re: Sreenmenu
Post by: mjfarrell on April 05, 2018, 09:50:43 AM
read this:

https://forums.autodesk.com/t5/autocad-forum/custom-screen-menu-2016/td-p/5855812 (https://forums.autodesk.com/t5/autocad-forum/custom-screen-menu-2016/td-p/5855812)
Title: Re: Sreenmenu
Post by: BIGAL on April 06, 2018, 08:21:33 PM
Its been a while but I like them, you can have sub screens using the option to call another screen [0-100] -> screen 0-100

Code: [Select]
**WALLW
[AutoCAD]^C^C^P$S=X $S=S
[--]
[SELECT]
[WALL]
[WIDTH]
[------]
[  50mm]50
[  60mm]60
[  70mm]70
[  80mm]80
[  90mm]90
[ 100mm]100
[ 110mm]110
[ 150mm]150
[ 200mm]200
[ 230mm]230
[ 250mm]250
[ 300mm]300
In your menu or lisp when asked for say getreal do this first.
Code: [Select]
(menucmd "s=wallw")
Title: Re: Sreenmenu
Post by: GDF on April 07, 2018, 02:28:06 PM
Thanks

I am looking for an example on how to create a screen menu. I always edit my legacy mnu files to be recompiled by the cui editor.

***SCREEN
**PMdesign
...and so on
Title: Re: Sreenmenu
Post by: BIGAL on April 09, 2018, 10:55:09 PM
Did I not post what you want ? Its from a working menu containing multiple screen menu's. You should be able to load a partial menu that you have created, I have one at home will try to post