sands2
Forum Replies Created
-
Forum: Plugins
In reply to: Does Each New WordPress Version Kill Custom Plug-Ins?Thank you samboll!
Does each new version of WordPress render custom codes useless?
Forum: Plugins
In reply to: Does any know how to implement Java Script for a Page or PostOtto,
Where in this Javas Script should I put the html code pointing to the whwr I have the flash player?
<script type=”text/javascript”><!–
function copy(text2copy) {
if (window.clipboardData) {
window.clipboardData.setData(“Text”,text2copy);
} else {
var flashcopier = ‘flashcopier’;
if(!document.getElementById(flashcopier)) {
var divholder = document.createElement(‘div’);
divholder.id = flashcopier;
document.body.appendChild(divholder);
}
document.getElementById(flashcopier).innerHTML = ”;
var divinfo = ‘<span class=”mceItemEmbed” src=”_clipboard.swf” mce_src=”_clipboard.swf” FlashVars=”clipboard=’+escape(text2copy)+'” width=”0″ height=”0″ type=”application/x-shockwave-flash”></span>’;
document.getElementById(flashcopier).innerHTML = divinfo;
}
}
// –></script>Forum: Plugins
In reply to: Does any know how to implement Java Script for a Page or PostTHank you Otto.
And Which Directory Holds the Posts and Pages?
I need to put a Flash PLayer in the same directory as the Java.
Forum: Plugins
In reply to: Does any know how to implement Java Script for a Page or PostHi
I use a copy to clipboard Java script that uses a flash player.
You know the kind: “Click the button to copy the text to your Clipboard”.
I just don’t know where to drop the java script and the needed flash player.
I don’t even know here the posts reside! Which directory holds them?
Thank you.