[Request/Idea] On-Screen Keyboard Input
-
Thanks for all the links guys, much appreciated...
But Showoff isn't exactly what i need. Maybe this can explain better than my earlier ramblings...
-
Rich, that's an interesting idea. I can see some good uses for that.
-
Paste this into the Ruby Console
puts Sketchup.get_shortcuts.sort
to make a sorted list.
To write the sorted list to a file you can change it tofile=Sketchup.find_support_file('')+"/ShortCuts.txt";f=File.new(file,"w");f.puts(Sketchup.get_shortcuts.sort);f.close
this makes a file called 'ShortCuts.txt' in the current 'Sketchup' program folder.
-
Thanks TIG
Is the OnScreen Rolling Reel possible?
-
Yes...
You'd make a piece of screen-text [say 6 lines long] in one corner, that has an observer and when you change your current tool it recalculates the text - avoiding duplicating the current one if you are doing lots of moves for example.
Adds a new top one and removes the last one in the list - it looks up the shortcut key for each tool listed [if any] and adds that to the tool's name as you suggest and adds it IF it has a shortcut...
However, I can't see a big take up for this tool... so I won't be coding it any time soon... -
Thanks for explaining that it's possible. It's more than enough what you provided earlier for sending the shortcuts to .txt. Maybe someday I'll dive into ruby but as you mention not 'any time soon'.
-
Great idea for this. I think is would be useful if you could save them into a macro (action) command and rerun multiple commands in a single click to help speed up repetitive functions.
-
Awash with memories.....
-
The impossible I can usually do straight away... BUT miracles take a little longer - there's a looooong queue for those
-
@tig said:
Yes...
You'd make a piece of screen-text [say 6 lines long] in one corner, that has an observer and when you change your current tool it recalculates the text - avoiding duplicating the current one if you are doing lots of moves for example.
Adds a new top one and removes the last one in the list - it looks up the shortcut key for each tool listed [if any] and adds that to the tool's name as you suggest and adds it IF it has a shortcut...
However, I can't see a big take up for this tool... so I won't be coding it any time soon...I think I have read about a plugin like this recently but I am not able to find it anymore (perhaps wrong search words...). Does anyone know this plugin? It will be helpful for video tutorials...
Thanks,
Cotty -
Onscreen rolling Reel
Search the index for plugin by Rich O'Brien
-
@unknownuser said:
Onscreen rolling Reel
Search the index for plugin by Rich O'Brien
Thank you very much, I found it here. I searched osd, onscreen, ... but not "on screen" before
-
.../Plugins/shortcuts.rb - makes and pops up a web page showing your keyboard shortcuts
Appendix AR (All Ruby) in Edges to Rubies - the Complete SketchUp Tutorial
Copyright 2010, Martin Rinehart
Version 1.0, March 10-11, 2010
this one work ok... john
Advertisement