modoで選択したアイテムの名前をテキストファイルに出力するスクリプトが公開されてます。たまに欲しくなるので助かる。
https://community.foundry.com/discuss/post/1212480
ファイルパスを設定して実行する必要があります。
import os
import modo# Get the scene item
scene = modo.Scene()
# The path to write out the file to your desktop
file = os.path.expanduser("~/Desktop/selected_items.txt")
# Get all selected items names ass a list
# Adding \n to the end of the name for a new line in the file.
item_names = [item.name+"\n" for item in scene.selected]# Write data to file.
with open(file, "w") as item_name_file:
item_name_file.writelines(item_names)
Good work