Hi,
In order to achieve what you want you can use one of the following solutions:
First:
- go in the Custom Actions page and create a "Display message box" custom action without sequence
- in the "Action Data" text field from the right pane add your message string
- go in the Dialogs page and add a "Push Button" control on the dialog you want
- select the button you added and create a new published event
- in the "New Control Event" dialog choose "Execute custom action" and select your "Display message box" custom action from the "Argument" combo box
Second:
- go in the Dialogs page and add a "Hyperlink" control on the dialog you want
- in the "URL" text field from the "Properties" pane write the link to your help page
Third (this opens a web page when you press a button):
- go in the Custom Actions page and create an "Execute inline script code" custom action without sequence
- in the "Script Text" text field from the right pane add a code like in the example:
Code: Select all
CreateObject("Wscript.Shell").Run("www.mysite.com")
- go in the Dialogs page and add a "Push Button" control on the dialog you want
- select the button you added and create a new published event
- in the "New Control Event" dialog choose "Execute custom action" and select your "Execute inline script code" custom action from the "Argument" combo box
Let us know if this helped.
Best regards,
Eusebiu