I need to execute a script when a visio page is open
I try with the syntax below but the script is not executed
Options ExecuteSetsOnInit
Execute Script:testrefresh|||||NoConfirmation,CloseWhenFinished,SetTrigger=ValueChanged
If I suppress the options, the script is running but with the confirmation window
Execute Script:testrefresh|||||SetTrigger=ValueChanged
is there a way to run the script at page opening without the confirmation window ?
Hi Bernard,
You must use a pipeline before the SetTrigger option:
Execute Script:testrefresh|||||NoConfirmation,CloseWhenFinished|SetTrigger=ValueChanged
Note that new script syntax allows you to define the different aspects without a fixed order and a bunch of empty ‘|’ separated parts. For that several prefixes were added to make this work. Check out the help for more!