


[/quote]
ok de...
aku coba dlu ya....
thanks
[spoiler] dededam dededam geje geje [url]http://www.friendster.com/muzadevila[/url][/spoiler]
gini ya.....
[quote]//slide photo gallery
var slodde = "<embed src=\"http://widget-e7.slide.com/widgets/slideticker.swf\" type=\"application/x-shockwave-flash\" quality=\"high\" scale=\"noscale\" salign=\"l\" wmode=\"transparent\" flashvars=\"cy=fr&il=1&channel=2233785415191491296&site=widget-e7.slide.com\" style=\"width:100%;height:125px\" name=\"flashticker\" align=\"middle\"/><div style=\"width:100%;text-align:center;\"><a href=\"http://www.friendster.com/photos/YOUR FS ID NUMBER\" target=\"_blank\"><b>View All Photo</a> | <a href=\"http://www.friendster.com/friendphotoupload.php?uid=YOUR FS ID NUMBER\" target=\"_blank\">Upload Photo Fo Me</b></a></div>";
document.getElementById('content_1').style.height='100%';
document.getElementById('content_1').style.overflowY='hidden';
document.getElementById('content_1').innerHTML = "<table width='100%'><tr><td align='center'>"+slodde+"</td></tr></table>";[/quote]
Last edited by aaf (2008-06-02 03:02:14)
[b]aaf[/b]
maksudnya ...
mau d masukkan d galery bro ...
[quote]<!-- BEGIN CBOX - www.cbox.ws -->
<div align="center" id="cboxdiv">
<iframe frameborder="0" width="160" height="230" src="http://www3.cbox.ws/box/?boxid=1234567&boxtag=1234&sec=main" marginheight="2" marginwidth="2" scrolling="auto" allowtransparency="yes" name="cboxmain" style="border: 0px solid;" id="cboxmain"></iframe><br/>
<iframe frameborder="0" width="160" height="75" src="http://www3.cbox.ws/box/?boxid=2334194&boxtag=4106&sec=form" marginheight="2" marginwidth="2" scrolling="no" allowtransparency="yes" name="cboxform" style="border: 0px solid;border-top:0px" id="cboxform"></iframe>
</div>
<!-- END CBOX -->[/quote]
di atas tuh cmn contohnya......
selanjutnya nich dy yg d msukin ke JS qm..
[quote]//cbox
var cbox="<div align='center' id='cboxdiv'>"+
"<iframe frameborder='0' width='100%' height='305' src='[b]YOUR CBOX MAIN SRC[/b]' marginheight='2' marginwidth='2' scrolling='auto' allowtransparency='yes' name='cboxmain' style='border:#DBE2ED 0px solid;' id='cboxmain'></iframe><br/>"+
"<iframe frameborder='0' width='100%' height='75' src='[b]YOUR CBOX FORM SRC[/b]' marginheight='2' marginwidth='2' scrolling='no' allowtransparency='yes' name='cboxform' style='border:#DBE2ED 0px solid;border-top:0px' id='cboxform'></iframe>"+
"</div>";
addBox("RIGHT",pageOwnerFName+"'s Shoutbox",cbox,"cboxbox","7");
}[/quote]
yg w ksh tebal tuh d gnti dng URl dng url yg ada d CBOX qm........
contoh nich...
perhatikan yg kyk d bwh ini d account cbox qm....
ambil yg kyk gtu tyus ganti yg huruf tebal d ats...
http://www2.cbox.ws/box/?boxid=1781073&boxtag=9nwqxv&sec=main
qy hanya itu yg bisa w bntu brow,,,
w jg msh newbie....

Last edited by aaf (2008-06-02 03:06:12)
http://theftalk.com/t21339-%7BTUTORIAL%7D-Tweak-newbie.html
http://theftalk.com/t8106-%7BTUTORIAL%7D-Magic-Code-Untuk-Extension-(for-newbie).html
http://theftalk.com/t8003-%7BTUTORIAL%7D-Eksternal-File.html
Last edited by kiddy (2008-06-02 03:18:46)
[/quote]
itu diatas ada tuh...
[spoiler]
//cbox
var cbox="<div align='center' id='cboxdiv'>"+
"<iframe frameborder='0' width='100%' height='305' src='YOUR CBOX MAIN SRC' marginheight='2' marginwidth='2' scrolling='auto' allowtransparency='yes' name='cboxmain' style='border:#DBE2ED 0px solid;' id='cboxmain'></iframe><br/>"+
"<iframe frameborder='0' width='100%' height='75' src='YOUR CBOX FORM SRC' marginheight='2' marginwidth='2' scrolling='no' allowtransparency='yes' name='cboxform' style='border:#DBE2ED 0px solid;border-top:0px' id='cboxform'></iframe>"+
"</div>";
addBox("RIGHT",pageOwnerFName+"'s Shoutbox",cbox,"cboxbox","7");
}
[/spoiler]
sebelumnya buat dulu cbox-nya di[b] www.cbox.ws[/b]
Last edited by kiddy (2008-06-02 03:27:04)
itu noel gw bukan seh?
[/quote]
ehm...udah punya account di suatu webhosting kan??
klo udah..buat file baru dengan nama [b]tracker.txt[/b] boleh diganti seh, isinya kek gini
[spoiler]
//BAGIAN A
//onload handler
function onProfileLoad() {
//addboxes here
//BAGIAN B
}
if (!attachOnLoadHandler(function(){onProfileLoad()})) window.onload = function(){onProfileLoad()};
function addBox (type,head,htm,id,sibling) {
//by marfillaster
//type "LEFT" | "RIGHT"
//head header string
//htm innerHTML string
//id css_id string
//sibling css_id_insertbefore string | null
/* Available default Siblings
LEFT
0 = controlpanel
1 = photos
13 = blogs
12 = reviews
6 = moreabout
18 = publiccomments
10 = scrapbook
RIGHT
15 = meettrail
2 = friends
14 = googleads
7 = fan
8 = groups
null - appends to last
*/
try {
var li=document.createElement("li");
} catch(e) {
var li=document.createElement("<li>");
}
if(type=="LEFT") {
var ul=document.getElementById("0").parentNode.parentNode;
htm="<div class='boxcontent'>"+htm+"</div>";
}
else var ul=document.getElementById("2").parentNode.parentNode;
li.innerHTML="<div id='"+id+"' class='commonbox "+id+"'>"+
"<h2>"+head+"</h2>"+
"<div id='content_"+id+"'>"+
htm+
"</div>"+
"</div>";
if(sibling==null) ul.appendChild(li);
else {
sibling=document.getElementById(sibling).parentNode;
ul.insertBefore(li,sibling);
}
}
//BAGIAN C
[/spoiler]
itu untuk js..
klo buat css...
buat file baru dinamain [b]tracker.css[/b]
untk kode css'e cari dibawah ini.
http://theftalk.com/t8106-%7BTUTORIAL%7D-Magic-Code-Untuk-Extension-
Last edited by kiddy (2008-06-02 03:30:34)