• Login
sketchucation logo sketchucation
  • Login
🤑 SketchPlus 1.3 | 44 Tools for $15 until June 20th Buy Now

[Plugin] ToolbarEditor (1.1.2) – updated 08.06.2014

Scheduled Pinned Locked Moved Plugins
122 Posts 40 Posters 57.9k Views
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • T Offline
    thomthom
    last edited by 24 May 2013, 12:25

    Andreas, here's a nice idea that I liked. That in addition to customize toolbar one could paste a snippet for a completely new command: http://sketchucation.com/forums/viewtopic.php?f=15&t=52454&p=475992#p475990

    This would be a great tool. You think this tool can be tweaked for that?

    Thomas Thomassen — SketchUp Monkey & Coding addict
    List of my plugins and link to the CookieWare fund

    1 Reply Last reply Reply Quote 0
    • B Offline
      Bob James
      last edited by 10 Jun 2013, 05:31

      1. Can someone write a sample ruby script to make an icon for a native command that has no icon so I can use it to add the icon to a toolbar made with ToolbarEditor?

      2. How do you delete an icon in a toolbar made with ToolbarEditor?

      3. How do you delete a toolbar made with ToolbarEditor?

      i7-4930K 3.4Ghz, 2x GTX780 6GB, 32GB DDR3-1600 ECC, OCZ Vertex 4 500GB, WD Black 3TB, 32TB NAS, 4x 27" Monitors, SpaceMouse Pro, X-keys XK-60

      1 Reply Last reply Reply Quote 0
      • C Offline
        CadFather
        last edited by 10 Jun 2013, 08:06

        1 - which one?
        2 - click on the icon and drag it slowly on the right panel
        3 - click on the minus sign - top right of your toolbar header

        1 Reply Last reply Reply Quote 0
        • B Offline
          Bob James
          last edited by 10 Jun 2013, 09:31

          @cadfather said:

          1 - which one?

          Generically so I could modify it for any command

          @cadfather said:

          2 - click on the icon and drag it slowly on the right panel

          Thank you

          @cadfather said:

          3 - click on the minus sign - top right of your toolbar header

          duh 😳

          i7-4930K 3.4Ghz, 2x GTX780 6GB, 32GB DDR3-1600 ECC, OCZ Vertex 4 500GB, WD Black 3TB, 32TB NAS, 4x 27" Monitors, SpaceMouse Pro, X-keys XK-60

          1 Reply Last reply Reply Quote 0
          • A Offline
            Aerilius
            last edited by 10 Jun 2013, 13:08

            As in the API documentation… http://www.sketchup.com/intl/en/developer/docs/ourdoc/command.php

            
            cmd = UI;;Command.new("name of the command"){
              AuthorModule;;PluginName.name_of_the_main_method()
            }
            cmd.tooltip = "tooltip that describes the command"
            cmd.status_bar_text = "text that tells how to use the command"
            cmd.large_icon = "./path/to/a/icon24px.png"
            cmd.small_icon = "./path/to/a/icon16px.png"
            
            

            It still can only be used with understanding of what it does, and you would have to look up how a certain plugin is started.

            It would probably be sufficient and much easier to edit the plugin's own ruby file, look for "UI::Command.new" and add the icons. The icon path can either be relative to the ruby file or absolute (to the system's root, ie. "C:/" on Windows).

            Some plugins add themself only to the menu without creating a command. That looks like this:

            UI.menu("plugins").add_item("name of the command"){ name_of_the_method }
            

            and can be replaced by a command object (as above) plus

            UI.menu("plugins").add_item(cmd)
            
            1 Reply Last reply Reply Quote 0
            • D Offline
              danb
              last edited by 31 Mar 2014, 17:20

              Hello, could anyone help. I used this plugin with 2013 but it does not seem to work with 2014. I find it very useful, particularly as I use a mac and you can't stack the toolbars as you do on windows

              many thanks

              Dan

              Macbook Pro
              OSX 10.9
              Sketchup Pro 2014

              Sketchup Pro 2019/20
              OSX 10.15.3
              Macbook Pro

              1 Reply Last reply Reply Quote 0
              • B Offline
                Box
                last edited by 5 Apr 2014, 16:39

                It throws a load error in SU2014


                Load.JPG


                Load1.JPG

                1 Reply Last reply Reply Quote 0
                • A Offline
                  Aerilius
                  last edited by 5 Apr 2014, 17:46

                  If you are curious, you can have a sneak-peak on the next version 1.1.0 with custom buttons. You will be able to create your own toolbar buttons for Ruby one-liners, code snippets or other things found on the forum.


                  fixed LoadError

                  1 Reply Last reply Reply Quote 0
                  • A Offline
                    Aerilius
                    last edited by 5 Apr 2014, 18:04

                    Thanks, I fixed the load error.

                    1 Reply Last reply Reply Quote 0
                    • TIGT Offline
                      TIG Moderator
                      last edited by 5 Apr 2014, 22:41

                      @aerilius said:

                      Thanks, I fixed the load error.
                      BUT you haven't published it 😒

                      TIG

                      1 Reply Last reply Reply Quote 0
                      • B Offline
                        Box
                        last edited by 6 Apr 2014, 00:02

                        It's on the previous page Tig, not the first post. It's a teaser/beta and the fix worked for me.

                        1 Reply Last reply Reply Quote 0
                        • TIGT Offline
                          TIG Moderator
                          last edited by 6 Apr 2014, 10:04

                          So the version in that mid-thread post has been updated - it was not clear... 😕

                          TIG

                          1 Reply Last reply Reply Quote 0
                          • F Offline
                            function
                            last edited by 6 Apr 2014, 19:34

                            I've noticed that this plugin takes a fairly long time to load all the icons at startup. Is there any other negative affects to performance?

                            1 Reply Last reply Reply Quote 0
                            • A Offline
                              Aerilius
                              last edited by 7 Apr 2014, 22:44

                              It has an arbitrary timeout of five seconds. It's not doing much processing, it just needs to be sure that SketchUp has finished loading all other plugins. I wish SketchUp had (or will have) a proper API method for that. When I come back I'll see if it still works reliably wirh a shorter timeout.

                              1 Reply Last reply Reply Quote 0
                              • F Offline
                                function
                                last edited by 8 Apr 2014, 15:48

                                its kind of strange for me. i have something like 4 tool bars, they load one icon at a time, and then on the 5th toolbar i made it loads all 6 instantly .. :🤷:

                                1 Reply Last reply Reply Quote 0
                                • A Offline
                                  Aerilius
                                  last edited by 8 May 2014, 12:48

                                  I updated the plugin. It now includes custom buttons.

                                  http://sketchucation.com/pluginrepo/image/ae_ToolbarEditor/screenshot2b.png

                                  1 Reply Last reply Reply Quote 0
                                  • Rich O BrienR Offline
                                    Rich O Brien Moderator
                                    last edited by 8 May 2014, 12:50

                                    Incredible.

                                    Download the free D'oh Book for SketchUp 📖

                                    1 Reply Last reply Reply Quote 0
                                    • KrisidiousK Offline
                                      Krisidious
                                      last edited by 8 May 2014, 16:11

                                      I can haz all thomthoms in a toolbar?

                                      By: Kristoff Rand
                                      Home DesignerUnique House Plans

                                      1 Reply Last reply Reply Quote 0
                                      • B Offline
                                        Ben Ritter
                                        last edited by 8 May 2014, 19:15

                                        Thank you for sharing this with us.

                                        1 Reply Last reply Reply Quote 0
                                        • KrisidiousK Offline
                                          Krisidious
                                          last edited by 8 May 2014, 22:07

                                          does this mean it's time for the Icon Making Challenge?

                                          By: Kristoff Rand
                                          Home DesignerUnique House Plans

                                          1 Reply Last reply Reply Quote 0
                                          • 1
                                          • 2
                                          • 3
                                          • 4
                                          • 5
                                          • 6
                                          • 7
                                          • 4 / 7
                                          • First post
                                            Last post
                                          Buy SketchPlus
                                          Buy SUbD
                                          Buy WrapR
                                          Buy eBook
                                          Buy Modelur
                                          Buy Vertex Tools
                                          Buy SketchCuisine
                                          Buy FormFonts

                                          Advertisement