Keyboard shortcut to Open edit size flyout

Next
 From:  shayno
9313.1 
I import and resize a lot of objects and I wish to select a solid then use a keyboard shortcut to open the edit size flyout with either the X or the Y highlighted
perhaps a second keypess to toggle between the x and the Y
is this possible ?
Many thanks
shayne
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  Michael Gibson
9313.2 In reply to 9313.1 
Hi shayne, if you set this up on a keyboard shortcut it should launch the edit size flyout:

script: /* Show edit size menu */ var pp = moi.ui.propertiesPanel; if (pp.show && pp.numSelectedObjects > 0) { moi.ui.findElement( 'PropSizeContainer' ).onmousedown(); }

When the flyout is open you can just start typing numbers and keyboard focus will automatically go to the first field. You can also press Tab to put focus on the first field and also use Tab to move focus to the next field.

Hope that does what you want!

- Michael
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  shayno
9313.3 
Thanks Michael

I am using ver 3 and get this error




thanks
shayne
Attachments:

  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  Michael Gibson
9313.4 In reply to 9313.3 
Hi shayne, sorry yeah that one needs v4. Here is a version that should work with either V3 or V4 :

script: /* Show edit size menu */ var pp = moi.ui.propertiesPanel; if (pp.show && pp.numSelectedObjects > 0) { moi.ui.sidePane.PropSizeContainer.onmousedown(); }

- Michael
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
 From:  shayno
9313.5 
Thanks Michael

perfect
cheers
shayne
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged
 

Reply to All Reply to All