Hi
I am looking for similar code of @ Prompt for the web i tried with JavaScript but I am new to JavaScript . I tried these two functions with internet help but not working.
function popUp(URL) {
day = new Date();
id = day.getTime();
eval(“page” + id + " = window.open(URL, ‘" + id + "’, ‘toolbar=no,scrollbars=no,location=no,statusbar=no,menubar=no,resizable=no,width=200,height=250’);");
}
function LinkUp(obj)
{
linkid=obj.options[obj.selectedIndex].value
NewWin=window.open(linkid,“win1”,config=“width=200,height=250,location=no,status=no,directories=no,toolbar=no,scrollbars=no,menubar=no,resiza ble=no,top=30,left=30”)
}
This is my Notes client view action button code. i am looking for similar function for web any help is appreciated
Choice := @Prompt([OkCancelList]:[NoSort];“Publicity Material”;“Select the type of information you wish to add for this Title.”;“”;“Press Release (scan)”:“Press Release (attach)”:“Mailing List (Code)”:“Mailing List (Scan)”:“Review”:“Reference”:“Addendum (scan)” : “Addendum (attach)”);
@If(Choice = “Press Release (scan)”;@Command([Compose];“Press Release Scan”);Choice=“Press Release (attach)”;@Command([Compose];“Press Release Attach”);Choice=“Mailing List (Scan)”;@Command([Compose];“List”);Choice=“Mailing List (Code)”;@Command([Compose];“Mailing List (Code)”);Choice=“Review”;@Command([Compose];“Review”);Choice=“Reference”;@Command([Compose];“Reference”);Choice=“Addendum (attach)”;@Command([Compose];“Addendum Attach”);Choice=“Addendum (scan)”;@Command([Compose];“Addendum Scan”);“”)