Move, Rotate and Scale on right click Menu
-
Hi, I am posting a question to plugin developers: would it be difficult to have the three main tools, MOVE - ROTATE - SCALE, as selectable commands in the right click menu?
Is there already a plugin that does so?
I would find it useful for my workflow (I know there are shortcuts and stuff, but sometimes I can't use my left hand and clicking on the buttons slows me down).
I hope to have some answers

-
This code adds Move/Scale/Rotate to the context-menu if something is selected.
The code is very simple and can be adjusted as desired...require('sketchup.rb') unless file_loaded?(__FILE__) UI.add_context_menu_handler{|menu| if Sketchup.active_model.selection[0] menu.add_item('Move...'){Sketchup.send_action("selectMoveTool;")} menu.add_item('Scale...'){Sketchup.send_action("selectScaleTool;")} menu.add_item('Rotate...'){Sketchup.send_action("selectRotateTool;")} end } end file_loaded(__FILE__)Put the rb file into your Plugins folder and restart Sketchup to see the additional commands in the context-menu...
-

Thank you so much

Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better π
Register LoginAdvertisement