Этот сайт имеет ограниченную функциональность, пока мы проводим техническое обслуживание для улучшения его работы. Если какая-либо статья не решила вашу проблему и вы хотите задать вопрос, наше сообщество поддержки ждёт вас: @FirefoxSupport в Твиттере и /r/firefox на Reddit.

Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Подробнее

netscape.security.PrivilegeManager is coming undefined?

  • 6 ответов
  • 1 имеет эту проблему
  • 42 просмотра
  • Последний ответ от kapilgoyal07

more options

Hi,


netscape.security.PrivilegeManager is coming undefined in mozilla firefox but in internet explorer or chrome its working fine.i am using 60.6.1 esr version. can you please give me any solution.i also tried to remove extension but that solution not working for me.

Thanks

Hi, netscape.security.PrivilegeManager is coming undefined in mozilla firefox but in internet explorer or chrome its working fine.i am using 60.6.1 esr version. can you please give me any solution.i also tried to remove extension but that solution not working for me. Thanks

Выбранное решение

Thanks every one.my issue has been solved with different way.

Прочитайте этот ответ в контексте 👍 0

Все ответы (6)

more options

hello, could you please provide more context to your question, like what are you attempting to do when the error is opening up...?

more options

Are you the developer? It is undefined because you cannot use it. Why do you need to use it?

more options

Hi,

We have a application which works only in internet explorer 8 and now working in IE-11 with compatibility mode. we want to make this application running in firefox.the functionality where we use netscape.security.PrivilegeManager is to copy link to clipboard.

following code is written currently :


      netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');
  
  var clip = Components.classes['@mozilla.org/widget/clipboard;1'].createInstance(Components.interfaces.nsIClipboard);
  if (!clip) return;
  var trans = Components.classes['@mozilla.org/widget/transferable;1'].createInstance(Components.interfaces.nsITransferable);
  if (!trans) return;
  
  trans.addDataFlavor('text/unicode');
  
  var str = new Object();
  var len = new Object();
  
  var str = Components.classes["@mozilla.org/supports-string;1"].createInstance(Components.interfaces.nsISupportsString);
  
  var copytext=urlToCopied;
  
  str.data=copytext;
  
  trans.setTransferData("text/unicode",str,copytext.length*2);
  
  var clipid=Components.interfaces.nsIClipboard;
  
  if (!clip) return false;
  
  clip.setData(trans,null,clipid.kGlobalClipboard);
  
  }

alert("Following URL was copied to your clipboard:\n\n" + urlToCopied);


Could you please help us for any suggestion.


Thanks

more options

Изменено TyDraniu

more options

It's just text? For a contemporary code example, see:

https://hackernoon.com/copying-text-to-clipboard-with-javascript-df4d4988697f

more options

Выбранное решение

Thanks every one.my issue has been solved with different way.