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.....
-
-
Where can I find this button?
thank you.
How to add View Mates to a guesture?
- DanPihlaja
- Posts: 849
- Joined: Thu Mar 11, 2021 9:33 am
- Location: Traverse City, MI
- x 812
- x 979
Re: How to add View Mates to a guesture?
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
Solidworks 2022 SP4
2 Corinthians 13:14
Re: How to add View Mates to a guesture?
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
I may not have gone where I intended to go, but I think I have ended up where I needed to be. -Douglas Adams
Re: How to add View Mates to a guesture?
Code: Select all
Sub main()
Dim swApp As SldWorks.SldWorks
Set swApp = Application.SldWorks
swApp.runcommand 683, ""
End Sub