Thomas Thomassen
Thomas Thomassen
I'm not able to reproduce this. Can you provide a snippet that demonstrate this? Here is the snippet I used: ```ruby class MyTool def onKeyUp(key, repeat, flags, view) puts "onKeyUp:...
@3dmod for issues in released versions of SketchUp we recommend using this issue tracker as it increase visibility for the API developer community.
Oh, you were talking about the `onKeyDown` event. I tried that as well, unable to reproduce: ```ruby class MyTool def onKeyDown(key, repeat, flags, view) puts "onKeyUp: key = #{key}" puts...
It hasn't been actively worked on, no. But it's on out list, and parity issues typically get higher priority. I however cannot promise on any timeline.
Yes! I'm always defining these in my extensions!
We should do a "Constant all the Magic" cleanup sweep.
I tested this on Windows and Mac, with SU2023. Worked fine with both. When using the UI I did however get a prompt to allow access to the file. Could...
> An Intel Mac ? You got me there. I'd remoted into the wrong machine. I see the import fail via the Ruby API on SU2023 on the Intel machine....
Hmm.... I tried your first snippet: ```ruby points_a = [] points_a.push(Geom::Point3d.new(3,3,0)) points_a.push(Geom::Point3d.new(0,0,0)) points_a.push(Geom::Point3d.new(6,0,0)) points_a.push(Geom::Point3d.new(3,3,0)) points_b = [] points_b.push(Geom::Point3d.new(3,3,0)) points_b.push(Geom::Point3d.new(3,6,0)) model = Sketchup.active_model group_test_curves_scenario = model.entities.add_group group_test_curves_scenario.name = "scenario_F_01" group_a =...
I've passed this issue around in the office and nobody is able to reproduce this on intel machine. However I got hold of one myself and see it happening in...