Export the scenes' name into a list (.doc or .xls)

Hi,

Is there any way to export the list of the scenes’s name into a list. I have more than 50 scenes and I would like to export just the names of each scene.

Many thanks,

Camilo

Not really an “Export” but you could use a mouse click action with this javascript to get a list of the scene names…

	var x =  hypeDocument.sceneNames()
    console.log(x)
1 Like

To get a CSV-like format, you would use something like this:

2 Likes