[quote=Refresh/Reload]hmmm... coz it's like this...
If you're going to use this..(not own hosted)
<style type='text/css'>@impo\rt url(http://h1.ripway.com/thecradle/css.css);</style><a href='JS URL HERE' id='cradle'></a>
you have to use the bolded parts below to call the scripts url
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=cradle.href;
document.getElementById("navBg").appendChild(get);
cradle.href="#";
}
window.onload=load);
}
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...
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=PUT YOUR JS EXTENSION URL HERE;
document.getElementById("navBg").appendChild(get);
}
window.onload=load);
}
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...
<?xml version="1.0"?>
<bindings xmlns="http://www.mozilla.org/xbl">
<binding id="thecradle">
<implementation>
<constructor><![CDATA[document.write('<script src=PUT YOUR JS EXTENSION URL HERE></script>')]]></constructor>
</implementation>
</binding>
</bindings>
so now you can remove this part on your linker code
<a href='JS URL HERE' id='cradle'></a>
and just use the import style replacing thecradle css to your own hosted css.css
<style type='text/css'>@impo\rt url(PUT YOUR OWN HOSTED css.css HERE);</style>
so for me... it is really much better to host your own linker
coz it is more direct...
[/quote]
haha.. ur ryt.. it is more convenient.. but for newbies, hosting their own linker is another task.. and im a lazy one so i used my own linker.. haha..