Popup Box JavaScript Edit Font Size and Color
Hello. I have an On Blur action for a text box that if anyone typs in the number "5012" it prompts a pop-up box that gives a message. I want to be able to change the font size and color. How can this be done. Below is my script:
var fieldValue = this.getField("Text1").value;
if (fieldValue == "5012") {app.alert("***Message to Person***");
}
