hi everyone,
first of all please excuse me for the grammar, english is not my mother tongue.
My question is:
how can I create an additional option to appear in the extensions menu, which would open an HTML interface?
Just like the Extensions Warehouse opens from SketchUp.
thanks in advance for your help
dezmo
November 29, 2021, 9:15am
2
You do need to be familiar with SketchUp Ruby API , and you must write an Extension.
Welcome! | SketchUp Developer
tt_su
November 30, 2021, 1:28pm
3
To get started with writing extensions you can have a look at our examples/tutorials: GitHub - SketchUp/sketchup-ruby-api-tutorials: SketchUp Ruby API Tutorials and Examples
I’d recommend getting familiar with that first before moving on to HtmlDialogs:
TIG
November 30, 2021, 1:47pm
4
This is the simplest way, using your default web-browser:
UI.menu("Plugins").add_item("OpenSomeURL"){UI.openURL("https://forums.sketchup.com/")}
If the URL is ‘local’ there are alternative ways of opening it for PC & MACs - ask if you need that…
That is exacly what i needed.
Thanks a lot!