Author Topic: Sreenmenu  (Read 2814 times)

0 Members and 1 Guest are viewing this topic.

GDF

  • Water Moccasin
  • Posts: 2081
Sreenmenu
« 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?
Why is there never enough time to do it right, but always enough time to do it over?
BricsCAD 2020x64 Windows 10x64

mjfarrell

  • Seagull
  • Posts: 14444
  • Every Student their own Lesson
Be your Best


Michael Farrell
http://primeservicesglobal.com/

BIGAL

  • Swamp Rat
  • Posts: 1398
  • 40 + years of using Autocad
Re: Sreenmenu
« Reply #2 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")
« Last Edit: April 06, 2018, 08:50:50 PM by BIGAL »
A man who never made a mistake never made anything

GDF

  • Water Moccasin
  • Posts: 2081
Re: Sreenmenu
« Reply #3 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
Why is there never enough time to do it right, but always enough time to do it over?
BricsCAD 2020x64 Windows 10x64

BIGAL

  • Swamp Rat
  • Posts: 1398
  • 40 + years of using Autocad
Re: Sreenmenu
« Reply #4 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
« Last Edit: April 09, 2018, 11:01:26 PM by BIGAL »
A man who never made a mistake never made anything