Hi! So, this one should be easy, and it might be but I don't know it
How do you select all objects that are in a list?
for eg;
CODE
for sCount in range(0,userStpCount - 2,1):
mc.duplicate(ic=True, st=True)
#Append each step to list
stepList.append(mc.ls(sl=True))
print stepList
# this will display: [[u'pstep1'], [u'pstep2'], [u'pstep3'], [u'pstep4'], [u'pstep5']]
But how do I actually select those objects?
I tried stSelection = mc.getAttr(stepList[0:]) but it really doesn't like it.
Edit: Solved, Was hoping to solve without a loop, seems a loop was the only way to go.