I have two document properties in form of a list boxes. The challenage is that when i select value 'last month' on the 1st document proeprty (named L8WLM), i want 2nd document property (named EmTime) to automatically change to 'Year&month' selection. I'm trying to add this script below to act on property change but it doesnt work.
Any ideas?
Thanks in advance!
if Document.Properties['L8WLM'] == 'last month':
Document.Properties['EmTime'] = 'Year&month'
else:
Document.Properties['EmTime'] = 'Week'