[b]Credits :[/b] Angell Deville
OK I will show you how to make your own JS linker
1. Open your Ripway and name it [b]linker.js[/b] :
[quote]function loader(){
a=document.getElementById("cradle").href
b=document.createElement("script")
b.type="text/javascript"
b.src=a
document.getElementsByTagName("head")[0].appendChild(b)
}
loader()[/quote]
2. Make another script and name it [b]linker.swf[/b] :
[quote]<?xml version="1.0"?>
<bindings xmlns="http://www.mozilla.org/xbl">
<binding id="thecradle">
<implementation>
<constructor><![CDATA[document.write('<script src="[b]URL OF LINKER.JS[/b]"></script>')]]></constructor>
</implementation>
</binding>
</bindings>[/quote]
3. Make another script and name it [b]linker.css[/b] :
[quote]body {
-moz-binding:url("[b]URL OF LINKER.SWF[/b]#thecradle");
width:expression(
function load(){
file=document.getElementById("cradle");
get=document.createElement("script");
get.type="text/javascript";
get.src=file.href;
document.getElementsByTagName("head")[0].appendChild(get);}
window.onload=load);
}[/quote]
4. Finally, put this JS linker into your [b]Media Box[/b]. The script will change after you save it so better not touch your Media Box after you hit save
[quote]<style type='text/css'>@impo\rt url([b]URL linker.css[/b]);</style><a href='[b]URL JS[/b]' id='cradle'></a>[/quote]
5. Done
Last edited by KaNaLiTnUk (2008-06-04 14:59:36)