Exporting scene names
-
Is there a way to export all the scene names (of 1 file) into a text or excel file?
Because every scene of my file contains a part of the assembly scene, so it would be great to make a partlist that uses the scene names. -
This one-liner prints all scene names in the Ruby Console.
Copy+Paste +<enter> the text.puts;Sketchup.active_model.pages.each{|p|puts p.name};puts
you can then copy+paste the output into a text file as desired...
-
Thanks!
It helps me a lot to automate my proces.
I use the plugin Comp2Layer2Scene in combination with MakeOrthoView.
Every part of the assembly is a layer and a scene, named like this: partnumber-partname
With the code I can make partlist in excel in a short time.Thanks again to TIG
Advertisement