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