Hi John,
You can place this script in the Global KeyBoard and GPI Map and assign it a KeyBoard shortcut. When executed, it will look at the Active Project and log Scene information to the Debug Monitor (To enable the Debug Monitor, Edit > Preferences > Advanced > Enable Debug Monitor for scripting). Once the script has been executed, you can right click in the Debug Monitor and save the contents to a text file.
dim prj as xpProject
dim scn as xpScene
dim i as integer
prj = engine.ActiveProject
for i = 0 to prj.SceneCount - 1
prj.GetScene(i, scn)
Engine.DebugMessage("Scene Name - " & scn.Name & ", Default Channel - " &(scn.DefaultFramebufferID + 1) & ", Default Layer - " &scn.DefaultFramebufferLayer, 0)
next
- Greg
------------------------------
Greg Ozimkowski
Product Specialist
Ross Video
------------------------------