Quick question for someone starting to get into Python scripting, I’m trying to get the data of the name of the object I am currently selecting (the name of the object is theShape) so that the code below runs correctly.
if Application.Selection(0) == "theShape":
print "What I'm Looking For!"
else:
print "Not really"
When I run this sequence, I will always get the False output. I’d like to be able to manipulate the code so I can get the True output. Can anyone explain/offer a solution to this?
Thanks for your time!