Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

message box with web link.

Avatar

Level 2

Hi,

i need to display a message box containg the web link in the form, where the user can click on the link when the message box displays..

0 Replies

Avatar

Level 10

I do not think that is possible with the message box. Unless you want to write code for customizing the Java Script windows.

Alternatively, you can capture the OK button on a message box and open a URL from the click event code.

if(xfa.host.messageBox("Your message","Caption", 2,1) == 1){

     //Write code to open the URL.

}

Thanks

Srini