case 1792 : ckeys = "Ctrl+Alt+Shift+" + String.fromCharCode(intval & 255);
}
return(ckeys)
}
/*
function name: gotoexplore(pfad)
parameters: pfad (string, a file's path)
returns: void
global vars: Ws
purpose: opens an explorer windows and selects a file
*/
function gotoexplore(pfad) {
Ws.Run("explorer.exe /select,\""+pfad+"\"");
}
/*
function name: delkeyLNK(pfad, intval)
parameters: pfad (string, path of an LNK file whose hotkey is deleted), intval (integer, a reference to it┤s HTML table entry)
returns: void
global vars: Ws
purpose: if the "Odstranit klßvesovou zkratku" button is clicked, this functions removes the hotkey from the LNK file. The displayed key-combination is striked through in the HTML table
parameters: pfad (string, path of an URL file whose hotkey is deleted), intval (integer, a reference to it┤s HTML table entry)
returns: void
global vars: Fs
purpose: if the "Odstranit klßvesovou zkratku" button is clicked, this functions removes the hotkey from the URL file. The displayed key-combination is striked through in the HTML table
purpose: prints a table of the found link files and their hotkeys
*/
function printtab() {
var htmltab = open('','_blank','scrollbars=yes,menubar=yes,toolbar=yes,location=no,resizable=yes,titlebar=yes,width=400,height=460');
htmltab.document.write("<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01//EN\"><html><head><meta name=\"generator\" content=\"HTML Tidy for Windows (vers 1st December 2004), see www.w3.org\"><title>P°ehled klßvesov²ch zkratek</title></head><body><b>Pou₧itΘ klßvesovΘ zkratky</b><br><table>"+tabledata.replace(/<Input [^>]*>/g,'').replace(/Datei:/g,'<br>Datei:').replace(/Tasten:/g,'<br>Tasten:')+"</table></body></html>");