1
我有這個簡單的Windows JavaScript,它將每隔30分鐘彈出一個提醒10秒鐘。如何讓彈出窗口出現在所有其他窗口的頂部?Windows腳本主機彈出 - 在其他窗口之上
var wshShell = WScript.CreateObject("WScript.Shell");
while(1) {
var value = wshShell.Popup("Reminder text", 10, "Reminder", 0x1);
if (value == 2) { // Cancel button pressed
break;
}
WScript.sleep(30 * 60 * 1000); // Every 30 minutes
}
WScript.Echo("Exiting timer!");