[Nuke-users] identifying unused hotKeys ?

2013-08-22 Thread Ari Rubenstein
Is there a way to identify which hotKeys are Not in use in Nuke ? thx, -- Ari Rubenstein Lead Compositor www.blueskystudios.com ___ Nuke-users mailing list Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/

Re: [Nuke-users] identifying unused hotKeys ?

2013-08-22 Thread Diogo Girondi
I have done a hack here to check if a certain hotkey collides with a existent one. But I don't have this code at hand now.  Cheers, Diogo On Thu, Aug 22, 2013 at 1:13 PM, Ari Rubenstein a...@blueskystudios.com wrote: Is there a way to identify which hotKeys are Not in

Re: [Nuke-users] identifying unused hotKeys ?

2013-08-22 Thread Elias Ericsson Rydberg
I guess it would be possible to list all commands hotkeys in some way through python? As far as I know nuke usually uses lower case characters as hotkeys, therefore I usually assign upper case ones to my gizmos and scripts. Before assigning I simply test if the hotkey does anything. But If

Re: [Nuke-users] identifying unused hotKeys ?

2013-08-22 Thread Diogo Girondi
Found the bit of code I wrote years ago to do this. Far from the ideal and certainly fugly, but it used to work. Not sure it still works though :) def shortcutUsage( new_shortcut ): shotcutUsage( new_shortcut ) Checks if a given shortcut is already in use by Nuke. :param