Oops, your profile's looking a bit empty! To help us tailor your experience, please fill in key details like your SketchUp version, skill level, operating system, and more. Update and save your info on your profile page today!
🛣️ Road Profile Builder | Generate roads, curbs and pavements easily Download
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.1http://groups.google.com/group/SketchUp-Plugins-Dev/web/Ruby-Model.html#add_note
-
Thank you Alex.
Advertisement