[Plugin] RichSection V0.5.8 UPDATED march 2015
-
DOCUMENTATION (not yet complete)
Update of the plugin tomorrow V0.4.6.....
-
- bug fixes
- statistics for analysis and development of the plugin : I will publish some β¦
- DOCUMENTATION !!!
-
Hi,
Just downloaded yesterday, and figuring out how to use it. Unfortunately, no matter what I do, I can't get audio on any of the videos. Computer speakers, through my stereo, videos on your site, or on YouTube. No problem with any other videos on the internet.
Thanks -
@youemailme said:
Unfortunately, no matter what I do, I can't get audio on any of the videos.
Nothing is wrong, there is no sound.
Do you want me to sing ?
Please read the pdf doc. -
-
I don't know how good a voice you have, so I suppose not. Guess that explains why there's no sound! I saw that someone complained about how fast they were, but I figured it wouldn't matter if I could hear what you were saying. Makes the pdf all the more indispensable. I'll watch the vids again after I study the pdf....
-
@ youemailme & tt_su
sorry,, english is not my mother tongue...I will make some slow 'how to' videos with text.
I will be on holiday the next three weeks ..... -
No apologies necessary! I'm in awe of anyone that can write plug-ins like this, while still carrying on a "day job"! No rush, and thanks again for your contribution to the world of SketchUp!
-
@youemailme said:
No apologies necessary! I'm in awe of anyone that can write plug-ins like this, while still carrying on a "day job"! No rush, and thanks again for your contribution to the world of SketchUp!
To make a decent plugin take a lot of work. And it's much more than having an idea and writing a little bit of ruby code. That is the easy part. But testing it. Because it should run on all version of windows and os x, and on all versions of sketchup. It can conflict with other plugins. And the userinterface had to be easy to use too. Oh did I mension there are all kind of browsers and they are different on win and mac and the UI is depended on these browsers. Than there is documentation. The user want a manual and tutorial movies. You should give support on it and a lot of support as nothing to do with your plugin itself but is an os, sketchup or browser issue... Or just stupidity of the user (oh yes I switched of showing images in my browser yesterday, now I understand why your webdialog isn't showing icons anymore... But this is after a join.me session of half an hour.)
Most of the plugins make money for the users by saving a lot of time. Please respect the developers and support there efforts by paying for there hard work. -
Hi Piet,
Here's a small sample of recent work using your plugin. All these are 100% sketchup/layout.
Thanks a lot!
Santiago
-
UPDATE 0.5.0 published in the Sketchucation PLUGINSTORE HERE
-
@caronte01 said:
Hi Piet,
Here's a small sample of recent work using your plugin. All these are 100% sketchup/layout.
Thanks a lot!
SantiagoGood work !!!
-
-
trying to install this extension on my SU2014 but cannot find this on my toolbar, and every time i restart SU, it shows:
@unknownuser said:
Error: #<LoadError: cannot load such file -- fileutils.rb>
c:/users/administrator/appdata/roaming/sketchup/sketchup 2014/sketchup/plugins/piga_richsection/richsection.rbs:133:inrequire' c:/users/administrator/appdata/roaming/sketchup/sketchup 2014/sketchup/plugins/piga_richsection/richsection.rbs:133:in
module:PiGaRSection'
c:/users/administrator/appdata/roaming/sketchup/sketchup 2014/sketchup/plugins/piga_richsection/richsection.rbs:106:in<main>' C:/Users/Administrator/AppData/Roaming/SketchUp/SketchUp 2014/SketchUp/Plugins/PiGa_RichSection/RSloader.rb:25:in
eval'
C:/Users/Administrator/AppData/Roaming/SketchUp/SketchUp 2014/SketchUp/Plugins/PiGa_RichSection/RSloader.rb:25:inrequire' C:/Users/Administrator/AppData/Roaming/SketchUp/SketchUp 2014/SketchUp/Plugins/PiGa_RichSection/RSloader.rb:25:in
module:PiGa'
C:/Users/Administrator/AppData/Roaming/SketchUp/SketchUp 2014/SketchUp/Plugins/PiGa_RichSection/RSloader.rb:3:in<top (required)>' C:/PROGRA~1/SketchUp/SketchUp 2014/Tools/extensions.rb:197:in
require'
C:/PROGRA~1/SketchUp/SketchUp 2014/Tools/extensions.rb:197:inload' C:/Users/Administrator/AppData/Roaming/SketchUp/SketchUp 2014/SketchUp/Plugins/PiGa_RichSection.rb:40:in
register_extension'
C:/Users/Administrator/AppData/Roaming/SketchUp/SketchUp 2014/SketchUp/Plugins/PiGa_RichSection.rb:40:in<module:PiGa>' C:/Users/Administrator/AppData/Roaming/SketchUp/SketchUp 2014/SketchUp/Plugins/PiGa_RichSection.rb:17:in
<top (required)>'any idea?
-
The
fileutils.rb
is a standard file found in theRubyStdLib
subfolder within the SketchUpTools
.
It does not auto-load when SketchUp starts, BUT can be required thus:
require "fileutils.rb"
Since the path to theRubyStdLib
subfolder should be auto-added to the$:
the .rb should be found in that folder.
Obviously something is failing...Check a few things...
Is theRubyStdLib
subfolder within the SketchUpTools
?
Does it contain a file namedfileutils.rb
?
If not reinstall SketchUp v2014 [latest version]...
Is the path toRubyStdLib
included in the$:
? To check that you just type$:
in the Ruby Console...
If you typerequire "fileutils.rb"
in the Ruby Console what is the result ?Report back...
-
UPDATE 0.5.1 published in the Sketchucation PLUGINSTORE HERE
RichSections created with an older plugin version don't need manual update any more (bug in 0.5.0) when changing the sectionplan
-
Thanks pgarmyn...
-
@tig said:
The
fileutils.rb
is a standard file found in theRubyStdLib
subfolder within the SketchUpTools
.
It does not auto-load when SketchUp starts, BUT can be required thus:
require "fileutils.rb"
Since the path to theRubyStdLib
subfolder should be auto-added to the$:
the .rb should be found in that folder.
Obviously something is failing...Check a few things...
Is theRubyStdLib
subfolder within the SketchUpTools
?
Does it contain a file namedfileutils.rb
?
If not reinstall SketchUp v2014 [latest version]...
Is the path toRubyStdLib
included in the$:
? To check that you just type$:
in the Ruby Console...
If you typerequire "fileutils.rb"
in the Ruby Console what is the result ?Report back...
Is the
RubyStdLib
subfolder within the SketchUpTools
?yesDoes it contain a file named
fileutils.rb
? yesIf not reinstall SketchUp v2014 [latest version]... 14.0.49
Is the path to
RubyStdLib
included in the$:
? To check that you just type$:
in the Ruby Console... i don't think soIf you type
require "fileutils.rb"
in the Ruby Console what is the result ? false -
Hi Piet,
IΒ΄m having some issues with this new version 0.5.1
When I right click on a rs to update it, I get the new dialog, and then after a second right click, I can update it. Previously, on the first right click, I was able to update the section directly.
The other thing is that, once the new dialog (which looks great btw, big improvement over the previous one), takes the focus, the main window can be orbited, but not zoomed in/out. This happens without notice, so that results in apparent sluggish navigation. Is there a way to switch between modal and non modal dialogs? It may be a matter of personal preference, but I like to have all these aux windows go away once they have served their purpose. This would avoid the first problem.
Other than that, IΒ΄ve had no issues with this new version. IΒ΄ll keep testing.
Thank you!
Santiago
-
@priestonaray said:
If not reinstall SketchUp v2014 [latest version]... 14.0.49
If you typerequire "fileutils.rb"
in the Ruby Console what is the result ? falseFileutils is used by my plugin, but it is part of the standard library since Sketchup 2014.
Did you reinstall Sketchup ? (Even if you have the latest)Tell me....
Advertisement