[request] VisMap 2 update/fix
-
You'll need to contact Martin. His email addy in on his website.
http://www.martinrinehart.com/contact.htmlThe VisMap 2 code is copyrighted, needs an overhaul, (use global vars, etc.) and is not implemented as a v8+
SketchupExtension
. -
Thanks for the reply Dan. If it will be a lot of work to bring it up-to-date (assuming he would be amenable to someone else tackling his code), then I wouldn't expect anyone to take it on.
I guess I was hoping that it was a simple fix — both in code and rights. It is an incredibly useful plugin and it's too bad that it didn't find a wider audience.
-
I sent him an email to see if he has any plans to update it. It is a fantastic plugin that has saved me tons of time on a lot of projects. Don't know if it will do anything but it's such a useful plugin for layer/scene management I had to reach out to him. If he gets back to me I will certainly pass along the message. Fingers crossed!!
-
@jsteacy said:
I sent him an email to see if he has any plans to update it. It is a fantastic plugin that has saved me tons of time on a lot of projects. Don't know if it will do anything but it's such a useful plugin for layer/scene management I had to reach out to him. If he gets back to me I will certainly pass along the message. Fingers crossed!!
.
Thanks for that... definitely worth the ask. Knock on wood! -
He got back to me really quickly, it just took me time to get back to him,(lol, sorry :s) he was curious with what was wrong with the plugin and since I'm a user, not a coder, I just listed off what I understood to have changed in SketchUp (that may have and affect) in the last couple of years. Anyone got more information on the problem that I can relay to him?
-
He responds pretty quickly! He's willing to license the code to a fellow coder so it can be updated, any wonderful people want to tackle that???
-
It's an easy fix. It has to do with changes to the String class.
In Ruby 1.8.7,
"123"[0]
would return the code for "1", or the number 49Since Ruby 1.9,
"123"[0]
returns the character at position 0, or "1". So you need to get ascii value you call"123"[0].ord
==> 49I sent an update to Martin via his email.
-
@jim said:
It's an easy fix. It has to do with changes to the String class.
...
I sent an update to Martin via his email.Thanks for identifying the needed fix Jim.
I hope that Martin posts an updated version to the SCF plugin store. It seems to me that if more people knew how useful / time-saving this plugin is for any model with more than a few scenes, it would find a lot of users.
I so could have used it over the past couple of days to clean up a walkthrough animation.
And thanks again to Jsteacy for following up on the original post with Martin.
-
It needs more than that.
It was defining global methods, global variables, and not implemented as a SketchupExtension instance.
-
@db11 said:
@jim said:
It's an easy fix. It has to do with changes to the String class.
...
I sent an update to Martin via his email.Thanks for identifying the needed fix Jim.
I hope that Martin posts an updated version to the SCF plugin store. It seems to me that if more people knew how useful / time-saving this plugin is for any model with more than a few scenes, it would find a lot of users.
I so could have used it over the past couple of days to clean up a walkthrough animation.
And thanks again to Jsteacy for following up on the original post with Martin.
Thanks db11, I was also wondering the same thing about the vismap2 until I found this post.
was the fix done by martin? and where can I find it?
Advertisement