>Trying to get a message to pop up on open until a certain date. Appreciate any help.
Hello Ivan,
I didn't test it yet, but I think the JS below should work . . . at least in theory!
Norman
===================================================
var expireDate = util.scand("mm/dd/yyyy", "10/30/2003");
var nowDate = new Date();
if (nowDate.valueOf() >= expireDate.valueOf()){
app.alert("TYPE MESSAGE HERE");
}
<<winmail.dat>>
