Thomas Thomassen
Thomas Thomassen
Given a `@!group` section, is it possible to refer to it elsewhere in the documentation such that it creates a link to it? Or even some means of manually creating...
Related to #477 - but sounds like it is a SU2020 regression. Description of reported issue: > 1) I use SU2020-1 on Mac OSX (Catalina), with NO plugins (other that...
Related forum thread: https://forums.sketchup.com/t/creating-a-component-from-a-face-crashes-sketchup/186346/10?u=tt_su [Sketchup Face.zip](https://github.com/SketchUp/api-issue-tracker/files/7882552/Sketchup.Face.zip) Open `Sketchup Face.skp`, select the fence instance and run the script: ``` mod = Sketchup.active_model ents = mod.active_entities sel = mod.selection sel.grep(Sketchup::ComponentInstance) do |s|...
https://ruby.sketchup.com/UI/Toolbar.html#get_last_state-instance_method  Better to refer to the constants: https://ruby.sketchup.com/top-level-namespace.html#constants_for_toolbar_states 
https://ruby.sketchup.com/Geom/BoundingBox.html#corner-instance_method  There should be constants for these values, similar to what was added for `Sketchup::View#corner` for SU2025: https://ruby.sketchup.com/Sketchup/View.html#corner-instance_method
This method is not easy to understand. Yet another demonstration of that: https://forums.sketchup.com/t/how-can-i-understand-entities-intersect-with-method/182335 We should add more complete code examples. It might be challenging to do a fully functional example...
SU2018 ``` cmd = UI::Command.new("Test") { UI.messagebox "Hello World" } toolbar = UI::Toolbar.new("ToolbarTest") toolbar = toolbar.add_item(cmd) toolbar = toolbar.add_item(cmd) toolbar = toolbar.add_item(cmd) toolbar.restore ```  First icon is expected, the...
https://forums.sketchup.com/t/safe-frames-control-viewport-aspect-ratio-mac/108154/3?u=tt_su
https://github.com/SketchUp/api-issue-tracker/issues/512#issuecomment-674818743 > On Mac, when the mouse button is down, onMouseMove and onLButtonUp are received even if the mouse is outside the viewport or hovering a dialog box. That's not...
> Do you have a sample file? (And just to be sure we're not interpreting any hidden context differently, small snippet?) File here: [blowup.zip](https://github.com/SketchUp/api-issue-tracker/files/6669958/blowup.zip) When attempting to load locally, I've...