The code in my script file “export.rb” is shown below:
result = Sketchup.open_file("D:\\model.skp")
model = Sketchup.active_model
filename = "D:\\model.3ds"
status = model.export(filename, false) # export 3dsfile
Sketchup.send_action 57602 # shutdown sketchup
I have to run the script like this ----->: SketchUp.exe -RubyStartup “export.rb”`
Every time I run this script,I should start sketchup. So the way is very heavy.
Could you give me some way to run this script without starting sketchup
when sketcup process is active?