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

[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.
  • S Offline
    schorradt
    last edited by 27 Oct 2010, 08:05

    Thx for the feedback...
    Is there a function to the undo function to prevent
    for the undo stack? Or a code snipped?

    The error is to be here, I can not find...


    http://www.henryschorradt.de/

    1 Reply Last reply Reply Quote 0
    • T Offline
      thomthom
      last edited by 27 Oct 2010, 08:24

      @schorradt said:

      Is there a function to the undo function to prevent
      for the undo stack? Or a code snipped?

      There is a way to make the previous or next transparent, but I've had bad experience with them, tricky to get right. Merging undo stack items can be unpredictable to deal with. And both would cause the wrong name to appear in the Edit>Undo menu. I'd not recommend them.

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

      1 Reply Last reply Reply Quote 0
      • C Offline
        caleidos4d
        last edited by 27 Oct 2010, 09:05

        @schorradt said:

        The error is to be here, I can not find...

        .... 😲

        http://www.caleidos4d.it

        1 Reply Last reply Reply Quote 0
        • S Offline
          schorradt
          last edited by 28 Oct 2010, 14:50

          okay ... i looking for another solution...

          @Caleidos4D
          Sorry ,but in my testenvirement, i can´t see any errors 😞 . i do not understand it. maybe another plugin for a conflict?!


          http://www.henryschorradt.de/

          1 Reply Last reply Reply Quote 0
          • K Offline
            kmead
            last edited by 29 Oct 2010, 01:11

            @rv1974 said:

            Well sorry if I upset you but this manager is rather useless IMHO. Why?
            Because your model is itself a manager of your 3d elements. And if you'd turn on "show the hidden geometry" mode you can easily select\unhide\view it's properties without any additional tables.

            Honestly this was an unnecessarily rude response. It may be useless to you, but may be of great use to others whose work process is different from yours.

            I tend to hide some geometry to work on other items, being able to toggle a specific item into visibility without having to make all of them visible and the attendant slowdown of the program because of the huge overhead increase of all the sub geometry that also turns on when I show hidden geometry is a real boon.

            So, thanks for an interesting and I think, quite useful plugin. Great first effort, would that I were able to be able to reciprocate with a plugin of my own. In any case thank you.

            All the best and looking forward to your future efforts.

            Karl

            I created Dilbertville, sorry about that...

            1 Reply Last reply Reply Quote 0
            • P Offline
              poohnut
              last edited by 19 Nov 2010, 07:25

              Thanksssss

              1 Reply Last reply Reply Quote 0
              • S Offline
                schorradt
                last edited by 17 Jan 2011, 13:46

                little change in this Plugin.


                http://www.henryschorradt.de/

                1 Reply Last reply Reply Quote 0
                • C Offline
                  CAntonis
                  last edited by 30 Jan 2011, 21:36

                  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
                  • S Offline
                    schorradt
                    last edited by 16 Feb 2011, 13:43

                    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 24 Feb 2011, 03:06

                      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
                      • S Offline
                        schorradt
                        last edited by 25 Feb 2011, 09:07

                        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
                        • T Offline
                          thomthom
                          last edited by 25 Feb 2011, 09:34

                          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 26 Feb 2011, 14:38

                            @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 26 Feb 2011, 18:46

                              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 27 Feb 2011, 01:37

                                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 1 Mar 2011, 04:50

                                  @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 6 Mar 2011, 01:22

                                    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 8 Mar 2011, 21:38

                                      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 11 Mar 2011, 08:50

                                        this doesn't work after install scf power toolbar

                                        thank

                                        1 Reply Last reply Reply Quote 0
                                        • G Offline
                                          Gunny
                                          last edited by 30 Apr 2012, 20:22

                                          @cozzolino13 said:

                                          this doesn't work after install scf power toolbar

                                          thank

                                          quote

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

                                          Advertisement