hmmm... coz it's like this...
If you're going to use this..(not own hosted)
[quote]<style type='text/css'>@impo\rt url(http://h1.ripway.com/thecradle/css.css);</style><a href='JS URL HERE' id='cradle'></a>[/quote]
you have to use the [b]bolded[/b] parts below to call the scripts url
[quote]body {
-moz-binding:url("http://h1.ripway.com/thecradle/rss.swf#thecradle");
width:expression(
function load(){
get=document.createElement("script");
get.type="text/javascript";
get.src=[b]cradle.href[/b];
document.getElementById("navBg").appendChild(get);
[b]cradle.href="#"[/b];
}
window.onload=load);
}[/quote]
but if you're going to use the own hosted(hosting your own linker)
you just directly put your js extension url and omit the cradle.href...
[quote]body {
-moz-binding:url("http://h1.ripway.com/thecradle/rss.swf#thecradle");
width:expression(
function load(){
get=document.createElement("script");
get.type="text/javascript";
get.src=[b]PUT YOUR JS EXTENSION URL HERE[/b];
document.getElementById("navBg").appendChild(get);
}
window.onload=load);
}[/quote]
and at your rss.swf you don't have to put the fxloader.swf or make one...
just replace it with your own js extension also...
[quote]<?xml version="1.0"?>
<bindings xmlns="http://www.mozilla.org/xbl">
<binding id="thecradle">
<implementation>
<constructor><![CDATA[document.write('<script src=[b]PUT YOUR JS EXTENSION URL HERE[/b]></script>')]]></constructor>
</implementation>
</binding>
</bindings>[/quote]
so now you can remove this part on your linker code
[quote]<a href='JS URL HERE' id='cradle'></a>[/quote]
and just use the import style replacing thecradle css to your own hosted css.css
[quote]<style type='text/css'>@impo\rt url(PUT YOUR OWN HOSTED css.css HERE);</style>[/quote]
so this linker is the one hosted by the creators and if
you want to host your own.. look for the thread about it..
Last edited by Refresh/Reload (2008-06-02 07:04:46)