How to add View Mates to a guesture?

Tera
Posts: 202
Joined: Fri Mar 19, 2021 4:58 am
Answers: 2
x 459
x 88

How to add View Mates to a guesture?

Unread post by Tera »

I'm trying to add View Mates Button to mouse gesture or one of my tabs, but I can't find the button to add it.
Or maybe button name is different with its tooltips.....
-
3.jpg
3.jpg (9.11 KiB) Viewed 457 times
-
Where can I find this button?

thank you.
User avatar
DanPihlaja
Posts: 767
Joined: Thu Mar 11, 2021 9:33 am
Answers: 24
Location: Traverse City, MI
x 760
x 911

Re: How to add View Mates to a guesture?

Unread post by DanPihlaja »

Tera wrote: Thu Feb 03, 2022 9:27 pm I'm trying to add View Mates Button to mouse gesture or one of my tabs, but I can't find the button to add it.
Or maybe button name is different with its tooltips.....
-
3.jpg
-
Where can I find this button?

thank you.
I can't find it ether. Which probably means that this particular icon cannot be mapped to a keyboard shortcut or a mouse gesture.

Probably because it is a contextual type function. Meaning that you have to select something before that particular function becomes active.
-Dan Pihlaja
Solidworks 2022 SP4

2 Corinthians 13:14
User avatar
SPerman
Posts: 1900
Joined: Wed Mar 17, 2021 4:24 pm
Answers: 13
x 2074
x 1738
Contact:

Re: How to add View Mates to a guesture?

Unread post by SPerman »

Could you write a macro to display the View Mates window?
-
I may not have gone where I intended to go, but I think I have ended up where I needed to be. -Douglas Adams
User avatar
RonE
Posts: 27
Joined: Wed Nov 17, 2021 10:02 am
Answers: 3
Location: Germany
x 16
x 29

Re: How to add View Mates to a guesture?

Unread post by RonE »

UU

Code: Select all

Sub main()
    Dim swApp As SldWorks.SldWorks
    Set swApp = Application.SldWorks
    swApp.runcommand 683, ""
End Sub
Post Reply