Interaction questions

 From:  Michael Gibson
9136.9 In reply to 9136.8 
Hi Sven, that should be possible in the next v4 beta which has a new property for the current command name exposed to script. So that will enable some script on a shortcut key to have that kind of logic on it. The following script on a shortcut key will work for alternating through array commands in the next v4 beta:

script: /* cycle through array commands */ var next = 'arraygrid'; switch( moi.command.currentCommandName ) { case 'arraygrid' : next = 'arraydir'; break; case 'arraydir': next = 'arraycircular'; break; case 'arraycircular' : next = 'arraycurve'; break; } moi.command.execCommand( next );

One of the main original goals for MoI was to make it possible to use without needing to touch the keyboard at all, so very fancy keyboard shortcuts hasn't really been a big focus area.

- Michael