Markus Barrera-Kolb Posted October 22, 2018 Share Posted October 22, 2018 I've been using a simple script for years now to de-select all objects, which is particularly useful when I'm zoomed in or working in 3D with no empty space to click on in order to de-select objects (works nicely with a <shift><cmd><A> keyboard shortcut). However, this script no longer works for me in 2019. I've tried re-compiling it, double-checked that the DselectAll VS function still exists, and re-assigned it in my workspace, but it still doesn't work. Any pointers? Thanks... Cheers, Markus PROCEDURE DeselectAll; BEGIN DSelectAll; END; RUN (DeselectAll); Deselect All.vsm Quote Link to comment
Julian Carr Posted October 22, 2018 Share Posted October 22, 2018 Hi Markus, I don't know about your command but I do use DeselectAll in a lot of scripts and it continues to work there. Do you know you can also deselect all by holding the Spacebar down then double tapping the X key? The Spacebar preserves the current tool selection. If you don't need this, then just double tapping X will suffice. Julian Quote Link to comment
Markus Barrera-Kolb Posted October 22, 2018 Author Share Posted October 22, 2018 Thanks, Julian – don't quite know how I've used VW for over 10 years without knowing that! Now I can forget all about that silly script... Cheers, Markus Quote Link to comment
JBenghiat Posted October 22, 2018 Share Posted October 22, 2018 The script is working fine for me as well. As a side note, when a script doesn’t need variables or constants, you don’t need to wrap the script in Procesure/Run. This script can be a single line: DSelectAll; To add to Julian’s trick, double-clicking the selection tool deselected all, and any tool that has a double-click function will similarly respond to a double-tap of the keyboard shortcut. For example, double tap the shortcut for pan to refresh the screen, zoom to zoom in by a factor of two, rectangle to parametrically create a rectangle, etc. Quote Link to comment
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.