sketchucation logo sketchucation
    • Login
    ℹ️ Licensed Extensions | FredoBatch, ElevationProfile, FredoSketch, LayOps, MatSim and Pic2Shape will require license from Sept 1st More Info

    [Plugin] Hidden Manager (08.Feb.2015)

    Scheduled Pinned Locked Moved Plugins
    48 Posts 19 Posters 33.3k Views 19 Watching
    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.
    • P Offline
      poohnut
      last edited by

      Thanksssss

      1 Reply Last reply Reply Quote 0
      • schorradtS Offline
        schorradt
        last edited by

        little change in this Plugin.


        http://www.henryschorradt.de/

        1 Reply Last reply Reply Quote 0
        • CAntonisC Offline
          CAntonis
          last edited by

          17 Of january is my nameday! And this is a wonderful present!Downloaded and gonna test it!
          Thank U very much!

          1 Reply Last reply Reply Quote 0
          • schorradtS Offline
            schorradt
            last edited by

            Update: 16.Feb.2011

            • Change to start the observer on activate and remove on deaktivate now. i hope the bugsplash from other Plugins (ImageTrimmer or Slicer etc...) is removed...

            http://www.henryschorradt.de/

            1 Reply Last reply Reply Quote 0
            • B Offline
              bdbox
              last edited by

              Error Loading File mx_hidemanager_loader.rb
              C:/Program Files (x86)/Google/Google SketchUp 8/Plugins/mx_hidemanager_loader.rb:58: syntax error
              mx_hiddenmanager = SketchupExtension.new "Hidden Manager", File.join ("mx_hidemanager","mx_hidemanager.rbs")
              ^
              C:/Program Files (x86)/Google/Google SketchUp 8/Plugins/mx_hidemanager_loader.rb:58: syntax error
              mx_hiddenmanager = SketchupExtension.new "Hidden Manager", File.join ("mx_hidemanager","mx_hidemanager.rbs")
              ^
              C:/Program Files (x86)/Google/Google SketchUp 8/Plugins/mx_hidemanager_loader.rb:58: syntax error

              1 Reply Last reply Reply Quote 0
              • schorradtS Offline
                schorradt
                last edited by

                I'm sorry, but it works on my computer. I can find no error.
                Perhaps the pathfunctions does not feature in Sketchup 7 !?


                http://www.henryschorradt.de/

                1 Reply Last reply Reply Quote 0
                • thomthomT Offline
                  thomthom
                  last edited by

                  Henry:
                  mx_hiddenmanager = SketchupExtension.new "Hidden Manager", File.join ("mx_hidemanager","mx_hidemanager.rbs")

                  This can confuse Ruby - you have space after the method name and the brackets. ( File.join ) On top of that you have that as one of the argument of another method call ( SketchupExtension.new ) where you don't use brackets.

                  To avoid potential errors, always use brackets. But most important of all, never leave a space between the method name and the brackets.

                  It's a bit odd that a SU7 user should report this error, because SU8's ruby is more strict. Regardless, this should work:
                  mx_hiddenmanager = SketchupExtension.new( "Hidden Manager", File.join("mx_hidemanager","mx_hidemanager.rbs") )

                  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
                    bdbox
                    last edited by

                    @thomthom said:

                    Henry:
                    mx_hiddenmanager = SketchupExtension.new "Hidden Manager", File.join ("mx_hidemanager","mx_hidemanager.rbs")

                    This can confuse Ruby - you have space after the method name and the brackets. ( File.join ) On top of that you have that as one of the argument of another method call ( SketchupExtension.new ) where you don't use brackets.

                    To avoid potential errors, always use brackets. But most important of all, never leave a space between the method name and the brackets.

                    It's a bit odd that a SU7 user should report this error, because SU8's ruby is more strict. Regardless, this should work:
                    mx_hiddenmanager = SketchupExtension.new( "Hidden Manager", File.join("mx_hidemanager","mx_hidemanager.rbs") )

                    i got this error:

                    No such file to load -- mx_hidemanager/mx_hidemanager.rbsError Loading File mx_hidemanager_loader.rb
                    No such file to load -- mx_hidemanager/mx_hidemanager.rbs

                    1 Reply Last reply Reply Quote 0
                    • M Offline
                      mac1
                      last edited by

                      schorradt
                      What capability does this provide vs what the outliner has now??

                      1 Reply Last reply Reply Quote 0
                      • N Offline
                        nomeradona
                        last edited by

                        nifty tool as your hidden elements are in one place. I can see the relevance.

                        visit my blog: http://www.nomeradona.blogspot.com

                        1 Reply Last reply Reply Quote 0
                        • E Offline
                          Evan Garmaise
                          last edited by

                          @bdbox said:

                          @thomthom said:

                          Henry:
                          mx_hiddenmanager = SketchupExtension.new "Hidden Manager", File.join ("mx_hidemanager","mx_hidemanager.rbs")

                          This can confuse Ruby - you have space after the method name and the brackets. ( File.join ) On top of that you have that as one of the argument of another method call ( SketchupExtension.new ) where you don't use brackets.

                          To avoid potential errors, always use brackets. But most important of all, never leave a space between the method name and the brackets.

                          It's a bit odd that a SU7 user should report this error, because SU8's ruby is more strict. Regardless, this should work:
                          mx_hiddenmanager = SketchupExtension.new( "Hidden Manager", File.join("mx_hidemanager","mx_hidemanager.rbs") )

                          i got this error:

                          No such file to load -- mx_hidemanager/mx_hidemanager.rbsError Loading File mx_hidemanager_loader.rb
                          No such file to load -- mx_hidemanager/mx_hidemanager.rbs

                          Some of my users of the PieceTracer tool have reported the same mysterious "No such file to load" error, as you can see here:
                          http://forums.sketchucation.com/viewtopic.php?f=80&t=34492

                          A couple of similarities between Hidden Manager and PieceTracer:

                          1. Both have an underscore in both the directory name and the file name, as most plugins do not.
                          2. Both load the scrambled ruby file directly out of the loader file instead of using a second unscrambled file inside the sub-directory that loads the scrambled file using a 'require' statement or similar, as many plugins do.

                          Could these similarities point to a solution to the problem? Could be worth creating a test version with these things fixed to see if that solves the loading problem for those users who have it.

                          1 Reply Last reply Reply Quote 0
                          • E Offline
                            Evan Garmaise
                            last edited by

                            I checked with my users and fixing #2 above fixed the problem. schorradt, just create a .rb file in your subdirectory with one line: "Sketchup::require " and then the name of your scrambled file. Then load that .rb file out of your loader file using SketchupExtension. That will fix the loading problem for your users who have it.

                            1 Reply Last reply Reply Quote 0
                            • EarthMoverE Offline
                              EarthMover
                              last edited by

                              Thanks Evan. Good advice. I have the same issue, presumably a conflict with Piece Tracer. I'll see if I can do it manually until the author fixes the issue.

                              3D Artist at Clearstory 3D Imaging
                              Guide Tool at Winning With Sketchup
                              Content Creator at Skapeup

                              1 Reply Last reply Reply Quote 0
                              • C Offline
                                cozzolino13
                                last edited by

                                this doesn't work after install scf power toolbar

                                thank

                                1 Reply Last reply Reply Quote 0
                                • G Offline
                                  Gunny
                                  last edited by

                                  @cozzolino13 said:

                                  this doesn't work after install scf power toolbar

                                  thank

                                  quote

                                  1 Reply Last reply Reply Quote 0
                                  • schorradtS Offline
                                    schorradt
                                    last edited by

                                    Hello! I am back!

                                    here is an update, tested in Sketchup 2014. At the moment without new features but I'm thinking about.


                                    Hidden Manager 1.0.1 (21.03.2014)


                                    http://www.henryschorradt.de/

                                    1 Reply Last reply Reply Quote 0
                                    • KrisidiousK Offline
                                      Krisidious
                                      last edited by

                                      SCF Toolbar has some files in it that create conflicts. There are two or three files that need to be removed as they are outdated and in the wrong location.

                                      By: Kristoff Rand
                                      Home DesignerUnique House Plans

                                      1 Reply Last reply Reply Quote 0
                                      • schorradtS Offline
                                        schorradt
                                        last edited by

                                        oh right... i will check it out. thx

                                        do you mean "SCF Power Toolbar v1" or where can i find a new version?


                                        http://www.henryschorradt.de/

                                        1 Reply Last reply Reply Quote 0
                                        • KrisidiousK Offline
                                          Krisidious
                                          last edited by

                                          I don't think there is a new one. I think this thread goes over the issues found in it.

                                          http://sketchucation.com/forums/viewtopic.php?f=323%26amp;t=52474%26amp;p=475625%26amp;hilit=+custom+toolbar#p475625

                                          By: Kristoff Rand
                                          Home DesignerUnique House Plans

                                          1 Reply Last reply Reply Quote 0
                                          • schorradtS Offline
                                            schorradt
                                            last edited by

                                            I think it's more a problem of Toolbar extension. ! Or?
                                            please report error message if you get a conflict with my plugin. thx


                                            http://www.henryschorradt.de/

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

                                            Advertisement