Unity Customized Display Dialog

Hi Learned Members,

I need to create a customized message screen where i can show the error message and a label with hyperlink. Unity provides a display dialog like down mentioned

UnityEditor.EditorUtility.DisplayDialog(“Error No”, “Error Details”, “Click”);

But i need to get a label in red color with hyperlink instead of “Click” which is a button. And also when I click this label I need to open an url depending upon the Error No.

Is this possible? Is anybody can suggest me with a piece of code how to achieve this?

Thanks & regards,
Anoop.

I don’t think there’s a way to customize the editor modal dialog, but you can create an EditorWindow and use it.