January 25, 200223 yr Hi, I would like to know if its possible to trigger a script upon opening file with surtain password. Meaning, allowing only "123" password to trigger the script upon opening the file. Thanks in advance!
January 25, 200223 yr Assign the password to a unique group. Then in your Open Script, Use an IF statement to test to check for that group: If (PatternCount(Status(CurrentGroups),"SpecialGroup"))=1 Perform subscript (SpecialScript) Else {maybe run another script} End If
Create an account or sign in to comment