My favorites | Sign in
Project Logo
                
Details: Show all Hide all

Yesterday

  • 39 hours ago
    issue 27 (How to paste in chrome?) reported by im007boy   -   click and paste some text to textarea .thanks
    click and paste some text to textarea .thanks

Last 7 days

  • Dec 26, 2009
    IdeasAndSuggestions (Please post your ideas and suggestions as comments on this p...) Wiki page commented on by m...@gofrwd.com   -   I needed to copy content div's of different sizes. Here's my solution: {{{ <div class="clippable-target" id="clippable-target-1">content</div> <div class="clippable-trigger" id="clippable-trigger-1">Copy<div> <div class="clippable-target" id="clippable-target-2">content</div> <div class="clippable-trigger" id="clippable-trigger-2">Copy<div> ... }}} {{{ // function init() // set the clip text to the innerHTML of the target element targetId = (this).id.replace('trigger','target'); content = $("div#"+targetId).html(); clip.setText( content ); }}} Hope this helps! Mike gofrwd.com
    I needed to copy content div's of different sizes. Here's my solution: {{{ <div class="clippable-target" id="clippable-target-1">content</div> <div class="clippable-trigger" id="clippable-trigger-1">Copy<div> <div class="clippable-target" id="clippable-target-2">content</div> <div class="clippable-trigger" id="clippable-trigger-2">Copy<div> ... }}} {{{ // function init() // set the clip text to the innerHTML of the target element targetId = (this).id.replace('trigger','target'); content = $("div#"+targetId).html(); clip.setText( content ); }}} Hope this helps! Mike gofrwd.com
  • Dec 26, 2009
    IdeasAndSuggestions (Please post your ideas and suggestions as comments on this p...) Wiki page commented on by m...@gofrwd.com   -   I needed to copy content div's of different sizes. Here's my solution: {{{ <div class="clippable-target" id="clippable-target-1">content</div> <div class="clippable-trigger" id="clippable-trigger-1">Copy<div> <div class="clippable-target" id="clippable-target-2">content</div> <div class="clippable-trigger" id="clippable-trigger-2">Copy<div> ... }}} {{{ // function init() // set the clip text to the innerHTML of the target element targetId = (this).id.replace('trigger','target'); content = $("div#"+targetId).html(); clip.setText( content ); }}} Hope this helps! Best, Mike gofrwd.com
    I needed to copy content div's of different sizes. Here's my solution: {{{ <div class="clippable-target" id="clippable-target-1">content</div> <div class="clippable-trigger" id="clippable-trigger-1">Copy<div> <div class="clippable-target" id="clippable-target-2">content</div> <div class="clippable-trigger" id="clippable-trigger-2">Copy<div> ... }}} {{{ // function init() // set the clip text to the innerHTML of the target element targetId = (this).id.replace('trigger','target'); content = $("div#"+targetId).html(); clip.setText( content ); }}} Hope this helps! Best, Mike gofrwd.com
  • Dec 26, 2009
    IdeasAndSuggestions (Please post your ideas and suggestions as comments on this p...) Wiki page commented on by m...@gofrwd.com   -   I needed to copy content div's of different sizes. Here's my solution: <div class="clippable-target" id="clippable-target-1">content</div> <div class="clippable-trigger" id="clippable-trigger-1">Copy<div> <div class="clippable-target" id="clippable-target-2">content</div> <div class="clippable-trigger" id="clippable-trigger-2">Copy<div> ... // function init() // set the clip text to the innerHTML of the target element targetId = (this).id.replace('trigger','target'); content = $("div#"+targetId).html(); clip.setText( content ); Hope this helps! Best, Mike gofrwd.com
    I needed to copy content div's of different sizes. Here's my solution: <div class="clippable-target" id="clippable-target-1">content</div> <div class="clippable-trigger" id="clippable-trigger-1">Copy<div> <div class="clippable-target" id="clippable-target-2">content</div> <div class="clippable-trigger" id="clippable-trigger-2">Copy<div> ... // function init() // set the clip text to the innerHTML of the target element targetId = (this).id.replace('trigger','target'); content = $("div#"+targetId).html(); clip.setText( content ); Hope this helps! Best, Mike gofrwd.com
  • Dec 25, 2009
    Instructions Wiki page commented on by a.bergm...@it-bergmann.de   -   Hi, great work. But I don't understand the sample: The texterea has an event onchange="clip.setText(this.value)". But the text will only be set after the button click... Is there also a way to use something like onchange to set the text?
    Hi, great work. But I don't understand the sample: The texterea has an event onchange="clip.setText(this.value)". But the text will only be set after the button click... Is there also a way to use something like onchange to set the text?

Last 30 days

  • Dec 16, 2009
    Instructions Wiki page commented on by terrylmcdougal   -   I am not a code writer so I could use some help getting the movie into the correct position on this code: {{{ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <html> <head> <title>Zero Clipboard Multiple Test</title> <script type="text/javascript" src="/help/jquery.js"></script> <script type="text/javascript" src="/help/jquery.jwbox.js"></script> <link rel="stylesheet" type="text/css" href="/help/zeroclipboard/ZeroClipboard-test.css" /> <script type="text/javascript" src="/help/zeroclipboard/ZeroClipboard.js"></script> <script language="JavaScript"> var clip = null; function init() { // setup single ZeroClipboard object for all our elements clip = new ZeroClipboard.Client(); clip.setHandCursor( true ); // assign a common mouseover function for all elements using jQuery $('div.multiple').mouseover( function() { // set the clip text to our innerHTML clip.setText( this.innerHTML ); // reposition the movie over our element // or create it if this is the first time if (clip.div) { clip.receiveEvent('mouseover', null); clip.reposition(this); } else clip.glue(this); // gotta force these events due to the Flash movie // moving all around. This insures the CSS effects // are properly updated. clip.receiveEvent('mouseover', null); } ); // add an event handler which fires after text is copied to the clipboard // and change the color of the underlying DOM element clip.addEventListener('complete', function(client, text) { var div = client.domElement; div.style.backgroundColor = '#bff'; } ); } </script> </head> <body onLoad="init()"> <div class="jwbox"><a href="#" title="Click to access HTML code for this listing" style="cursor:help" >HTML</a> <div class="jwbox_hidden"><center>Roll your cursor over the preview box and click to copy the HTML code to your clipboard.</center> <div class="multiple"><code>HTML code goes here.</code></div> </div> </div> </body> </html> }}} Here is the CSS: {{{ #jwbox_background{ display: none; position: fixed; top: 0%; left: 0%; width: 100%; height: 100%; background-color: black; z-index:101; zoom: 1; -moz-opacity: 0.8; opacity:0.80; filter: alpha(opacity = 80); overflow: auto; } .jwbox_hidden{ display: none; position: fixed; padding: 16px 16px 40px 16px; border: 16px solid white; background-color: white; z-index:102; overflow: hidden; background-image:url('/help/zeroclipboard/closelabel.gif'); background-position:bottom left; background-repeat:no-repeat; } .multiple{ float: left; background-color: white; z-index:103; width:800px; height:400px; border:1px solid #ccc; margin:5px; font-size: 10pt; overflow: auto; } .multiple.hover { background-color: #ddd; } }}} [Here is the code testing page:] http://ocf.mcddesign.com/help/zeroclipboard/CopyTest-test.html The only thing that is not working is that the swf in not hovering over the text to be copied. It is below and can be clicked after the click on the box. Also, if the movie will not close after it is placed into the correct position I will need help getting the code for destroying the movie into the script as well. Thanks for your help.
    I am not a code writer so I could use some help getting the movie into the correct position on this code: {{{ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <html> <head> <title>Zero Clipboard Multiple Test</title> <script type="text/javascript" src="/help/jquery.js"></script> <script type="text/javascript" src="/help/jquery.jwbox.js"></script> <link rel="stylesheet" type="text/css" href="/help/zeroclipboard/ZeroClipboard-test.css" /> <script type="text/javascript" src="/help/zeroclipboard/ZeroClipboard.js"></script> <script language="JavaScript"> var clip = null; function init() { // setup single ZeroClipboard object for all our elements clip = new ZeroClipboard.Client(); clip.setHandCursor( true ); // assign a common mouseover function for all elements using jQuery $('div.multiple').mouseover( function() { // set the clip text to our innerHTML clip.setText( this.innerHTML ); // reposition the movie over our element // or create it if this is the first time if (clip.div) { clip.receiveEvent('mouseover', null); clip.reposition(this); } else clip.glue(this); // gotta force these events due to the Flash movie // moving all around. This insures the CSS effects // are properly updated. clip.receiveEvent('mouseover', null); } ); // add an event handler which fires after text is copied to the clipboard // and change the color of the underlying DOM element clip.addEventListener('complete', function(client, text) { var div = client.domElement; div.style.backgroundColor = '#bff'; } ); } </script> </head> <body onLoad="init()"> <div class="jwbox"><a href="#" title="Click to access HTML code for this listing" style="cursor:help" >HTML</a> <div class="jwbox_hidden"><center>Roll your cursor over the preview box and click to copy the HTML code to your clipboard.</center> <div class="multiple"><code>HTML code goes here.</code></div> </div> </div> </body> </html> }}} Here is the CSS: {{{ #jwbox_background{ display: none; position: fixed; top: 0%; left: 0%; width: 100%; height: 100%; background-color: black; z-index:101; zoom: 1; -moz-opacity: 0.8; opacity:0.80; filter: alpha(opacity = 80); overflow: auto; } .jwbox_hidden{ display: none; position: fixed; padding: 16px 16px 40px 16px; border: 16px solid white; background-color: white; z-index:102; overflow: hidden; background-image:url('/help/zeroclipboard/closelabel.gif'); background-position:bottom left; background-repeat:no-repeat; } .multiple{ float: left; background-color: white; z-index:103; width:800px; height:400px; border:1px solid #ccc; margin:5px; font-size: 10pt; overflow: auto; } .multiple.hover { background-color: #ddd; } }}} [Here is the code testing page:] http://ocf.mcddesign.com/help/zeroclipboard/CopyTest-test.html The only thing that is not working is that the swf in not hovering over the text to be copied. It is below and can be clicked after the click on the box. Also, if the movie will not close after it is placed into the correct position I will need help getting the code for destroying the movie into the script as well. Thanks for your help.
  • Dec 16, 2009
    Instructions Wiki page commented on by and...@ordinaryradical.ca   -   I can't get this to work in IE or the new Chrome beta, but the copying is working on FF3.5. I'm running WinXP 64-bit.
    I can't get this to work in IE or the new Chrome beta, but the copying is working on FF3.5. I'm running WinXP 64-bit.
  • Dec 09, 2009
    Instructions Wiki page commented on by jhuckaby   -   @recaffeinated: Yes, there is a link to a demo on the main project page, which does what you want. URL: http://bowser.macminicolo.net/~jhuckaby/zeroclipboard/multiple.html
    @recaffeinated: Yes, there is a link to a demo on the main project page, which does what you want. URL: http://bowser.macminicolo.net/~jhuckaby/zeroclipboard/multiple.html
  • Dec 09, 2009
    Instructions Wiki page commented on by recaffeinated   -   Does anyone have an example using ZeroClipboard on a page with multiple instances? I'm assuming there's an implementation without re-instantiating a new ZeroClipboard object for each item. I've noticed some browsers crash on a large number of instances.
    Does anyone have an example using ZeroClipboard on a page with multiple instances? I'm assuming there's an implementation without re-instantiating a new ZeroClipboard object for each item. I've noticed some browsers crash on a large number of instances.
  • Nov 30, 2009
    Instructions Wiki page commented on by robertrivas   -   Hello and thank you for the script. It is very useful and a powerful thing to have. I have gotten your code to work for every scenario I can think of but I what I'm doing in the end is basically copying the html content within a <div> to the clip board. Unfortunately I do not get the same affect as one would get when you just highlight and copy a html onto an email. When doing a manual copy you bring along the styles with the copy and paste but while using this script you will get the actual code rather than an html entity. Thanks for your help and again, great script.
    Hello and thank you for the script. It is very useful and a powerful thing to have. I have gotten your code to work for every scenario I can think of but I what I'm doing in the end is basically copying the html content within a <div> to the clip board. Unfortunately I do not get the same affect as one would get when you just highlight and copy a html onto an email. When doing a manual copy you bring along the styles with the copy and paste but while using this script you will get the actual code rather than an html entity. Thanks for your help and again, great script.

Earlier this year

  • Nov 28, 2009
    Instructions Wiki page commented on by icex...@vip.qq.com   -   when send glue is not id,it get mistakes in ie6.7. my code {{{ clip.blue($(h1)[0]) //i use JQuery }}} Please give me a help.
    when send glue is not id,it get mistakes in ie6.7. my code {{{ clip.blue($(h1)[0]) //i use JQuery }}} Please give me a help.
  • Nov 26, 2009
    Instructions Wiki page commented on by icex...@vip.qq.com   -   in fact, {{{ $("fieldset legend").each(function{ ``````` `````` var domthis = $(this)[0]; *clip.glue(domthis); }) }}} what's wrong with the glue when i use "each"?
    in fact, {{{ $("fieldset legend").each(function{ ``````` `````` var domthis = $(this)[0]; *clip.glue(domthis); }) }}} what's wrong with the glue when i use "each"?
  • Nov 26, 2009
    Instructions Wiki page commented on by icex...@vip.qq.com   -   {{{ $(function(){ $("fieldset legend").each(function() { var clip = new ZeroClipboard.Client(); var domthis = $(this)[0]; clip.glue(domthis); var txt = $(this).parent().find("textarea").text(); clip.setText(txt); clip.addEventListener('complete', function(client, text) { $("#copied-notice").fadeIn(500, function(){ $(this).fadeOut(500); }); }); }); }); }}} zeroclipboard is really good! my code is ok in Firefox,IE8. but in IE6.7 . It alert a error box."object doesn't support this property or method". I hope you could help me to solve this problem.
    {{{ $(function(){ $("fieldset legend").each(function() { var clip = new ZeroClipboard.Client(); var domthis = $(this)[0]; clip.glue(domthis); var txt = $(this).parent().find("textarea").text(); clip.setText(txt); clip.addEventListener('complete', function(client, text) { $("#copied-notice").fadeIn(500, function(){ $(this).fadeOut(500); }); }); }); }); }}} zeroclipboard is really good! my code is ok in Firefox,IE8. but in IE6.7 . It alert a error box."object doesn't support this property or method". I hope you could help me to solve this problem.
  • Nov 20, 2009
    Instructions Wiki page commented on by marklacas   -   Is it possible to send a click event to the flash object or does it only work when a user clicks? I would like to bind a key to copy. Thanks, -ml
    Is it possible to send a click event to the flash object or does it only work when a user clicks? I would like to bind a key to copy. Thanks, -ml
  • Nov 19, 2009
    Instructions Wiki page commented on by laomingliu   -   I got this to work in Firefox but not Safari in 10.5.8 -- is there anything I can do to make it work in Safari?
    I got this to work in Firefox but not Safari in 10.5.8 -- is there anything I can do to make it work in Safari?
  • Nov 18, 2009
    issue 8 (NO_MODIFICATION_ALLOWED_ERR: DOM Exception 7 in line 120 - Z...) commented on by jeppenm   -   Any chance to get XHTML supported? It really is rather annoying to have to patch this, otherwise excellent software, manually on each release :-)
    Any chance to get XHTML supported? It really is rather annoying to have to patch this, otherwise excellent software, manually on each release :-)
  • Nov 16, 2009
    zeroclipboard-1.0.5.tar.gz (Re-posted v1.0.5 with extraneous test files removed.) file uploaded by jhuckaby   -  
    Labels: Featured
    Labels: Featured
  • Nov 15, 2009
    Instructions Wiki page commented on by jukka.hautakorpi   -   Hello! This is indeed nice script! I'm using it for making large form that has multiple text inputs with dynamic text inside (read only) to copy each inputs separately. Form is generated by php. Is it possible to copy varying content that is generated by ajax ? How should i make the glue to each varying element? Or does this even support copying ajax generated multiple text element copying ?
    Hello! This is indeed nice script! I'm using it for making large form that has multiple text inputs with dynamic text inside (read only) to copy each inputs separately. Form is generated by php. Is it possible to copy varying content that is generated by ajax ? How should i make the glue to each varying element? Or does this even support copying ajax generated multiple text element copying ?
  • Nov 14, 2009
    Instructions Wiki page commented on by jhuckaby   -   Hey everyone. I have been receiving multiple reports that ZC is not working in IE. I cannot reproduce, and would like to have more information (i.e. what Flash version, etc.) to help track down the issue. Here are screenshots of ZC 1.0.5 working in IE6, IE7 and IE8. http://bowser.macminicolo.net/~jhuckaby/zeroclipboard/zeroclipboard-1.0.5-IE6.png http://bowser.macminicolo.net/~jhuckaby/zeroclipboard/zeroclipboard-1.0.5-IE7.png http://bowser.macminicolo.net/~jhuckaby/zeroclipboard/zeroclipboard-1.0.5-IE8.png Thanks! Hey powermikee, regarding movie position: If you are having trouble getting the movie to position itself properly, please consider not using the `glue()` method, but instead just grab the raw HTML for the Flash move using `getHTML()`, and position it yourself wherever you like. Good luck!
    Hey everyone. I have been receiving multiple reports that ZC is not working in IE. I cannot reproduce, and would like to have more information (i.e. what Flash version, etc.) to help track down the issue. Here are screenshots of ZC 1.0.5 working in IE6, IE7 and IE8. http://bowser.macminicolo.net/~jhuckaby/zeroclipboard/zeroclipboard-1.0.5-IE6.png http://bowser.macminicolo.net/~jhuckaby/zeroclipboard/zeroclipboard-1.0.5-IE7.png http://bowser.macminicolo.net/~jhuckaby/zeroclipboard/zeroclipboard-1.0.5-IE8.png Thanks! Hey powermikee, regarding movie position: If you are having trouble getting the movie to position itself properly, please consider not using the `glue()` method, but instead just grab the raw HTML for the Flash move using `getHTML()`, and position it yourself wherever you like. Good luck!
  • Nov 14, 2009
    Instructions Wiki page commented on by powermikee   -   Hi thanks for the great code...i have a few issues and would be very grateful if anyone can help. Its working so far, but i have noticed that it didn't work in any IE browsers is there any reason for that? Also when i use it with a hidden div similar to what you have on your comment input, as you click a div appears. The problem is everything gets position 20px lower but the flash movie stays in the same spot? Can you help. Here's part of the code {{{ <div id="btn_container" style="position:relative;> <input type="submit" value="Copy" class="shorten_btn" id="copy" /></div> <script type="text/javascript" src="ZeroClipboard.js"></script> <script> var val = document.getElementById('textarea').value; var clip = new ZeroClipboard?.Client(); clip.setText( val ); clip.glue( 'copy', 'btn_container' ); </script> }}}
    Hi thanks for the great code...i have a few issues and would be very grateful if anyone can help. Its working so far, but i have noticed that it didn't work in any IE browsers is there any reason for that? Also when i use it with a hidden div similar to what you have on your comment input, as you click a div appears. The problem is everything gets position 20px lower but the flash movie stays in the same spot? Can you help. Here's part of the code {{{ <div id="btn_container" style="position:relative;> <input type="submit" value="Copy" class="shorten_btn" id="copy" /></div> <script type="text/javascript" src="ZeroClipboard.js"></script> <script> var val = document.getElementById('textarea').value; var clip = new ZeroClipboard?.Client(); clip.setText( val ); clip.glue( 'copy', 'btn_container' ); </script> }}}
  • Nov 14, 2009
    Instructions Wiki page commented on by powermikee   -   Hi thanks for the great code...i have a few issues and would be very grateful if anyone can help. Its working so far, but i have noticed that it didn't work in any IE browsers is there any reason for that? Also when i use it with a hidden div similar to what you have on your comment input, as you click a div appears. The problem is everything gets position 20px lower but the flash movie stays in the same spot? Can you help. Here's part of the code {{{ <div id="btn_container" style="position:relative; background: #00FF99"> <input type="submit" value="Copy" onClick="ClipBoard();" class="shorten_btn" id="copy" /></div> <script type="text/javascript" src="ZeroClipboard.js"></script> <script> var val = document.getElementById('textarea').value; var clip = new ZeroClipboard?.Client(); clip.setText( val ); clip.glue( 'copy', 'btn_container' ); </script> }}}
    Hi thanks for the great code...i have a few issues and would be very grateful if anyone can help. Its working so far, but i have noticed that it didn't work in any IE browsers is there any reason for that? Also when i use it with a hidden div similar to what you have on your comment input, as you click a div appears. The problem is everything gets position 20px lower but the flash movie stays in the same spot? Can you help. Here's part of the code {{{ <div id="btn_container" style="position:relative; background: #00FF99"> <input type="submit" value="Copy" onClick="ClipBoard();" class="shorten_btn" id="copy" /></div> <script type="text/javascript" src="ZeroClipboard.js"></script> <script> var val = document.getElementById('textarea').value; var clip = new ZeroClipboard?.Client(); clip.setText( val ); clip.glue( 'copy', 'btn_container' ); </script> }}}
  • Nov 14, 2009
    Instructions Wiki page commented on by powermikee   -   Hi thanks for the great code...i have a few issues and would be very grateful if anyone can help. Its working so far, but i have noticed that it didn't work in any IE browsers is there any reason for that? Also when i use it with a hidden div similar to what you have on your comment input, as you click a div appears. The problem is everything gets position 20px lower but the flash movie stays in the same spot? Can you help. Here's part of the code {{{ <div id="btn_container" style="position:relative; background: #00FF99"> <input type="submit" value="Copy" onClick="ClipBoard();" class="shorten_btn" id="copy" /></div> <script type="text/javascript" src="ZeroClipboard.js"></script> <script> var val = document.getElementById('textarea').value; var clip = new ZeroClipboard?.Client(); clip.setText( val ); clip.glue( 'copy', 'btn_container' ); </script> }}}
    Hi thanks for the great code...i have a few issues and would be very grateful if anyone can help. Its working so far, but i have noticed that it didn't work in any IE browsers is there any reason for that? Also when i use it with a hidden div similar to what you have on your comment input, as you click a div appears. The problem is everything gets position 20px lower but the flash movie stays in the same spot? Can you help. Here's part of the code {{{ <div id="btn_container" style="position:relative; background: #00FF99"> <input type="submit" value="Copy" onClick="ClipBoard();" class="shorten_btn" id="copy" /></div> <script type="text/javascript" src="ZeroClipboard.js"></script> <script> var val = document.getElementById('textarea').value; var clip = new ZeroClipboard?.Client(); clip.setText( val ); clip.glue( 'copy', 'btn_container' ); </script> }}}
  • Nov 14, 2009
    Instructions Wiki page commented on by powermikee   -   Hi thanks for the great code...i have a few issues and would be very grateful if anyone can help. Its working so far, but i have noticed that it didn't work in any IE browsers is there any reason for that? Also when i use it with a hidden div similar to what you have on your comment input, as you click a div appears. The problem is everything gets position 20px lower but the flash movie stays in the same spot? Can you help. Here's part of the code <div id="btn_container" style="position:relative; background: #00FF99"> <input type="submit" value="Copy" onClick="ClipBoard();" class="shorten_btn" id="copy" /></div> <script type="text/javascript" src="ZeroClipboard.js"></script> <script> var val = document.getElementById('textarea').value; var clip = new ZeroClipboard.Client(); clip.setText( val ); clip.glue( 'copy', 'btn_container' ); </script>
    Hi thanks for the great code...i have a few issues and would be very grateful if anyone can help. Its working so far, but i have noticed that it didn't work in any IE browsers is there any reason for that? Also when i use it with a hidden div similar to what you have on your comment input, as you click a div appears. The problem is everything gets position 20px lower but the flash movie stays in the same spot? Can you help. Here's part of the code <div id="btn_container" style="position:relative; background: #00FF99"> <input type="submit" value="Copy" onClick="ClipBoard();" class="shorten_btn" id="copy" /></div> <script type="text/javascript" src="ZeroClipboard.js"></script> <script> var val = document.getElementById('textarea').value; var clip = new ZeroClipboard.Client(); clip.setText( val ); clip.glue( 'copy', 'btn_container' ); </script>
  • Nov 13, 2009
    issue 19 (not working. i try it on IE8 and FF 3.5) commented on by moonrank   -   IE8 not working for me. My Flash version: 10,0,32,18 http://screencast.com/t/ZTZmYjYyN
    IE8 not working for me. My Flash version: 10,0,32,18 http://screencast.com/t/ZTZmYjYyN
  • Nov 13, 2009
    Instructions Wiki page commented on by terrylmcdougal   -   I have a problem perhaps someone here can help with. I am trying to create a Widget delivery system to allow a user to copy the code to their clipboard. I want the window for the widget to show the widget and a click of the window copy the code. I want the window to display in a jw lightbox or similar box. I have development to this stage: http://ocf.mcddesign.com/help/zeroclipboard/CopyTest.html but the movie seems to be in the wrong position. It is below the JW box. Thanks in advance for your help.
    I have a problem perhaps someone here can help with. I am trying to create a Widget delivery system to allow a user to copy the code to their clipboard. I want the window for the widget to show the widget and a click of the window copy the code. I want the window to display in a jw lightbox or similar box. I have development to this stage: http://ocf.mcddesign.com/help/zeroclipboard/CopyTest.html but the movie seems to be in the wrong position. It is below the JW box. Thanks in advance for your help.
  • Nov 13, 2009
    Instructions Wiki page commented on by terrylmcdougal   -   I have a problem perhaps someone here can help with. I am trying to create a Widget delivery system to allow a user to copy the code to their clipboard. I want the window for the widget to show the widget and a click of the window copy the code. I want the window to display in a jw lightbox or similar box. I have development to this stage: http://ocf.mcddesign.com/help/zeroclipboard/CopyTest.html but the movie seems to be in the wrong position. It is below the JW box. The appearance is correct in FF but not in IE, that is a separate issue I could use some help with as well. Thanks in advance for your help.
    I have a problem perhaps someone here can help with. I am trying to create a Widget delivery system to allow a user to copy the code to their clipboard. I want the window for the widget to show the widget and a click of the window copy the code. I want the window to display in a jw lightbox or similar box. I have development to this stage: http://ocf.mcddesign.com/help/zeroclipboard/CopyTest.html but the movie seems to be in the wrong position. It is below the JW box. The appearance is correct in FF but not in IE, that is a separate issue I could use some help with as well. Thanks in advance for your help.
  • Oct 30, 2009
    issue 7 (css overflow interferes with ability to copy) commented on by mrrena   -   Duly noted now in the link above. :)
    Duly noted now in the link above. :)
  • Oct 30, 2009
    issue 21 (getDOMObjectPosition needs to detect position:fixed) commented on by jhuckaby   -   Hey guys, please see ZeroClipboard 1.0.5, which allows you to glue to a relatively positioned parent element. This should allow the system to work in a fixed position DIV.
    Hey guys, please see ZeroClipboard 1.0.5, which allows you to glue to a relatively positioned parent element. This should allow the system to work in a fixed position DIV.
  • Oct 30, 2009
    issue 7 (css overflow interferes with ability to copy) commented on by jhuckaby   -   Hey guys, please see ZeroClipboard 1.0.5, which allows you to glue to a relatively positioned parent element, hopefully resolving this issue.
    Hey guys, please see ZeroClipboard 1.0.5, which allows you to glue to a relatively positioned parent element, hopefully resolving this issue.
  • Oct 30, 2009
    Instructions Wiki page edited by jhuckaby   -   Revision r12 Edited wiki page through web user interface.
    Revision r12 Edited wiki page through web user interface.
  • Oct 30, 2009
    zeroclipboard-1.0.5.tar.gz (Can now glue using parent container elements for exact posit...) file uploaded by jhuckaby   -  
    Labels: Featured
    Labels: Featured
  • Oct 30, 2009
    r11 (now able to glue using relative parent, for exact positionin...) committed by jhuckaby   -   now able to glue using relative parent, for exact positioning
    now able to glue using relative parent, for exact positioning
  • Oct 30, 2009
    issue 24 (Add support for glueing to a specified element and specific ...) commented on by jhuckaby   -   Awesome idea, thanks! I have been trying to figure out the best way to implement a scheme like this, and you nailed it. One enhancement I am going to implement: Instead of having to pass in explicit style overrides for left and top, I'm going to make it so you can just pass a container element, and glue() will be smart enough to detect it while calculating the floater position, and change the coordinates accordingly. So if your parent element is the immediate parent, the offsets will automatically be reset to 0px 0px. Or if the parent element is several elements down the chain, it'll still get the position right. Thanks again!
    Awesome idea, thanks! I have been trying to figure out the best way to implement a scheme like this, and you nailed it. One enhancement I am going to implement: Instead of having to pass in explicit style overrides for left and top, I'm going to make it so you can just pass a container element, and glue() will be smart enough to detect it while calculating the floater position, and change the coordinates accordingly. So if your parent element is the immediate parent, the offsets will automatically be reset to 0px 0px. Or if the parent element is several elements down the chain, it'll still get the position right. Thanks again!
  • Oct 30, 2009
    issue 26 (Flash movie placed in wrong location) commented on by ichaits   -   Hi jhuckaby, Ya, as mentioned by you placing the swf manually above the copy button is always an option. Anyway, I figured out the problem myself. I discarded the above mentioned JS and instead used the JS present in test.html file which comes along with the zeroclipboard tar. That JS is working fine in all browsers. I had just forgotten to call the init(); function when the body loads. Thanks for the help though.. and thanks for this beautiful zeroclipboard JS! :) This issue is resolved.
    Hi jhuckaby, Ya, as mentioned by you placing the swf manually above the copy button is always an option. Anyway, I figured out the problem myself. I discarded the above mentioned JS and instead used the JS present in test.html file which comes along with the zeroclipboard tar. That JS is working fine in all browsers. I had just forgotten to call the init(); function when the body loads. Thanks for the help though.. and thanks for this beautiful zeroclipboard JS! :) This issue is resolved.
  • Oct 30, 2009
    issue 26 (Flash movie placed in wrong location) commented on by jhuckaby   -   Hey ichaits, Thanks for the bug report. Alas, there are many problems with the Flash movie placement in Zero Clipboard. These are being worked on, but in the meantime you can get around this by grabbing the raw Flash SWF HTML yourself by calling {{{var html = clip.getHTML( 100, 30 );}}}, and place it in a DIV yourself. You need to know the width and height of your button beforehand. What I mean is, instead of using the {{{glue()}}} method, you can just grab the HTML needed to instantiate the Flash movie, and float it in a DIV that you know is placed correctly. One way to do this is to wrap your button inside a DIV that has position:relative, then you can float an absolute DIV at 0px 0px and it will line up perfectly with your button. Example: {{{ <div id="wrapper" style="position:relative"> <div id="copy_button">Click to copy</div> <div id="zero_clipboard"> style="position:absolute; left:0px; top:0px; width:100px; height:30px; z-index:99"></div> </div> }}} Then, use {{{clip.getHTML(100, 30)}}} and stuff the result into the "zero_clipboard" DIV. If you have jQuery, then: {{{ $('zero_clipboard').html( clip.getHTML(100, 30) ); }}} I am assuming your button is 30px in height, although this is not specified in your CSS. Change to taste. Good luck.
    Hey ichaits, Thanks for the bug report. Alas, there are many problems with the Flash movie placement in Zero Clipboard. These are being worked on, but in the meantime you can get around this by grabbing the raw Flash SWF HTML yourself by calling {{{var html = clip.getHTML( 100, 30 );}}}, and place it in a DIV yourself. You need to know the width and height of your button beforehand. What I mean is, instead of using the {{{glue()}}} method, you can just grab the HTML needed to instantiate the Flash movie, and float it in a DIV that you know is placed correctly. One way to do this is to wrap your button inside a DIV that has position:relative, then you can float an absolute DIV at 0px 0px and it will line up perfectly with your button. Example: {{{ <div id="wrapper" style="position:relative"> <div id="copy_button">Click to copy</div> <div id="zero_clipboard"> style="position:absolute; left:0px; top:0px; width:100px; height:30px; z-index:99"></div> </div> }}} Then, use {{{clip.getHTML(100, 30)}}} and stuff the result into the "zero_clipboard" DIV. If you have jQuery, then: {{{ $('zero_clipboard').html( clip.getHTML(100, 30) ); }}} I am assuming your button is 30px in height, although this is not specified in your CSS. Change to taste. Good luck.
  • Oct 29, 2009
    Instructions Wiki page commented on by ichaits   -   There seems to be some problem with the flash movie placement. In my case, it's placed much above the copy button whereas it should be placed exactly on the copy button. I'd really appreciate if anyone could have a look at my code and enlighten me: http://code.google.com/p/zeroclipboard/issues/detail?id=26
    There seems to be some problem with the flash movie placement. In my case, it's placed much above the copy button whereas it should be placed exactly on the copy button. I'd really appreciate if anyone could have a look at my code and enlighten me: http://code.google.com/p/zeroclipboard/issues/detail?id=26
  • Oct 29, 2009
    IdeasAndSuggestions (Please post your ideas and suggestions as comments on this p...) Wiki page commented on by david.horat   -   I would love to be able to copy images using this tool. :) PS: Very good work!
    I would love to be able to copy images using this tool. :) PS: Very good work!
  • Oct 28, 2009
    issue 26 (Flash movie placed in wrong location) reported by ichaits   -   I'm using zeroclipboard on a Wordpress self hosted site (http). On a page, there's a textarea and a copy button. When user clicks on the copy button, all the code in textarea will be copied to user's clipboard. The script is working fine in all browsers. What is the expected output? What do you see instead? The only problem is placement of that flash movie in all browsers except firefox. The flash movie is placed much above the copy button whereas it should be placed exactly on the copy button. It's placed perfectly in firefox. What version of the product are you using? On what operating system? zeroclipboard 1.0.4 on Windows 7; Latest versions of all browsers as on today. Please provide any additional information below. My Script: ID of textarea: code_box ID of div button: copy_button <script type="text/javascript" src="ZeroClipboard.js"></script> <script language="JavaScript"> var clip = new ZeroClipboard.Client(); clip.addEventListener( 'mouseDown', function(client) { clip.setText( document.getElementById('code_box').value ); } ); clip.addEventListener( 'complete', function(client, text) { alert("Copied text to clipboard: " + text ); } ); clip.setHandCursor( true ); clip.glue( 'copy_button' ); </script> My CSS: .copy_button { text-align:center; border:1px solid black; padding:10px; width: 100px; float: right; } .copy_button.hover { background-color:#eee; } .copy_button.active { background-color:#aaa; } Please have a look at the attached file. Flash movie should be visible on the Copy button. But in my case, it's visible above the button as shown in the attached image. Any help would be appreciated. :)
    I'm using zeroclipboard on a Wordpress self hosted site (http). On a page, there's a textarea and a copy button. When user clicks on the copy button, all the code in textarea will be copied to user's clipboard. The script is working fine in all browsers. What is the expected output? What do you see instead? The only problem is placement of that flash movie in all browsers except firefox. The flash movie is placed much above the copy button whereas it should be placed exactly on the copy button. It's placed perfectly in firefox. What version of the product are you using? On what operating system? zeroclipboard 1.0.4 on Windows 7; Latest versions of all browsers as on today. Please provide any additional information below. My Script: ID of textarea: code_box ID of div button: copy_button <script type="text/javascript" src="ZeroClipboard.js"></script> <script language="JavaScript"> var clip = new ZeroClipboard.Client(); clip.addEventListener( 'mouseDown', function(client) { clip.setText( document.getElementById('code_box').value ); } ); clip.addEventListener( 'complete', function(client, text) { alert("Copied text to clipboard: " + text ); } ); clip.setHandCursor( true ); clip.glue( 'copy_button' ); </script> My CSS: .copy_button { text-align:center; border:1px solid black; padding:10px; width: 100px; float: right; } .copy_button.hover { background-color:#eee; } .copy_button.active { background-color:#aaa; } Please have a look at the attached file. Flash movie should be visible on the Copy button. But in my case, it's visible above the button as shown in the attached image. Any help would be appreciated. :)
  • Oct 28, 2009
    issue 25 (zeroclipboard Not Working in any browser) Status changed by jhuckaby   -   ZeroClipboard does not work locally. It only works when your browser is pointed at a live site (with a "http:// prefix). However, there is a way to configure your local Flash Player to allow clipboard access from a local page. This is a security restriction by Adobe Flash Player. Unfortunately, since we are utilizing the JavaScript?-to-Flash interface ("ExternalInterface?") this only works while truly online (if the page URL starts with "http:// or "https://" It won't work running from a local file on disk. There is a way for you to edit your local Flash Player security settings and allow this. Go to this website: http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04a.html And add the path to your local "ZeroClipboard?.swf" file to the trusted files list, or try the "allow all" option. This works perfectly for me. Good luck!
    Status: Invalid
    ZeroClipboard does not work locally. It only works when your browser is pointed at a live site (with a "http:// prefix). However, there is a way to configure your local Flash Player to allow clipboard access from a local page. This is a security restriction by Adobe Flash Player. Unfortunately, since we are utilizing the JavaScript?-to-Flash interface ("ExternalInterface?") this only works while truly online (if the page URL starts with "http:// or "https://" It won't work running from a local file on disk. There is a way for you to edit your local Flash Player security settings and allow this. Go to this website: http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04a.html And add the path to your local "ZeroClipboard?.swf" file to the trusted files list, or try the "allow all" option. This works perfectly for me. Good luck!
    Status: Invalid
  • Oct 28, 2009
    issue 25 (zeroclipboard Not Working in any browser) commented on by nkraj.nelapati   -   One thing i noticed is "this.ready" is always false. Is this expected behaviour
    One thing i noticed is "this.ready" is always false. Is this expected behaviour
  • Oct 28, 2009
    issue 25 (zeroclipboard Not Working in any browser) reported by nkraj.nelapati   -   What steps will reproduce the problem? 1. 2. 3. What is the expected output? What do you see instead? I have tested Example "http://bowser.macminicolo.net/~jhuckaby/zeroclipboard/multiple.htm l" locally.It is not working as intended. What version of the product are you using? On what operating system? Windows Server 2003 Satndard Edition Service Pack 2 Please provide any additional information below. Followed below procedure 1.Created virtual directory 2.Placed test html file, ZeroClipboard.js file and ZeroClipboard.swf under root directory 3. Accessed the html through localhost. It didn't work for me. Please help me ASAP. I am running out of time.
    What steps will reproduce the problem? 1. 2. 3. What is the expected output? What do you see instead? I have tested Example "http://bowser.macminicolo.net/~jhuckaby/zeroclipboard/multiple.htm l" locally.It is not working as intended. What version of the product are you using? On what operating system? Windows Server 2003 Satndard Edition Service Pack 2 Please provide any additional information below. Followed below procedure 1.Created virtual directory 2.Placed test html file, ZeroClipboard.js file and ZeroClipboard.swf under root directory 3. Accessed the html through localhost. It didn't work for me. Please help me ASAP. I am running out of time.
  • Oct 22, 2009
    Instructions Wiki page commented on by renardpolaire   -   It seems ZeroClipboard doesn't work in ie8. I have the following error : In french : "Erreur d'exécution Microsoft JScript: Cet objet ne gère pas cette propriété ou cette méthode" I have translated the error to english : "Runtime Error Microsoft JScript: Object does not support this property or method" this is for the following Javascript code. try { document.getElementById("ZeroClipboardMovie_1").SetReturnValue(__flash__toXML(ZeroClipboard.dispatch("1","load",null)) ); } catch (e) { document.getElementById("ZeroClipboardMovie_1").SetReturnValue("<undefined/>"); } The '}' before the catch is highlighted by the debugger. This is very strange. I have version 10.0.22.87 of Flash player installed. It works well in another "real" browser like FF or Chrome.
    It seems ZeroClipboard doesn't work in ie8. I have the following error : In french : "Erreur d'exécution Microsoft JScript: Cet objet ne gère pas cette propriété ou cette méthode" I have translated the error to english : "Runtime Error Microsoft JScript: Object does not support this property or method" this is for the following Javascript code. try { document.getElementById("ZeroClipboardMovie_1").SetReturnValue(__flash__toXML(ZeroClipboard.dispatch("1","load",null)) ); } catch (e) { document.getElementById("ZeroClipboardMovie_1").SetReturnValue("<undefined/>"); } The '}' before the catch is highlighted by the debugger. This is very strange. I have version 10.0.22.87 of Flash player installed. It works well in another "real" browser like FF or Chrome.
  • Oct 21, 2009
    Instructions Wiki page commented on by ibnbasit   -   following is my code, which works fine in firefox and chrome, but giving bug in IE7.. i dont know what im doing wrong, can you please guide me {{{ $("input[name='htmlcode'], input[name='directlink'], input[name='emaillink'], input[name='imgcode']").live('mouseover', function() { clip = new ZeroClipboard.Client(); clip.setHandCursor(true); clip.setText($(this).val()); var width = $(this).width(); var height = $(this).height()+10; var flash_movie = '<div>'+clip.getHTML(width, height)+'</div>'; flash_movie = $(flash_movie).css({ position: 'relative', marginBottom: -height, width: width, height: height, zIndex: 101 }) .click(function() { $(this).next('input').indicator({className: 'copied', wrapTag: 'div', text: 'Copied!', fadeOut: 'slow', display: 'after'}); }) .insertBefore(this); }); }}}
    following is my code, which works fine in firefox and chrome, but giving bug in IE7.. i dont know what im doing wrong, can you please guide me {{{ $("input[name='htmlcode'], input[name='directlink'], input[name='emaillink'], input[name='imgcode']").live('mouseover', function() { clip = new ZeroClipboard.Client(); clip.setHandCursor(true); clip.setText($(this).val()); var width = $(this).width(); var height = $(this).height()+10; var flash_movie = '<div>'+clip.getHTML(width, height)+'</div>'; flash_movie = $(flash_movie).css({ position: 'relative', marginBottom: -height, width: width, height: height, zIndex: 101 }) .click(function() { $(this).next('input').indicator({className: 'copied', wrapTag: 'div', text: 'Copied!', fadeOut: 'slow', display: 'after'}); }) .insertBefore(this); }); }}}
  • Oct 21, 2009
    Instructions Wiki page commented on by ibnbasit   -   following is my code, its working fine in firefox and chrome, but gives error in ie7, its just soo much pain and still have no clue, can you please check it {{{$("input[name='htmlcode'], input[name='directlink'], input[name='emaillink'], input[name='imgcode']").live('mouseover', function() { clip = new ZeroClipboard.Client(); clip.setHandCursor(true); clip.setText($(this).val()); var width = $(this).width(); var height = $(this).height()+10; var flash_movie = '<div>'+clip.getHTML(width, height)+'</div>'; flash_movie = $(flash_movie).css({ position: 'relative', marginBottom: -height, width: width, height: height, zIndex: 101 }) .click(function() { $(this).next('input').indicator({className: 'copied', wrapTag: 'div', text: 'Copied!', fadeOut: 'slow', display: 'after'}); }) .insertBefore(this); }); }}}
    following is my code, its working fine in firefox and chrome, but gives error in ie7, its just soo much pain and still have no clue, can you please check it {{{$("input[name='htmlcode'], input[name='directlink'], input[name='emaillink'], input[name='imgcode']").live('mouseover', function() { clip = new ZeroClipboard.Client(); clip.setHandCursor(true); clip.setText($(this).val()); var width = $(this).width(); var height = $(this).height()+10; var flash_movie = '<div>'+clip.getHTML(width, height)+'</div>'; flash_movie = $(flash_movie).css({ position: 'relative', marginBottom: -height, width: width, height: height, zIndex: 101 }) .click(function() { $(this).next('input').indicator({className: 'copied', wrapTag: 'div', text: 'Copied!', fadeOut: 'slow', display: 'after'}); }) .insertBefore(this); }); }}}
  • Oct 20, 2009
    issue 21 (getDOMObjectPosition needs to detect position:fixed) commented on by umbrae   -   Does obj.style.position == 'fixed' not work?
    Does obj.style.position == 'fixed' not work?
  • Oct 20, 2009
    issue 24 (Add support for glueing to a specified element and specific ...) reported by r...@arc90.com   -   I had a problem where I had a scrolling box with overflow:auto, and the flash movies wouldn't scroll with it. I solved the problem by setting the parent element as position:relative, and then setting the top and left parameters to 0 so that they were positioned correctly. This patch allowed me to do it. It adds two optional parameters to glue(), {{{appendElem}}} and {{{stylesToAdd}}}. appendElem tells glue where to add the flash wrapping div. stylesToAdd overrides styles on the wrapping div. Here's the patch. Hope it helps! {{{ --- /Users/umbrae/Downloads/jQueryCopyToClipboard/_assets/js/ZeroClipboard.js 2009-01-13 19:53:56.000000000 -0500 +++ ZeroClipboard.js 2009-10-20 12:31:04.000000000 -0400 @@ -88,7 +88,7 @@ cssEffects: true, // enable CSS mouse effects on dom container handlers: null, // user event handlers - glue: function(elem) { + glue: function(elem, appendElem, stylesToAdd) { // glue to DOM element // elem can be ID or actual DOM element object this.domElement = ZeroClipboard.$(elem); @@ -112,10 +112,25 @@ style.height = '' + box.height + 'px'; style.zIndex = zIndex; + if(typeof(stylesToAdd) == 'object') + { + for(addedStyle in stylesToAdd) + { + style[addedStyle] = stylesToAdd[addedStyle]; + } + } + + style.borderWidth = '1px'; + style.borderColor = 'red'; + style.borderStyle = 'solid'; // style.backgroundColor = '#f00'; // debug - var body = document.getElementsByTagName('body')[0]; - body.appendChild(this.div); + if(typeof(appendElem) == 'undefined') + { + appendElem = document.getElementsByTagName('body')[0] + } + + appendElem.appendChild(this.div); this.div.innerHTML = this.getHTML( box.width, box.height ); }, }}}
    I had a problem where I had a scrolling box with overflow:auto, and the flash movies wouldn't scroll with it. I solved the problem by setting the parent element as position:relative, and then setting the top and left parameters to 0 so that they were positioned correctly. This patch allowed me to do it. It adds two optional parameters to glue(), {{{appendElem}}} and {{{stylesToAdd}}}. appendElem tells glue where to add the flash wrapping div. stylesToAdd overrides styles on the wrapping div. Here's the patch. Hope it helps! {{{ --- /Users/umbrae/Downloads/jQueryCopyToClipboard/_assets/js/ZeroClipboard.js 2009-01-13 19:53:56.000000000 -0500 +++ ZeroClipboard.js 2009-10-20 12:31:04.000000000 -0400 @@ -88,7 +88,7 @@ cssEffects: true, // enable CSS mouse effects on dom container handlers: null, // user event handlers - glue: function(elem) { + glue: function(elem, appendElem, stylesToAdd) { // glue to DOM element // elem can be ID or actual DOM element object this.domElement = ZeroClipboard.$(elem); @@ -112,10 +112,25 @@ style.height = '' + box.height + 'px'; style.zIndex = zIndex; + if(typeof(stylesToAdd) == 'object') + { + for(addedStyle in stylesToAdd) + { + style[addedStyle] = stylesToAdd[addedStyle]; + } + } + + style.borderWidth = '1px'; + style.borderColor = 'red'; + style.borderStyle = 'solid'; // style.backgroundColor = '#f00'; // debug - var body = document.getElementsByTagName('body')[0]; - body.appendChild(this.div); + if(typeof(appendElem) == 'undefined') + { + appendElem = document.getElementsByTagName('body')[0] + } + + appendElem.appendChild(this.div); this.div.innerHTML = this.getHTML( box.width, box.height ); }, }}}
  • Oct 16, 2009
    issue 23 (Closed window hangs) reported by JoachimB...@gmx.de   -   Hello, I included zeroclipboard in a html-page that is opened as popup window using window.open(...). When I close the window (with the x-button or a button calling window.close()) the window is not closed but hangs for a couple of minutes inoperable until it dissapears. I already tried to call unloadMovie() on the embedded zeroclipboard in the onunload event of the form without success. I'm using Internet Explorer 6.0 SP2 and Shockwave Flash 10. I'm looking forward to your help!
    Hello, I included zeroclipboard in a html-page that is opened as popup window using window.open(...). When I close the window (with the x-button or a button calling window.close()) the window is not closed but hangs for a couple of minutes inoperable until it dissapears. I already tried to call unloadMovie() on the embedded zeroclipboard in the onunload event of the form without success. I'm using Internet Explorer 6.0 SP2 and Shockwave Flash 10. I'm looking forward to your help!
  • Oct 08, 2009
    Instructions Wiki page commented on by nils.laumaille   -   Thanks for your great plugin! One question or suggestion: how to add a tooltip to the glued DOM element? Indeed when you glue the DOM element, the "title" is no more available. Which is not really smart when the button used to copy in clipboard is an image/icon for example. Thanks for your work SliN
    Thanks for your great plugin! One question or suggestion: how to add a tooltip to the glued DOM element? Indeed when you glue the DOM element, the "title" is no more available. Which is not really smart when the button used to copy in clipboard is an image/icon for example. Thanks for your work SliN
  • Oct 08, 2009
    Instructions Wiki page commented on by shangin....@mail.ru   -   Is it works with Chrome 3 ??
    Is it works with Chrome 3 ??
  • Oct 05, 2009
    Instructions Wiki page commented on by paul.selker.1   -   Thanks for some wonderful work here. One really weird bug I had a tremendous amount of trouble resolving had to do with IE7 - and only IE7, 8 was fine - somehow letting the padding-top of a large div (the boundary of which was nowhere near the button div or the swf) push down the swf object below the div it was glued to. So if you moused over below the div, the hover state was activated but no dice otherwise. I don't understand why this would be - perhaps it's just my own ignorance but it may also be a very obscure bug. (I fixed it with some conditional statements that took off the padding-top in IE7 and used margin-top for internal elements...) Anyhow, if you'd like to see the code, shoot me an email at pselker at burnesscommunications dot com.
    Thanks for some wonderful work here. One really weird bug I had a tremendous amount of trouble resolving had to do with IE7 - and only IE7, 8 was fine - somehow letting the padding-top of a large div (the boundary of which was nowhere near the button div or the swf) push down the swf object below the div it was glued to. So if you moused over below the div, the hover state was activated but no dice otherwise. I don't understand why this would be - perhaps it's just my own ignorance but it may also be a very obscure bug. (I fixed it with some conditional statements that took off the padding-top in IE7 and used margin-top for internal elements...) Anyhow, if you'd like to see the code, shoot me an email at pselker at burnesscommunications dot com.
 
Hosted by Google Code