Code Viewer
./WindowHandlers/About_handler.jsFile Size: 0.95 KB- /*
- *
- * About.xml : About
- *
- */
- function OnAboutEvent_CtrlClicked(pPlusWnd, sControlId) {
- switch (sControlId) {
- case 'BtnWebsite':
- var xml = createXml();
- xml.load(MsgPlus.ScriptFilesPath + '\\ScriptInfo.xml');
- _win32.ShellExecuteW(0, 'open', _lang.Website, 0, 0, _win32._const._SW_SHOWNORMAL);
- break;
- }
- }
- function OnAboutEvent_Destroyed(pPlusWnd, nExitCode) {
- if (nExitCode !== 6) {
- CloseWindow(pPlusWnd.WindowId);
- return false;
- }
- }