Turn sheet set off and on via lisp

Turn sheet set off and on via lisp

jwright1962
Advocate Advocate
358 Views
8 Replies
Message 1 of 9

Turn sheet set off and on via lisp

jwright1962
Advocate
Advocate

Hello Forum:

is there a lisp or even the command that i can add to a toolbar button that toggles the sheet set palette on or off.   

 

thanks for replies in advance.

0 Likes
Accepted solutions (1)
359 Views
8 Replies
Replies (8)
Message 2 of 9

paullimapa
Mentor
Mentor
Accepted solution

@jwright1962 

You can use lisp to check the following:

ssmstate

(getvar “ssmstate”)

if 0 then run command “sheetset” to open the ssm palette

(command “sheetset”)

if 1 then run command “sheetsethide” to close the ssm palette 

(command “sheetsethide”)

FYI:

When opening drawing set SSMAUTOOPEN to:

0 to not open ssm palette 

1 to open ssm palette 

https://help.autodesk.com/view/ACD/2025/ENU/?guid=GUID-81EC988C-AAEA-4CC8-ADC5-D636CE82F677


Paul Li
IT Specialist
@The Office
Apps & Publications | Video Demos
0 Likes
Message 3 of 9

Moshe-A
Mentor
Mentor

@jwright1962 ,

 

CTRL+4  ; turn on / off sheetset manager.

it is defined in CUI command under ACAD\Keyboard Shortcuts.

 

 

0 Likes
Message 4 of 9

jwright1962
Advocate
Advocate

winner winner chicken dinner!   (command "sheetsethide")...   who would have thought...

 

0 Likes
Message 5 of 9

jwright1962
Advocate
Advocate

i have a very simple lisp that turns off all the palettes and then turns them back on via a toolbar button click.  was having trouble the sheetset.   thanks so much for your help

0 Likes
Message 6 of 9

paullimapa
Mentor
Mentor

Cheers!!!


Paul Li
IT Specialist
@The Office
Apps & Publications | Video Demos
0 Likes
Message 7 of 9

BlackBox_
Advisor
Advisor

This is already part of the AutoCAD Ribbon UI... 'View' tab, 'Palettes' panel, 'Sheet Set Manager' button.

"How we think determines what we do, and what we do determines what we get."

Sincpac C3D ~ Autodesk Exchange Apps

0 Likes
Message 8 of 9

jwright1962
Advocate
Advocate

i guess i didn't realize that.   my goal was to gather all the palettes up and turn them on and off as group.   i have that now, and thanks again to the forum.  

 

Just as a side note, my screen space is somewhat limited.   i prefer to have the palettes on, generally speaking.  clicking them all on or all off one at a time as many times as i do it, just seemed a bit tedious.  much better now.

0 Likes
Message 9 of 9

BlackBox_
Advisor
Advisor

@jwright1962 wrote:

i guess i didn't realize that.   my goal was to gather all the palettes up and turn them on and off as group.   i have that now, and thanks again to the forum.  

 

Just as a side note, my screen space is somewhat limited.   i prefer to have the palettes on, generally speaking.  clicking them all on or all off one at a time as many times as i do it, just seemed a bit tedious.  much better now.


Glad you got what you were after.

 

For that, I just use Cleanscreen (Ctrl + 0). 

 

Cheers

"How we think determines what we do, and what we do determines what we get."

Sincpac C3D ~ Autodesk Exchange Apps

0 Likes