Archive: MessageBox text as Hyperlink


MessageBox text as Hyperlink
Is it possible make part of the Messagebox text hyperlinked?

MessageBox MB_OK|MB_ICONINFORMATION "Before we proceed, your computer needs to have ABC installed. Find it at: http://www.ABC.Com"

...and of course I want to make http://www.abc.com clickable.

Thanks for any info.


You cannot do this easily with one static text label. What you can do is create your own model dialog that looks like a message box (by writing a plugin) and have 3 separate labels with one being the link. There are a few plugins out there which turn static labels into links, like BrandingURL.

If you don't want to go that far, you can use the MessageBox plugin which allows you to have custom buttons.

Stu