The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
508 views

UniversalXPConnect permission error in firefox 17

I have a small web JS, that copy and inserts some form data to and from the iframe. But it doesn't work in Firefox 17. I'm using this code: ...
0
votes
0answers
129 views

Reading Firefox's Proxy settings via Javascript (not from an extension)

I'm working on some older code that was designed to use Firefox's XPCom to read Firefox's proxy settings. This is no longer working, and I'm looking for an alternative solution if there is one. This ...
4
votes
1answer
689 views

The only option is to include that block of code into each of my functions?

Several of my functions require the UniversalXPConnect privilege to be enabled. netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect'); So, my functions look like this: function ...
2
votes
1answer
339 views

How to read a local file by chunks in JavaScript?

I learned how to read a local file by chunks with the help of JavaScript in Firefox ( How to read a local file by chunks in JavaScript? ). But I wonder what if I want to read a certain range of ...
0
votes
1answer
419 views

How to read a local file by chunks in JavaScript?

Say, I have a file that is 500 bytes in size on my local hard drive and I want to read first 100 bytes from it without loading the whole file into memory. How to accomplish that in JavaScript with the ...
0
votes
1answer
952 views

Opening Outlook by JavaScript in Firefox

I want to open Outlook from Javascript, it's for an internal application, nothing that will ever hit the web. The customer is using IE and Firefox and Outlook will be installed, security is not an ...
0
votes
1answer
894 views

XPConnect (Firefox) - how to get value out of object

I'm trying to create a read from clipboard javascript function, and it's generally working, but I can't seem to extract the actual string from the object I create with the out parameter ...