[b]ANGGA[/b]
kalau saya gak salah yah sob
masih ada satu data lagi yang tertinggal
yaitu JS nya
JS buat tracker itu lhoo sob ..
sebener nya siy yang itu yang dibutuhin
paling an sama CSS n preview nya 
Last edited by [email protected] (2008-08-13 08:59:38)
robbinhood
maklum gue newbie bro maslah tracker
yang bagian ini yach bro...
<">
yang bagian ini yach bro...[/quote]
coba code tadi diganti semuanya sama code ini
<">tapi jangan lupa JS sob di backup dulu 
y4sir
kiddy
lho aku buka file ave Q disini bisa tuh bro
[b]ALL[/b]
ada yang taw cara buat mini/maxi pic viewer ketutu saat pertama dibuka g. . ? ?
hellp. . ! !
[quote=acenosekai]tanya kok fs 1 kolom nya error mua ya[/quote]
yang versi mna ne maksudnya. . ? ?
q pke yang punya bro nopathz mase jalan kuq bro. .
Last edited by LoseMySelf (2008-08-13 09:18:22)
y4sir
kiddy
lho aku buka file ave Q disini bisa tuh bro[/quote]
emang klo loe yng buka bsa coba dweh loe backup smua file loe d notepad kmpi loe ??
abies itu loe logout and login lagi !!!
klo gak bsa brati dah suspend kya wktu ripway w wktu itu !!!
coba loe copy url na n paste d adress bar !!!
bsa gak ??
ALL
ada yang taw cara buat mini/maxi pic viewer ketutu saat pertama dibuka g. . ? ?
hellp. . ! ![/quote]
bisa diperjelas gak sob pertanyaannya ?
sapa tau aja saya bisa bantu 
robbinhood
maklum gue newbie bro maslah tracker
yang bagian ini yach bro...[/quote]
result dong sob ?
gimana sudah bisa blom ?
Last edited by robbinhood (2008-08-13 09:20:59)
[b]odloc[/b]
wew..
ntu sama aja kaiia yang di microsoft..
margin-left="XXpx",,
untuk menentukan margin bgian sebelah kiri..
bgtu juga dengan yang lain...
^_^
[b]LoseMySelf[/b]
cuba pake yang ini..
[spoiler]
/*
Viewer's Main Photo Sidebar
Author: FeRuZZ � http://profiles.friendster.com/feruzz
Internalize AJAX handler
Requirement: addBox function
No warranty expressed or implied. Use at your own risk.
*/
if((pageViewerLangPref !== "en-US") || (window.location.href.indexOf("en-US") === -1)) {
window.location.href = "http://profiles.friendster.com/"+pageOwnerID+"?lang=en-US&updatelang=1";
}
if (!attachOnLoadHandler(function() { SPAWNPIC.init(); })) window.onload = function() { SPAWNPIC.init(); };
if (typeof SPAWNPIC == "undefined" || !SPAWNPIC) { SPAWNPIC = window.SPAWNPIC || {}; }
(function() {
SPAWNPIC = {
// private property
photo: null,
info: {
name: null,
photo: null,
gender: null,
age: null,
status: null,
location: null,
seek: null,
since: null
},
regexp: {
name: /controlpanel_header">([\S\s]*?)<a\s*name="controlpanel/i,
photo: /imgblock200"><a[\S\s]*?>([\S\s]*?)<\/a><\/div>/i,
gender: /q">([\S]*male)/i,
age: /male,\s*([\d]*),/i,
status: /male,\s*[\d]*,\s*([\S\s]*?)<\/span>/i,
location: /Location\:\s*<\/span><a[\S\s]*?>([\S\s]*?)<\/a><\/li>/i,
seek: /Interested\s*In\:\s*<\/span>([\S\s]*?)<\/li>/i,
since: /Member\s*Since\:\s*<\/span>([\S\s]*?)<\/li>/i
},
init: function() {
try {
SPAWNPIC.ajaxRequest("GET", "http://" + location.hostname + "/" + pageViewerID, true, null, SPAWNPIC.viewer, null);
} catch(e) {}
},
viewer: function(mypic) {
if (mypic.replace(/^\s*|\s*$/g, "") === null) {
alert("VMP Error: Unable to parse user details!");
return;
} else if (mypic) {
for (var val in SPAWNPIC.info) {
try {
SPAWNPIC.info[val] = new RegExp(SPAWNPIC.regexp[val]).exec(mypic)[1].replace(/^(\d)$/, "0$1");
} catch(e) {
SPAWNPIC.info[val] = "";
}
}
var status = SPAWNPIC.info.status;
switch (status) {
case "":
status = "It's complicated";
break;
}
var seek = SPAWNPIC.info.seek;
switch (seek) {
case "":
seek = "Just looking around";
break;
}
SPAWNPIC.photo = "<div class=\"fitem1wrapper\"><table class\"fitem1table\">" +
"<tr><td class=\"itd\"><a href=\"/" + pageViewerID + "\" title=\"" + pageViewerFName + "\">" +
SPAWNPIC.info.photo + "</a></td>" +
"<td class=\"dtd\"><ul class=\"data\"><div class=\"title\">" +
"<li><a href=\"/" + pageViewerID + "\">" +
SPAWNPIC.info.name + "</a><br>" +
pageViewerID.replace(/^\s*[\d]*?/gi, "Friendster ID: ") + "<br>" +
SPAWNPIC.info.gender + ", " + SPAWNPIC.info.age + ", " + status + "<br>" +
"Interested In: " + seek + "<br>" +
SPAWNPIC.info.since.replace(/^\s*[\w]*?/gi, "Member Since: ") + "<br>" +
SPAWNPIC.info.location.replace(/^\s*[\S\s]*?/gi, "Location: ") + "</li>" +
"</div></ul></td></tr></table></div>";
[b]addBox("LEFT","<a href=\"#\" onClick=\"show_hide('content_spawnpic'); return false\"><div title=\"header=[hway.. "+pageViewerFName+"] body=[You..??]\">Recent Visitor</div></a>", SPAWNPIC.photo, "spawnpic", "0");
show_hide('content_spawnpic');[/b]
}
},
ajaxRequest: function(type, url, cont, param, func, handlerparam) {
/*
* ajaxRequest function
* version: 2.1
* Copyright: FeRuZZ � http://profiles.friendster.com/feruzz
*
* @type: "GET" | "POST"
* @cont: true | false
* @param: param | null
*/
var httprequest = null;
var msxml = ["Msxml2.XMLHTTP.6.0", "Msxml2.XMLHTTP.3.0", "Msxml2.XMLHTTP", "Microsoft.XMLHTTP"];
for (var x = 0, len = msxml.length; x < len; x++) {
try {
httprequest = window.XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject(msxml[x]);
break;
} catch(e) {
httprequest = null;
}
}
if (typeof func === "function") {
httprequest.onreadystatechange = function() {
if (httprequest.readyState === 4) {
if (httprequest.status === 200) {
func(httprequest.responseText, handlerparam);
}
}
};
}
httprequest.open(type, url, cont);
httprequest.setRequestHeader("ajaxRequest", "true");
httprequest.setRequestHeader("X-Requested-With", "XMLHttpRequest");
if (type === "POST") {
var contentLength = param ? param.length: 0;
httprequest.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
httprequest.setRequestHeader("Content-length", contentLength);
if (httprequest.overrideMimeType) {
httprequest.setRequestHeader("Connection", "close");
}
}
httprequest.send(param);
}
};
})();
[/spoiler]
liad yang di tebelin..
^_^
[b]joewana[/b]
link'a salah om..
Last edited by dj_afran (2008-08-13 09:26:00)
y4sir
bro udah tak coba masih bisa koq bro coba pake url ini [url=http://www.fileave.com/members/edittextfile.asp?path=&file=utama%2Ejs]js saia[/url]
yang ini bisa bro tolong dibantu koq ga jalan napa yah js nya
Last edited by [email protected] (2008-08-13 09:23:04)
y4sir
bro udah tak coba masih bisa koq bro coba pake url ini js saia
yang ini bisa bro tolong dibantu koq ga jalan napa yah js nya[/quote]
tetap gak bsa d buka !!!
[b]odloc[/b]
hehe..
gw juga masi belajar neeh..
tapi sekarang di skul gw lgi belaja FLASH..
hikz..ga bsa nerusin web...
u bisa belajar di [url=http://theftalk.com/t33535-%7BTUTORIAL%7D-Cuap-Cuap-Trik-Membuat-Script-HTML.html]SINI[/url]...
tpai di situ belum lengkap..
gw udah rencana mw buat lagi..
yang lebih lengkap..
tapi buku tutorial yang dari skul gw di pinjem ma nak skul laen..
n' ga di balikin..
hikz....
[b]LoseMySelf[/b]
om..
liad postingan gw di atas yakz..
^_^
[b]joewana[/b]
link'a salah om..
[quote]http://joewana.fileave.com/utama.js[/quote]
Last edited by dj_afran (2008-08-13 09:31:35)