@unknownuser said:
Hi,
@georglorenz: try the script I have attached and see if it works better.
Regards
That worked! Thank you Didier!
Here is what I understand you did to the syntax:
model.start_operation "randomflipc"
changed to:
model.start_operation("randomflipc")
results = UI.inputbox prompts, defaults, "Random Scale Parameters"
changed to:
results = UI.inputbox(prompts, defaults, "Random Scale Parameters")
UI.menu("Plugins").add_item("gxl random flip"){gxl_randomflipc}
changed to:
UI.menu("Plugins").add_item("gxl random flip"){ gxl_randomflipc }
Is there a general guide or forum discussion for sketchup 8 syntax that would help me avoid these pitfalls in the future?
Thank you again /g