[Plugin] Hidden Manager (08.Feb.2015)
-
-
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?! -
@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
-
Thanksssss
-
little change in this Plugin.
-
17 Of january is my nameday! And this is a wonderful present!Downloaded and gonna test it!
Thank U very much! -
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...
-
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 -
I'm sorry, but it works on my computer. I can find no error.
Perhaps the pathfunctions does not feature in Sketchup 7 !? -
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") )
-
@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 -
schorradt
What capability does this provide vs what the outliner has now?? -
nifty tool as your hidden elements are in one place. I can see the relevance.
-
@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.rbsSome 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=34492A couple of similarities between Hidden Manager and PieceTracer:
- Both have an underscore in both the directory name and the file name, as most plugins do not.
- 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.
-
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.
-
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.
-
this doesn't work after install scf power toolbar
thank
-
-
Hello! I am back!
here is an update, tested in Sketchup 2014. At the moment without new features but I'm thinking about.
-
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.
Advertisement