Question about Static Text, thx!
-
The only way I found in Ruby to post text is Entities.add_text(text, pt)
However, these texts will change their position when I rotate the scene cos they are fixed to some pt. So this is different from the original SU text tool which allows static text and that's exactly what I need.Can I get static text from Ruby script? Thanks!
-Max
-
It is done very simply:
model = Sketchup.active_model note = model.add_note "Test", 0.1, 0.1
http://groups.google.com/group/SketchUp-Plugins-Dev/web/Ruby-Model.html#add_note
-
Thank you Alex.
Advertisement