Message 1 of 2
Not applicable
03-26-2019
10:57 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I need to quickly create a list of objects currently selected or isolated. Any thoughts?
This script exports all objects in the scene:
output_name = getSaveFileName caption:"CSV File" types:"CSV (*.csv)|*.csv|" if output_name != undefined then ( output_file = createfile output_name for vObj in Objects do ( format "%\n" vObj.name to:output_file ) close output_file )
Solved! Go to Solution.
