2

这可能是一个愚蠢的问题。Firefox 相当严格,因为众所周知,Internet Explorer 可以毫无问题地激活病毒。但是对于我的英语课程,我需要没有命令屏幕的 eSpeak。该程序在本地运行,但我使用 HTML 和 javascript。

这是我的代码:

netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
var localFile = Components.classes["@mozilla.org/file/local;1"].createInstance(Components.interfaces.nsILocalFile);
var process = Components.classes["@mozilla.org/process/util;1"].createInstance(Components.interfaces.nsIProcess);
var args = new Array('-vmb-en1',"Say something");
localFile.initWithPath('C:\\WINDOWS\\espeak.exe');
process.init(localFile);
process.run(false, args, args.length);    

我想在 Firefox 中隐藏提示。Internet Explorer 做我想做的事:

try{var speak = new ActiveXObject('WScript.Shell');} catch(err){}
speak.Run('espeak -vmb-en1 "Say something"',0);

欢迎任何其他更改代码的建议。

4

1 回答 1

0

我认为您(和许多其他人)的问题是这个:https ://developer.mozilla.org/en-US/docs/Bypassing_Security_Restrictions_and_Signing_Code

但是我现在不知道怎么办!!

于 2012-12-01T16:47:39.600 回答