I want to get the information from the fields in the shotlist (in the camera sequencer). The shotname I've solved:
test = cmds.getAttr('shot1.sn')
print test
But the rest.. I'm stuck. When I try to call the other arguments like startTime I get all kinds of errors depending of how I try to do it.
Welcome to SO, Fantasi.
You're giving a very vague question, so in return you're going to get a very vague answer.
You can get a list of your shots by using
cmds.listConnections
on your sequencer object. After, use afor
loop and get a shot's info by usingcmds.getAttr
like this:Example output of a sequencer with 2 shots:
If you're unsure about the shot object's attribute names then you can find them here.
If you still have problems I suggest you paste the error message from the Script Editor so we can diagnose what's wrong.