Hi JQL,
It's here: http://rhin.crai.archi.fr/rld/plugin_details.php?id=671
Regards,
Posts made by Didier Bur
-
RE: [Plugin] Projection toolbar update
-
RE: [Plugin] Layer manager
Hi utiler,
Attached RBS will do it. Unzip and overwrite your layer_manager.rbs file in your Layer Manager folder. That's it, enjoy !
-
RE: Please help. PLUG-IN PROBLEM
Why is my CompoSpray toolbar outlined in red on your screenshot ? I don't have anything to do with SU Vray plugin or with the site you mention
-
RE: New rendering plugin
@Box: +1
It seems to have some problems with FaceMe components that use PNG images (see trees in the background). Pixels that are totally transparent are not rendered as such.
Be careful with smoothed faces too (see black areas at the roof top). But maybe it's just my render settings that must be fine tuned.
-
RE: New rendering plugin
@Pilou: Yes 800x450 (16:9) is the max
Higher resolutions will be payware I guess.
But the plugin is simple, easy to use, and quite fast at renderings -
RE: New rendering plugin
I recommend everyone to test and use the plugin. The staff at Brighter3d sent me very quickly an installer which does not check the Win version, they are very aware of problems when you post at their forum.
-
RE: New rendering plugin
@mics_54:Thanks for the head up.
But I cannot install it! When running setup.exe (with admin privileges) this message pops up:
I'm running Windows 7 ...
Anyone else encountered this ? -
RE: Spot Elevation Markers Plugin - Dev Help/Review
Hi Matt,
Your project page says "There's nothing to see yet..." -
RE: Get_element_value issue (on Mac)
Hi,
I made it work the lazy way: data in the dialog box is saved in a global variable , so when the dialog closes it can be retrieved without js script or anything...$args={} @project_dialog.add_action_callback("main_dlg_ok") { |d, p| $args["nomProjet"] = d.get_element_value("nomProjet") $args["auteur"] = d.get_element_value("auteur") ... @project_dialog.close }
Thanks everybody for your help
-
RE: Get_element_value issue (on Mac)
Hi TT,
@unknownuser said:
What triggers the "main_dlg_ok" callback?
It's a "OK" button:
<input type ="button" value="Valider" onClick="window.location='skp;main_dlg_ok'">
I don't exactly know if the HTML is ready at this point, because it is written "on demand", just after the user clicks on the icon that launches the WebDialog
Regards, -
RE: Rigth Click turn layer off
Hi, You can also use my LayerManager plugin, which lets you click on object(s) you want to turn their layers off. And more
-
RE: Get_element_value issue (on Mac)
Hi Dan,
First option (using "id" instead of "name") does'nt work, so clearly this is a sync problem.
Second option (js) works, but what a complex coding for such a simple task... Mac sucks -
RE: Get_element_value issue (on Mac)
Thanks Dan, I'll try that asap and let you know which solution works...
-
Get_element_value issue (on Mac)
Hi all,
I'm puzzled with this:
I'm using a WebDialog to get some data from the user, in this case a project name.
Everything works OK on PC, but on Mac "get_element_value returns a void string "".
Anyone encountered this before ? (I didn't find anything related to this issue on this forum, maybe I missed something ?)in the webdialog method:
@args={} @project_dialog.add_action_callback("main_dlg_ok") { |d, p| @args["projectName"] = d.get_element_value("projectName") # other stuff goes here... @project_dialog.close }
in the HTML file:
<input size="20" form="Project" name="projectName" value="Nom du projet" type="text"> }
-
RE: SKETCHUP plugin to register an origins (axes)
Hi,
You can also save a style with each of your axes settings, like so:
-
RE: Scenes tabs sequencing ?
@Dan,
@unknownuser said:
I just re-read the description for Pages.add
I should have done so...
Along with your "save camera" and "get_page_flags" methods, this will be easy to regenerate all my pages in the correct order (which I want to be always the same).
Thanks folks,