Hallo, ich bin auf win10 x64 umgestiegen und seitdem funktioniert dieser code bei mir nicht, bitte um hilfe.
Code
(function () {
if (location != 'chrome://browser/content/browser.xul')
return;
try {
var APPpath = 'C:\\Windows\\System32\\osk.exe';
var label = 'osk';
var tooltiptext = 'osk starten';
Components.utils.import("resource:///modules/CustomizableUI.jsm");
CustomizableUI.createWidget({
id: "ucjs-" + label + "-button",
defaultArea: CustomizableUI.AREA_NAVBAR,
removable: true,
label: label,
tooltiptext: tooltiptext,
onClick: function () {
var file = Cc['@mozilla.org/file/local;1'].createInstance(Ci.nsIFile);
file.initWithPath(APPpath);
file.launch();
},
onCreated: function (aNode) {
var ICOpath = APPpath.replace(/\\/g, "//");
aNode.style.listStyleImage = 'url("moz-icon:file:///' + ICOpath + '?size=16")'
return aNode;
}
});
} catch (e) {
Components.utils.reportError(e);
};
})();
Alles anzeigen