![]() |
Lock Selected Object? - Printable Version +- Wings 3D Development Forum (https://www.wings3d.com/forum) +-- Forum: Wings 3D (https://www.wings3d.com/forum/forumdisplay.php?fid=1) +--- Forum: Interface & Usage (https://www.wings3d.com/forum/forumdisplay.php?fid=3) +--- Thread: Lock Selected Object? (/showthread.php?tid=659) |
Lock Selected Object? - MikeJ - 04-09-2014 I know there is a command to lock unselected objects but cannot find the command to lock a selected object. I know you can do it in the GG, but I was hoping to be able to hotkey a command. All I want to do is be able to temporarily lock an object via hotkey while working in a scene. Can someone point out the way? RE: Lock Selected Object? - micheus - 04-09-2014 You have the option to invert the selection [CRTL]+[SHIFT]+[I] and then use the Lock Unselected Objects. RE: Lock Selected Object? - MikeJ - 04-09-2014 Thanks. That's an interesting workaround. But I'm wondering if this is an opportunity for one of your patches/addons? UPDATE: I have created my own hot keyed macro to solve the problem (AutoHotkey to the rescue again): Send ^i ; Invert Selection Sleep 50 Send +k ; Lock Unselected Send {space} ; Deselect all |