473,387 Members | 1,590 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Doesn't work on Firefox

I found the following script to copy text to the client clipboard but
it is not working in Firefox (works fine in IE 6). Can anyone suggest
what I need to change?

=================================================
function copy_clip(mytext){
if (window.clipboardData)
{
// IE
window.clipboardData.setData("Text", mytext);
// Netscape
}
else if (window.netscape)
{

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.nsITransfera ble);
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.nsISupportsS tring);

var copytext=mytext;
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 info was copied to your clipboard:\n\n" + mytext);
return false;
}
==========================================

Jul 23 '05 #1
10 17547
wa***@wengert.org wrote:
I found the following script to copy text to the client clipboard but
it is not working in Firefox (works fine in IE 6). Can anyone suggest
what I need to change?

=================================================
function copy_clip(mytext){
if (window.clipboardData)


Try this in non-IE browsers:

alert( window.clipboardData )
You will most likely get 'undefined'. Firefox et al don't support
copying to the clipboard.
[...]
--
Rob
Jul 23 '05 #2
Thanks. That is exactly what happened.

So, I need to detect those browsers and disable the clipboard options?

Wayne

"RobG" <rg***@iinet.net.auau> wrote in message
news:42**********************@per-qv1-newsreader-01.iinet.net.au...
wa***@wengert.org wrote:
I found the following script to copy text to the client clipboard but
it is not working in Firefox (works fine in IE 6). Can anyone suggest
what I need to change?

=================================================
function copy_clip(mytext){
if (window.clipboardData)


Try this in non-IE browsers:

alert( window.clipboardData )
You will most likely get 'undefined'. Firefox et al don't support copying
to the clipboard.
[...]
--
Rob

Jul 23 '05 #3
For Firefox, there is an alternative.

Take a look at

http://www.xulplanet.com/tutorials/xultu/clipboard.html

Jul 23 '05 #4
Sorry, forget my answer. I note you have got this covered in your code
above.

I would like to respectfully disagree with RobG.

I think that Firefox does support clipboard operations (as did
Mozilla), through XPConnect as you note.

Your "if" statements should also discount other browsers, as you
correctly do this by means of a "feature" test.

I would think that your problem lies somewhere in your XPConnect code
stated above. I have not had chance to look closely, but XUL Planet is
a good source of information.

Jul 23 '05 #5
Thanks for the response. The sample script I included supposidly uses that
approach but obviously I missed something.

Wayne

"Baconbutty" <ju****@baconbutty.com> wrote in message
news:11**********************@f14g2000cwb.googlegr oups.com...
For Firefox, there is an alternative.

Take a look at

http://www.xulplanet.com/tutorials/xultu/clipboard.html

Jul 23 '05 #6
Thanks.... I'll keep looking.

Wayne

"Baconbutty" <ju****@baconbutty.com> wrote in message
news:11*********************@g14g2000cwa.googlegro ups.com...
Sorry, forget my answer. I note you have got this covered in your code
above.

I would like to respectfully disagree with RobG.

I think that Firefox does support clipboard operations (as did
Mozilla), through XPConnect as you note.

Your "if" statements should also discount other browsers, as you
correctly do this by means of a "feature" test.

I would think that your problem lies somewhere in your XPConnect code
stated above. I have not had chance to look closely, but XUL Planet is
a good source of information.

Jul 23 '05 #7
I re-coded the function to match the site you referenced (see below) and I
see the alert("copytext set") alert
but not the alert("Just tried to set str")? It appears that the step to set
the value of "str" causes the function to terminate?
I don't gey any error messages?

Any thoughts?

Wayne

==================================================
function copy_clip(mytext){
if (window.clipboardData)
{
// IE
window.clipboardData.setData("Text", mytext);
// Netscape
}
else if (window.netscape)
{
//
netscape.security.PrivilegeManager.enablePrivilege ('UniversalXPConnect');
var copytext=mytext;
alert("copytext set")
var str = Components.classes["@mozilla.org/supports-string;1"].
createInstance(Components.interfaces.nsISupportsSt ring);
alert("Just tried to set str")
if (!str) return false;
str.data = copytext;
alert("Just set str.data")
var trans = Components.classes["@mozilla.org/widget/transferable;1"].
createInstance(Components.interfaces.nsITransferab le);
if (!trans) return false;
alert("Just set trans")
trans.addDataFlavor("text/unicode");
trans.setTransferData("text/unicode",str,copytext.length * 2);

var clipid = Components.interfaces.nsIClipboard;
var clip =
Components.classes["@mozilla.org/widget/clipboard;1"].getService(clipid);
if (!clip) return false;

clip.setData(trans,null,clipid.kGlobalClipboard);
}
alert("Following info was copied to your clipboard:\n\n" + mytext);
return false
}
================================================== =
"Baconbutty" <ju****@baconbutty.com> wrote in message
news:11*********************@g14g2000cwa.googlegro ups.com...
Sorry, forget my answer. I note you have got this covered in your code
above.

I would like to respectfully disagree with RobG.

I think that Firefox does support clipboard operations (as did
Mozilla), through XPConnect as you note.

Your "if" statements should also discount other browsers, as you
correctly do this by means of a "feature" test.

I would think that your problem lies somewhere in your XPConnect code
stated above. I have not had chance to look closely, but XUL Planet is
a good source of information.

Jul 23 '05 #8
Wayne W wrote:
Thanks.... I'll keep looking.

Please don't top-post. Although that is the default behaviour of
Outlook Express, but it's not the preferred layout of this group.

Here are a couple of links regarding using the clipboard and Mozilla:

<URL:http://www.infogears.com/cgi-bin/infogears/mozilla_firefox_copy_paste.html>

<URL:http://www.mozilla.org/projects/security/components/per-file.html>

Users can allow access to the clipboard on a per-site basis, however it
requires modification of user preferences that are likely beyond the
average web surfer. As a result you should expect that, in a general web
context, clipboard support is not available.

If your usage is for an intranet, and you can control a users' settings,
then maybe you can make it work reliably. This newsgroup is intended to
focus on JavaScript for the web, hence responses tend to bent in that
direction.
Wayne

"Baconbutty" <ju****@baconbutty.com> wrote in message
news:11*********************@g14g2000cwa.googlegro ups.com...
Sorry, forget my answer. I note you have got this covered in your code
above.

I would like to respectfully disagree with RobG.
Yes, I was a bit dismissive. :-x

Mozilla does support the clipboard, but only through specific user
actions to allow access to it. Page authors should not expect clipboard
support to be available, and therefore should probably not attempt to
use it. The links above show how to enable it - I don't think your
average user is going to be able to do it even if you can convince them to.

Support within an intranet may be able to be made more reliable.

I think that Firefox does support clipboard operations (as did
Mozilla), through XPConnect as you note.

Your "if" statements should also discount other browsers, as you
correctly do this by means of a "feature" test.


The feature tests are insufficient - testing for 'window.netscape' does
not ensure that PrivilegeManager.enablePrivilege is supported, or that
the user will allow the privileges to be modified.

That call should be inside a try..catch block in case the user refuses
to change their privileges, or you can let them deal with the message
starting:

"A script from /your_domain/ is requesting enhanced abilities that
are UNSAFE and could be used to compromise your machine or data:"

[...]

--
Rob
Jul 23 '05 #9
Rob;

Thanks for the very educational response.

I'm not sure what "top posting" is nor how to prevent it?

I'll do some more reading and re-think my general approach here. Too bad
because, in my option, saving the user from having to select and the "copy"
seems like a good thing. It is so easy to accomplish for IE.

Oh well

Wayne

"RobG" <rg***@iinet.net.auau> wrote in message
news:kR***************@news.optus.net.au...
Wayne W wrote:
Thanks.... I'll keep looking.


Please don't top-post. Although that is the default behaviour of Outlook
Express, but it's not the preferred layout of this group.

Here are a couple of links regarding using the clipboard and Mozilla:

<URL:http://www.infogears.com/cgi-bin/infogears/mozilla_firefox_copy_paste.html>

<URL:http://www.mozilla.org/projects/security/components/per-file.html>

Users can allow access to the clipboard on a per-site basis, however it
requires modification of user preferences that are likely beyond the
average web surfer. As a result you should expect that, in a general web
context, clipboard support is not available.

If your usage is for an intranet, and you can control a users' settings,
then maybe you can make it work reliably. This newsgroup is intended to
focus on JavaScript for the web, hence responses tend to bent in that
direction.
Wayne

"Baconbutty" <ju****@baconbutty.com> wrote in message
news:11*********************@g14g2000cwa.googlegro ups.com...
Sorry, forget my answer. I note you have got this covered in your code
above.

I would like to respectfully disagree with RobG.
Yes, I was a bit dismissive. :-x

Mozilla does support the clipboard, but only through specific user actions
to allow access to it. Page authors should not expect clipboard support
to be available, and therefore should probably not attempt to use it. The
links above show how to enable it - I don't think your average user is
going to be able to do it even if you can convince them to.

Support within an intranet may be able to be made more reliable.

I think that Firefox does support clipboard operations (as did
Mozilla), through XPConnect as you note.

Your "if" statements should also discount other browsers, as you
correctly do this by means of a "feature" test.


The feature tests are insufficient - testing for 'window.netscape' does
not ensure that PrivilegeManager.enablePrivilege is supported, or that the
user will allow the privileges to be modified.

That call should be inside a try..catch block in case the user refuses to
change their privileges, or you can let them deal with the message
starting:

"A script from /your_domain/ is requesting enhanced abilities that
are UNSAFE and could be used to compromise your machine or data:"

[...]

--
Rob

Jul 23 '05 #10
Wayne W wrote:
[...]
I'm not sure what "top posting" is nor how to prevent it?
a message whith top posting looks like this:

| Because it messes up the flow of reading.
| > How come?
| > > I prefer to reply inline.
| > > > What do you do instead?
| > > > > No.
| > > > > > Do you like top-posting?

IOW, readable like black ink on black paper.
I'll do some more reading and re-think my general approach here. Too bad
because, in my option, saving the user from having to select and the "copy"
seems like a good thing. It is so easy to accomplish for IE.

Oh well

[...]

Inline and bottom posting are the preferred Newsgroup styles.

You can prevent top posting by trimming the quoted text to the essential,
reply inline (just after a section you want to comment on, answer or reply to)
and/or at the end (or bottom) of the quoted (and hopefully now trimmed) text
like I am doing right now.

http://en.wikipedia.org/wiki/Top-posting

Jul 23 '05 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Paxton | last post by:
I created an html email containing a form whose method is POST. The form is posted to an asp page for processing, but no values are retrieved. So I response.write all the Request.Form fields, and...
3
by: milkyway | last post by:
Hello, I am working with an old Java Script code and have found the following but after putting in alerts I have found that insertRow doesn't work. What is the problem? TIA function...
6
by: Cliff R. | last post by:
Hi, I use a handy little Javascript Flash detection script on a number of sites (copied below). Usually works great, but I just started trying Firefox and it's not working. A few browsers are...
3
by: niconedz | last post by:
Hi The following code works fine in IE but not Firefox. It's a little script that zooms an image and resizes the window to fit. Can anybody tell me what's wrong? Thanks Nico == btw.....
4
by: Joe | last post by:
Hello, I have created a login page using dotnet. I am using requiredFieldValidator and noticed that the code works fine in IE but not in Netscape, Opera, Mozilla, Firefox, etc. For example...
4
by: bbp | last post by:
Hello, In an ASPX page I have a "Quit" button which make a simple redirect in code-behind. This button doesn't work no more since (I think) I moved from the framework 1.0 to 1.1 and it doesn't...
21
by: briggs | last post by:
<html> <head> <script> /* AddChild */ function ac() { var c; var p = document.getElementById("p"); for (var i = 0; i < 5; i++) { c = document.createElement("DIV"); // Create 'div' element.
23
by: wylbur37 | last post by:
I'm running an Apache server on my own computer (Windows XP Pro). I wrote a simple PHP script (called test3.php) that I'm running by putting the following URL in the address bar of the browser...
2
bilibytes
by: bilibytes | last post by:
Hi, i have been creating an ajax aplication on my website and it worked as i expected it to work on Safari and Firefox, until i upgraded to Firefox 3. It doesn't work either on windows. the...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.