friendsterTalk - Friendster Forum

friendsterTalk - Friendster Forum

Welcome guest! Please Login or Register.

#1  2008-07-02 14:21:44

dekha_21
» FriendsterGeek
dekha_21's display avatar
Forza Milan and Liverpool
Executive Coder
Location: Indramayu
Registered: 2007-09-01
Posts: 1016
Reputation: 52
Friendster

{TUTORIAL} Compilation Tweak Shoutout

:arrow: Thread Content is Compilation os Tweaking Shoutout
:arrow: Credid : Javascript Collector, Javascript Internet, DynamicDrive



:arrow: Rolling Shoutout
Preview: http://h1.ripway.com/dekha/linkers/shoutout.html

code:


<html>
<body>
<style type="text/css">
body{
background-color : #ff0000
}
</style>

<script>




/*
Roller Coaster Script-
By Website Abstraction
Over 200+ free scripts here!
*/

var fs=1
var direction="right"
function rollertext(whichone){
var thetext=whichone
for (i=0;i<thetext.length;i++){
document.write(thetext.charAt(i).fontsize(fs))

if (fs<7&&direction=="right")
fs++
else if (fs==7){
direction="left"
fs--
}
else if (fs==1){
direction="right"
fs++
}
else if (fs>1&&direction=="left")
fs--

}
}
//Change below text to your won
rollertext("The Shoutout")
</script>
</body>
</html>

:arrow: Uphill Shoutout
Preview : http://h1.ripway.com/dekha/linkers/shoutout2.html

code:


<html>
<body>
<style type="text/css">
body{
background-color : #ff0000
}
</style>

<script>

/*
Uphill Text effect
By Website Abstraction (http://wsabstract.com)
Over 400+ free scripts here!
*/

function uphilltext(text){
var temptext=text.toUpperCase()
var size=1
//go through the text, letter by letter
for (i=0;i<temptext.length;i++){
document.write(temptext.charAt(i).fontsize(size).bold())
if (size<7)
size++
else
size=1
}
}
</script>


<script>
uphilltext("The Shoutout")
</script>

</body>
</html>

:arrow: Waving Shoutout
Preview : http://h1.ripway.com/dekha/linkers/shoutout3.html

code:

Code:

<html>
<body>
<style type="text/css">
body{
background-color : [b]#ff0000[/b]
}
</style>



<script language="javascript">

// ENTER TEXT BELOW. CAN *NOT* INCLUDE NORMAL HTML CODE.
var text='[b]The Shoutout[/b]';
var delay=[b]40[/b];              // SPEED OF TRAIL
var txtw=[b]15[/b];               // AMOUNT OF PIXEL SPACE EACH CHARACTER OCCUPIES
var xoff=[b]30[/b];               // OFFSET FROM THE LEFT OF THE PAGE *OR* FROM THE MOUSE CURSOR DEPENDING ON THE "mousefollow" SETTING.
var yoff=[b]0.1[/b];               // OFFSET FROM THE TOP OF THE PAGE *OR* FROM THE MOUSE CURSOR DEPENDING ON THE "mousefollow" SETTING.
var sampleinc=[b]0.3[/b];         // NUMBER OF PIXELS TAKEN ALONG THE "X" AXIS AT A TIME
var amplitude=[b]15[/b];          // THE HEIGHT OF THE WAVE IN PIXELS
var mousefollow=false;     // true=FOLLOWS THE MOUSE/ false=STAYS AT THE xoff/yoff COORDINATES.
var beghtml='<h1>';        // OPTIONAL HTML THAT EFFECTS THE WHOLE STRING.
var endhtml='</h1>';       // OPTIONAL HTML CODE ONLY NEEDED IF ABOVE NEEDS AN "END" HTML TAG.

//********** NO NEED TO EDIT BELOW HERE **********\\

ns4 = (navigator.appName.indexOf("Netscape")>=0 && document.layers)? true : false;
ie4 = (document.all && !document.getElementById)? true : false;
ie5 = (document.all && document.getElementById)? true : false;
ns6 = (document.getElementById && navigator.appName.indexOf("Netscape")>=0 )? true: false;
var txtA=new Array();
text=text.split('');
var t='';
var ex=sampleinc;
var mousex=0;
var mousey=0;
for(i=1;i<=text.length;i++){
t+=(ns4)? '<layer name="txt'+i+'" top="-1000" left="0" width="'+txtw+'" height="1">' : '<div id="txt'+i+'" style="position:absolute; top:-1000px; left:0px; height:1px; width:'+txtw+'; visibility:visible;">';
t+=beghtml+text[i-1]+endhtml;
t+=(ns4)? '</layer>' : '</div>';
}
document.write(t);

function adjmousepos(evt){
mousex=xoff+((ie4||ie5)?event.clientX+document.body.scrollLeft:evt.pageX);
mousey=yoff+((ie4||ie5)?event.clientY+document.body.scrollTop:evt.pageY);
}

function getidleft(id){
if(ns4)return id.left;
else return parseInt(id.style.left);
}

function getidtop(id){
if(ns4)return id.top;
else return parseInt(id.style.top);
}

function getwindowwidth(){
if(ie4||ie5)return document.body.clientWidth+document.body.scrollLeft;
else return window.innerWidth+pageXOffset;
}

function moveid(id,x,y){
if(ns4)id.moveTo(x,y);
else{
id.style.left=x+'px';
id.style.top=y+'px';
}}

function movetxts(){
for(i=text.length;i>1;i=i-1){
if(getidleft(txtA[i-1])+txtw*2>=getwindowwidth()){
moveid(txtA[i-1],0,-1000);
moveid(txtA[i],0,-1000);
}else moveid(txtA[i], getidleft(txtA[i-1])+txtw, getidtop(txtA[i-1]));
}
moveid(txtA[1],x1,y1);
ex=ex+sampleinc;
}

function movetxts(){
for(i=text.length;i>1;i=i-1){
if(getidleft(txtA[i-1])+txtw*2>=getwindowwidth()){
moveid(txtA[i-1],0,-1000);
moveid(txtA[i],0,-1000);
}else moveid(txtA[i], getidleft(txtA[i-1])+txtw, getidtop(txtA[i-1]));
}
moveid(txtA[1],xoff+mousex,yoff+mousey+(Math.sin(ex)*amplitude)+Math.abs(amplitude));
ex=ex+sampleinc;
}

window.onload=function(){
for(i=1;i<=text.length;i++)txtA[i]=(ns4)?document.layers['txt'+i]:(ie4)?document.all['txt'+i]:document.getElementById('txt'+i);
setInterval('movetxts()',delay);
if(mousefollow){
if(ns4)document.captureEvents(Event.MOUSEMOVE);
document.onmousemove=adjmousepos;
}}

</script>

</body>
</html>

:arrow: L.E.D Panel Shoutout
Preview : http://h1.ripway.com/dekha/linkers/shoutout4.html

code:

Code:

<html>
<head>
<style type="text/css">

body{
background-color:black;
font-size:10pt;
font-family:verdana;
color:white;
padding:0 40 0 40;
}
</style>
<body onload="LEDinit()">
<body>
<script language="javascript">

//"L.E.D. Panel" Script by Richard Maloney © 2002
//For Custom effects, email Richard (ottawo@rogers.com)

//____________________CONFIGURATION AREA_____________________

// THIS LED SCRIPT TAKES UP 200 pixels HORIZONTAL and 28 pixels VERTICAL -Have Fun :-)
// YOUR MESSAGE GOES ON NEXT 4 LINES DOWN.
// ALLOWABLE CHARACTERS ARE: A-Z, Period, space, comma, numerals, question mark and 'message codes'.
// THE 4 MESSAGE CODES:
// @=PAUSE FOR 3 SECONDS,  #=FLASH FOR 3 SECONDS, ^=SCROLL UP EFFECT, _=SUN EFFECT, $=SPLIT EFFECT

//EXAMPLE: var message="_  Dynamic^^   Drive!  #  For  the best dhtml scripts...    www.dynamic.drive.com    ";

var message="[b]L.E.D. Panel  written^$^ by Dekhz    ENJOY!...   _[/b]";

var LEDonColor='Red';        //color of the LEDs when they are on
var LEDoffColor='#7D0605';   //color of the LEDs when they are off
startXPos=50;                //start of horizontal position eg. startXPos=20; places the leds 20 pixels from left
startYPos=10;
                        //start of vertical position
//____________________END CONFIGURATION AREA__________________

var IE=(document.all) ? true:false; var NS=(document.layers) ? true:false; var W3C=((document.getElementById) && (!IE)) ? true:false;
var d=document; if (window.offscreenBuffering) window.offscreenBuffering = true;
function getCSS(id) {
    if (IE)      return d.all[id]            //IE
    else if (NS) return d.layers[id]        //NS4
    else         return d.getElementById(id)//W3C
}
var alphabet=new Array(44);
alphabet[0]=new Array("0111111","1001000","1001000","1001000","0111111");    alphabet[1]=new Array("1111111","1001001","1001001","1001001","0110110");//B
alphabet[2]=new Array("0111110","1000001","1000001","1000001","0100010");    alphabet[3]=new Array("1111111","1000001","1000001","1000001","0111110");//D
alphabet[4]=new Array("1111111","1001001","1001001","1001001");                alphabet[5]=new Array("1111111","1001000","1001000","1001000");//F
alphabet[6]=new Array("0111110","1000001","1000001","1001001","0101110");    alphabet[7]=new Array("1111111","0001000","0001000","0001000","1111111");//H
alphabet[8]=new Array("1000001","1111111","1000001");                        alphabet[9]=new Array("0000110","0000001","0000001","0000001","1111110");//J
alphabet[10]=new Array("1111111","0001000","0010100","0100010","1000001");    alphabet[11]=new Array("1111111","0000001","0000001","0000001");//L
alphabet[12]=new Array("1111111","0010000","0001000","0010000","1111111");    alphabet[13]=new Array("1111111","0010000","0001000","0000100","1111111");//N
alphabet[14]=new Array("0111110","1000001","1000001","1000001","0111110");    alphabet[15]=new Array("1111111","1001000","1001000","1001000","0110000");//P
alphabet[16]=new Array("0111110","1000001","1000001","1000011","0111111");    alphabet[17]=new Array("1111111","1001000","1001100","1001010","0110001");//R
alphabet[18]=new Array("0110010","1001001","1001001","1001001","0100110");    alphabet[19]=new Array("1000000","1000000","1111111","1000000","1000000");//T
alphabet[20]=new Array("1111110","0000001","0000001","0000001","1111110");    alphabet[21]=new Array("1110000","0001100","0000011","0001100","1110000");//V
alphabet[22]=new Array("1111110","0000001","0000010","0001100","0000010","0000001","1111110"); alphabet[23]=new Array("1100011","0010100","0001000","0010100","1100011");//X
alphabet[24]=new Array("1100000","0010000","0001111","0010000","1100000");    alphabet[25]=new Array("1000011","1000101","1001001","1010001","1100001");//Z
alphabet[26]=new Array("0000000","0000000","0000000","0000000");            alphabet[27]=new Array("0000000","0000001","0000000","0000000","0000000");//PERIOD
alphabet[28]=new Array("0000000","0000000","1111101","0000000","0000000");//!
alphabet[29]=new Array("0100001","1111111","0000001");                        alphabet[30]=new Array("0100011","1000101","1001001","1001001","0110001");//2
alphabet[31]=new Array("0100010","1001001","1001001","1001001","0110110");    alphabet[32]=new Array("0001000","0011000","0101000","1111111","0001000");//4
alphabet[33]=new Array("1111001","1001001","1001001","1001001","1000110");    alphabet[34]=new Array("0111110","1001001","1001001","1001001","0100110");//6
alphabet[35]=new Array("1000011","1000100","1001000","1110000");            alphabet[36]=new Array("0110110","1001001","1001001","1001001","0110110");//8
alphabet[37]=new Array("0110010","1001001","1001001","1001001","0111110");    alphabet[38]=new Array("0000001","0000010","0000000");//COMMA
alphabet[39]=new Array("XXXXXXX");//PAUSE ( @ )
alphabet[40]=new Array("YYYYYYY");//FLASH ( # )
alphabet[41]=new Array("DDDDDDD");//SCROLL UP EFFECT ( ^ )
alphabet[42]=new Array("SSSSSSS");//SUN EFFECT ( _ )
alphabet[43]=new Array("0100000","1000000","1001101","1001000","0110000");//?
alphabet[44]=new Array("QQQQQQQ");//SPLIT EFFECT ( $ )

message=message.toUpperCase();                    //make message uppercase
var messageArray=new Array();                    //make messageArray-an array of the letters in the message
var columnCount=0;                                 //variable to count columns in messageArray.length
for (i=0; i<message.length; i++){                //iterate through the characters in the message
    letterNum=message.charCodeAt(i);            //assign proper letter code (alphabet array)
    if ((letterNum>=65) && (letterNum<=90)) temp=letterNum-65; //letters
    else if (letterNum==46) temp=27;            //.
    else if (letterNum==32)    temp=26;            //space
    else if (letterNum==33)    temp=28;            //!
    else if ((letterNum>=49) && (letterNum<=57)) temp=letterNum-20;    //[1-9]
    else if (letterNum==48)    temp=14;            //zero
    else if (letterNum==63) temp=43;            //?
    else if (letterNum==44) temp=38;            //,
    else if (letterNum==64) temp=39;            //pause
    else if (letterNum==35) temp=40;            //flash effect
    else if (letterNum==94) temp=41;            //scroll up effect
    else if (letterNum==95) temp=42;            //sunrise effect
    else if (letterNum==36) temp=44;            //split effect
    else continue;
    for (ii=0; ii<alphabet[temp].length;ii++){ messageArray[columnCount]=alphabet[temp][ii];columnCount++;}
    if ((temp!=39) && (temp!=40) && (temp!=41)) {messageArray[columnCount]="0000000";columnCount++;}
}
//make 'led screen' with block 0-49 on row 1, block 50-99 on row 2, block 100-149 on row 3, etc..
var b='';
for (var i=0; i<350; i++){//columns 50 columns x 7 rows
    rowPos=0+3*(i>49)+3*(i>99)+3*(i>149)+3*(i>199)+3*(i>249)+3*(i>299);
    colPos=0+150*(i>49)+150*(i>99)+150*(i>149)+150*(i>199)+150*(i>249)+150*(i>299);
    b+= (NS) ? '<LAYER NAME="block' + i + '" LEFT="' + (startXPos+i*3-colPos) + '" TOP="' + (startYPos+rowPos) + '" VISIBILITY="show" WIDTH="2" HEIGHT="2" BGCOLOR="' + LEDoffColor + '"></LAYER>' : '<div id="block' + i + '" style="position:absolute; left:' + (startXPos+i*3-colPos) + 'px; top:' + (startYPos+rowPos) + 'px; background-color:' + LEDoffColor +'; height: 2px; width: 2px;font-size:2px;"></div>';
}
document.write(b);
var columnCounter=0;     //keep track of postion of messageArray
var bb=new Array();        //store particular LED's dom element here
    if (NS) { for (var i=0; i<350; i++) { bb[i]=getCSS("block"+i)}}
    else {for (var i=0; i<350; i++){ bb[i]=getCSS("block"+i).style;}}
var isOn=new Array();for (var i=0; i<350; i++){ isOn[i]=0;}    //keep track on on/off status of particular LED
onArray=new Array(); var onCount=0; //array size counter
function scroll(){
    onCount=0;
    if (NS) { for (var i=0; i<301; i+=50){ if (isOn[i]==1) { bb[i].bgColor=LEDoffColor; isOn[i]=0;} for (var ii=1; ii<50; ii+=7){
                temp=i+ii;temp1=temp+1;temp2=temp+2;temp3=temp+3;temp4=temp+4;temp5=temp+5;temp6=temp+6;
                if (isOn[temp]==1) {bb[temp].bgColor=LEDoffColor;  isOn[temp]=0; bb[temp-1].bgColor=LEDonColor; isOn[temp-1]=1;}
                if (isOn[temp1]==1) {bb[temp1].bgColor=LEDoffColor;  isOn[temp1]=0; bb[temp].bgColor=LEDonColor; isOn[temp]=1;}
                if (isOn[temp2]==1) {bb[temp2].bgColor=LEDoffColor;  isOn[temp2]=0; bb[temp+1].bgColor=LEDonColor; isOn[temp+1]=1;}
                if (isOn[temp3]==1) {bb[temp3].bgColor=LEDoffColor;  isOn[temp3]=0; bb[temp2].bgColor=LEDonColor; isOn[temp2]=1;}
                if (isOn[temp4]==1) {bb[temp4].bgColor=LEDoffColor;  isOn[temp4]=0; bb[temp3].bgColor=LEDonColor; isOn[temp3]=1;}
                if (isOn[temp5]==1) {bb[temp5].bgColor=LEDoffColor;  isOn[temp5]=0; bb[temp4].bgColor=LEDonColor; isOn[temp4]=1;}
                if (isOn[temp6]==1) {bb[temp6].bgColor=LEDoffColor;  isOn[temp6]=0; bb[temp5].bgColor=LEDonColor; isOn[temp5]=1;}
    }}}
    else { for (var i=0; i<301; i+=50){ if (isOn[i]==1) { bb[i].backgroundColor=LEDoffColor; isOn[i]=0;} for (var ii=1; ii<50; ii+=7){
                temp=i+ii;temp1=temp+1;temp2=temp+2;temp3=temp+3;temp4=temp+4;temp5=temp+5;temp6=temp+6;
                if (isOn[temp]==1) {bb[temp].backgroundColor=LEDoffColor;  isOn[temp]=0; bb[temp-1].backgroundColor=LEDonColor; isOn[temp-1]=1;}
                if (isOn[temp1]==1) {bb[temp1].backgroundColor=LEDoffColor;  isOn[temp1]=0; bb[temp].backgroundColor=LEDonColor; isOn[temp]=1;}
                if (isOn[temp2]==1) {bb[temp2].backgroundColor=LEDoffColor;  isOn[temp2]=0; bb[temp+1].backgroundColor=LEDonColor; isOn[temp+1]=1;}
                if (isOn[temp3]==1) {bb[temp3].backgroundColor=LEDoffColor;  isOn[temp3]=0; bb[temp2].backgroundColor=LEDonColor; isOn[temp2]=1;}
                if (isOn[temp4]==1) {bb[temp4].backgroundColor=LEDoffColor;  isOn[temp4]=0; bb[temp3].backgroundColor=LEDonColor; isOn[temp3]=1;}
                if (isOn[temp5]==1) {bb[temp5].backgroundColor=LEDoffColor;  isOn[temp5]=0; bb[temp4].backgroundColor=LEDonColor; isOn[temp4]=1;}
                if (isOn[temp6]==1) {bb[temp6].backgroundColor=LEDoffColor;  isOn[temp6]=0; bb[temp5].backgroundColor=LEDonColor; isOn[temp5]=1;}
    }}}
    temp=messageArray[columnCounter]; flag=temp.charAt(0);//GET NEW COLUMN
    if (temp.charAt(1)=="1") {isOn[99]=1;} if (temp.charAt(2)=="1") {isOn[149]=1} if (temp.charAt(3)=="1") {isOn[199]=1}
    if (temp.charAt(4)=="1") {isOn[249]=1} if (temp.charAt(5)=="1") {isOn[299]=1} if (temp.charAt(6)=="1") {isOn[349]=1}
    if (flag=="0") {} else if (flag=="1") {isOn[49]=1;} else if (flag=="X") {pauseScroll();} else if (flag=="Y") {flashScroll();}
    else if (flag=="D") {dropEffect();} else if (flag=="S") {sunRiseEffect();} else if (flag=="Q") {splitEffect();}
    columnCounter++; if(columnCounter==columnCount) columnCounter=0;
}
//______________pause effect________________
function pauseScroll(){ clearInterval(loop); setTimeout("LEDinit()",3000);}
//______________onArray Section_____________
onArray=new Array(); var onCount=0; //array size counter
function makeOnArray(){ clearInterval(loop); onCount=0;    for (var i=0; i<700; i++){if (isOn[i]==1) {onArray[onCount]=i; onCount++;};}//make onArray of 'on' LEDS
}//_________________________________
//_______________flash effect_______________
var flashCount=0;
function flashScroll(){    makeOnArray(); flashCount=0; if (NS) {setTimeout("flashItNS()",250);} else {setTimeout("flashIt()",250);}}
function flashItNS(){ flashCount++;
    if (flashCount<14) {
        if (flashCount % 2 == 0){ for (var i=0; i<onCount; i++){ isOn[onArray[i]]=0;bb[onArray[i]].bgColor=LEDoffColor;}}
        else {for (var i=0; i<onCount; i++){isOn[onArray[i]]=1;bb[onArray[i]].bgColor=LEDonColor;}}
        setTimeout("flashItNS()",250);
    }
    else {flashCount=0; setTimeout("LEDinit()",250);}
}
function flashIt(){ flashCount++;
    if (flashCount<14) {
        if (flashCount % 2 == 0){ for (var i=0; i<onCount; i++){ isOn[onArray[i]]=0;bb[onArray[i]].backgroundColor=LEDoffColor;}}
        else {for (var i=0; i<onCount; i++){isOn[onArray[i]]=1;bb[onArray[i]].backgroundColor=LEDonColor;}}
        setTimeout("flashIt()",250);
    }
    else {flashCount=0; setTimeout("LEDinit()",250);}
}//_________________________________
//____________scroll up effect______________
dropArray=new Array();
function dropEffect(){makeOnArray(); for (var i=0; i<onCount; i++){ dropArray[i]=onArray[i]; } if (NS) {dropItNS();} else {dropIt();}}
var dropCount=0;
function dropItNS(){
    if (dropCount<7){for (var i=0; i<onCount; i++){    bb[dropArray[i]].bgColor=LEDoffColor; }
        for (var i=0; i<onCount; i++){ temp=dropArray[i]; temp-=50;if (temp<0) temp+=350;bb[temp].bgColor=LEDonColor; dropArray[i]=temp;}
        dropCount++; setTimeout("dropItNS()",100);
    } else {dropCount=0;setTimeout("LEDinit()",100);}
}//_________________________________
function dropIt(){
    if (dropCount<7){ for (var i=0; i<onCount; i++){ bb[dropArray[i]].backgroundColor=LEDoffColor; }
        for (var i=0; i<onCount; i++){ temp=dropArray[i]; temp-=50; if (temp<0) temp+=350; bb[temp].backgroundColor=LEDonColor; dropArray[i]=temp;}
        dropCount++; setTimeout("dropIt()",100);
    } else {dropCount=0;setTimeout("LEDinit()",100);}
}//_________________________________
//____________sunrise effect________________
sunRiseCounter=0;sunRiseArray=new Array();
sunRiseArray[0]=new Array(50,101,102,103,154,155,156,207,208,259,260,261,212,163,164,115,116,117,168,169,170,221,222,223,274,275,276,227,228,179,180,131,132,83,134,135,186,187,238,239,240,241,292,293,344,295,296,247,198);//Hills
sunRiseArray[1]=new Array(224,225,226); sunRiseArray[2]=new Array(174,175,176,177); sunRiseArray[3]=new Array(173,124,125,126,127,128,178); sunRiseArray[4]=new Array(172,123,74,75,76,77,129); sunRiseArray[5]=new Array(171,122,73,24,25,26,27,78,79,130);
function sunRiseEffect() { makeOnArray(); for (var i=0; i<onCount; i++){ isOn[onArray[i]]=0; if (!NS) {bb[onArray[i]].backgroundColor=LEDoffColor;}    else {bb[onArray[i]].bgColor=LEDoffColor;}}
    setTimeout("riseEffectUp()",1000);}
function riseEffectUp() {
    if (!NS) { for (var ii=0; ii<sunRiseArray[sunRiseCounter].length; ii++) {isOn[sunRiseArray[sunRiseCounter][ii]]=1;bb[sunRiseArray[sunRiseCounter][ii]].backgroundColor=LEDonColor;}}
    else {for (var ii=0; ii<sunRiseArray[sunRiseCounter].length; ii++) {isOn[sunRiseArray[sunRiseCounter][ii]]=1;bb[sunRiseArray[sunRiseCounter][ii]].bgColor=LEDonColor;}}
    sunRiseCounter++; if (sunRiseCounter>5) {sunRiseCounter=5;setTimeout("riseEffectDown()",2000);}    else {setTimeout("riseEffectUp()",250);}}
function riseEffectDown() {
    if (!NS) {for (var ii=0; ii<sunRiseArray[sunRiseCounter].length; ii++) {isOn[sunRiseArray[sunRiseCounter][ii]]=0;bb[sunRiseArray[sunRiseCounter][ii]].backgroundColor=LEDoffColor;}}
    else {for (var ii=0; ii<sunRiseArray[sunRiseCounter].length; ii++) {isOn[sunRiseArray[sunRiseCounter][ii]]=0;bb[sunRiseArray[sunRiseCounter][ii]].bgColor=LEDoffColor;}}
    sunRiseCounter--; if (sunRiseCounter<1) {sunRiseCounter=0;setTimeout("LEDinit()",1500);}
    else {setTimeout("riseEffectDown()",250);}
}//____________________________________
//____________split scroll effect___________
var splitCount=0;
function splitEffect() { makeOnArray(); for (var i=0; i<onCount; i++) { dropArray[i]=onArray[i]; }
    if (NS) {setTimeout("splitNS()",55);} else if (IE) {setTimeout("splitIt()",55);} else {setTimeout("splitIt()",100);}
}
function splitIt(){ for (i=0;i<onCount;i++){ temp=dropArray[i];
    if (temp<150) { if (temp==100) {bb[temp].backgroundColor=LEDoffColor; temp=149; bb[temp-1].backgroundColor=LEDonColor;}
            else if (temp==50) {bb[temp].backgroundColor=LEDoffColor; temp=99; bb[temp-1].backgroundColor=LEDonColor;}
            else if (temp==0) {bb[temp].backgroundColor=LEDoffColor; temp=49; bb[temp-1].backgroundColor=LEDonColor;}
            else {bb[temp].backgroundColor=LEDoffColor; bb[temp-1].backgroundColor=LEDonColor;}
            dropArray[i]=temp-1; }
        else { if (temp==199) {bb[temp].backgroundColor=LEDoffColor; temp=200; bb[temp+1].backgroundColor=LEDonColor;}
            else if (temp==349) {bb[temp].backgroundColor=LEDoffColor; temp=300; bb[temp+1].backgroundColor=LEDonColor;}
            else if (temp==299) {bb[temp].backgroundColor=LEDoffColor; temp=250; bb[temp+1].backgroundColor=LEDonColor;}
            else if (temp==249) {bb[temp].backgroundColor=LEDoffColor; temp=200; bb[temp+1].backgroundColor=LEDonColor;}
            else {bb[temp].backgroundColor=LEDoffColor; bb[temp+1].backgroundColor=LEDonColor;}
            dropArray[i]=temp+1; }
    } splitCount++; if (splitCount<49) {if (IE) {setTimeout("splitIt()",55);} else {setTimeout("splitIt()",100);} } else {splitCount=0; LEDinit();}
}
function splitNS(){
    for (i=0;i<onCount;i++){ temp=dropArray[i];
        if (temp<150) { if (temp==100) {bb[temp].bgColor=LEDoffColor; temp=149; bb[temp-1].bgColor=LEDonColor;}
            else if (temp==50) {bb[temp].bgColor=LEDoffColor; temp=99; bb[temp-1].bgColor=LEDonColor;}
            else if (temp==0) {bb[temp].bgColor=LEDoffColor; temp=49; bb[temp-1].bgColor=LEDonColor;}
            else {bb[temp].bgColor=LEDoffColor; bb[temp-1].bgColor=LEDonColor;}
            dropArray[i]=temp-1; }
        else { if (temp==199) {bb[temp].bgColor=LEDoffColor; temp=200; bb[temp+1].bgColor=LEDonColor;}
            else if (temp==349) {bb[temp].bgColor=LEDoffColor; temp=300; bb[temp+1].bgColor=LEDonColor;}
            else if (temp==299) {bb[temp].bgColor=LEDoffColor; temp=250; bb[temp+1].bgColor=LEDonColor;}
            else if (temp==249) {bb[temp].bgColor=LEDoffColor; temp=200; bb[temp+1].bgColor=LEDonColor;}
            else {bb[temp].bgColor=LEDoffColor; bb[temp+1].bgColor=LEDonColor;}
            dropArray[i]=temp+1; }
    } splitCount++; if (splitCount<49) {setTimeout("splitNS()",55);} else {splitCount=0; LEDinit();}
}//___________________________________
function LEDinit(){if (NS) {loop=setInterval("scroll()",55);} else if (IE){loop=setInterval("scroll()",55);} else {loop=setInterval("scroll()",100);}}
</script>
</body>
</head>
</html>

:arrow: Neon Lights Shoutout (Credit To Ebeng)
Preview : http://h1.ripway.com/dekha/linkers/shoutout5.html

code:


<html>
<body>
<script>/*
Neon Lights Text
By JavaScript Kit (http://javascriptkit.com)
For this script, TOS, and 100s more DHTML scripts,
Visit http://www.dynamicdrive.com
*/

var message="The Shoutout"
var neonbasecolor="red"
var neontextcolor="black"
var flashspeed=100  //in milliseconds

///No need to edit below this line/////

var n=0
if (document.all||document.getElementById){
document.write('<font size="5" color="'+neonbasecolor+'">')
for (m=0;m<message.length;m++)
document.write('<span id="neonlight'+m+'">'+message.charAt(m)+'</span>')
document.write('</font>')
}
else
document.write(message)

function crossref(number){
var crossobj=document.all? eval("document.all.neonlight"+number) : document.getElementById("neonlight"+number)
return crossobj
}

function neon(){

//Change all letters to base color
if (n==0){
for (m=0;m<message.length;m++)
//eval("document.all.neonlight"+m).style.color=neonbasecolor
crossref(m).style.color=neonbasecolor
}

//cycle through and change individual letters to neon color
crossref(n).style.color=neontextcolor

if (n<message.length-1)
n++
else{
n=0
clearInterval(flashing)
setTimeout("beginneon()",1500)
return
}
}

function beginneon(){
if (document.all||document.getElementById)
flashing=setInterval("neon()",flashspeed)
}
beginneon()
</script>
</body>
</html>

Just Edit The Bold From All Code Above
choose one shoutout you want, and paste into html extension

Then paste this on your JS

var shoutoutdekhz = "<iframe id=\"tickermain\" src=\"URL HTML\" width=\"100%\" height=\"75px\" marginwidth=\"0\" marginheight=\"0\" hspace=\"0\" vspace=\"0\" frameborder=\"0\" scrolling=\"no\"></iframe>";
document.getElementById('cpShoutoutBox').style.height='75px';
document.getElementById('cpShoutoutBox').style.overflowY='hidden';
document.getElementById('cpShoutoutBox').innerHTML = "<table width='100%'><tr><td align='center'>"+shoutoutdekhz+"</td></tr></table>";

URL HTMLnya Kalian masukkin URL ekstensi html yg udah kalian save tadi..

Live Preview : Here
I Use L.E.D Panel

Ok , That's All Now...



DEKHA ANGGARESKA
Like : ADA Band, Kerispatih, Yovie Nuno, Milan, Liverpool, Atletico.


#2  2008-07-02 14:41:37

dale
» Moderator
dale's display avatar
Clique Mee
Location: G.Lagro.subd.
Registered: 2007-05-24
Posts: 7196
Last visit: 2008-11-29
Reputation: 67
Friendster

Re: {TUTORIAL} Compilation Tweak Shoutout

thanks for sharing diz compilation kid!! :thumbsup:


#3  2008-07-02 15:28:48

fwenciz
» FriendsterTalker
Registered: 2008-01-20
Posts: 167
Last visit: 2008-11-18
Reputation: 1

Re: {TUTORIAL} Compilation Tweak Shoutout

2nd to comment! nywayz, nice trick! gotta try this later!!!

#4  2008-07-02 15:38:27

kuntilanak
» Promoter
kuntilanak's display avatar
Registered: 2008-05-29
Posts: 4854
Reputation: 164

Re: {TUTORIAL} Compilation Tweak Shoutout

Kuntilanak Said To You

Nice work... thanks for share


#5  2008-07-02 16:14:28

BwizetT
» FriendsterGeek
BwizetT's display avatar
**We*Are*SoliD**
Rockstars
Location: Basta my Allergy
Registered: 2007-09-19
Posts: 1090
Reputation: 49

Re: {TUTORIAL} Compilation Tweak Shoutout

hahaha nicely done... =) :thumbsup: :thumbsup: :thumbsup:

#6  2008-07-02 19:38:28

AFZULNIZAM
» Moderator
AFZULNIZAM's display avatar
.White Protector.
Location: Kuala Lumpur
Registered: 2007-09-14
Posts: 6125
Reputation: 308

Re: {TUTORIAL} Compilation Tweak Shoutout

nice trick bro...
+1repu to you
keep its up :thumbsup: :)



click image above to join wp group :penguin:
Copyright © 2002–2008

#7  2008-07-02 23:10:22

dekha_21
» FriendsterGeek
dekha_21's display avatar
Forza Milan and Liverpool
Executive Coder
Location: Indramayu
Registered: 2007-09-01
Posts: 1016
Reputation: 52
Friendster

Re: {TUTORIAL} Compilation Tweak Shoutout

thanks all for the respond and +reput



DEKHA ANGGARESKA
Like : ADA Band, Kerispatih, Yovie Nuno, Milan, Liverpool, Atletico.


#8  2008-07-02 23:15:33

gerlyn_wangzi
» FriendsterTalker
gerlyn_wangzi's display avatar
gErlynloVewangzi
Location: ontario canada
Registered: 2008-07-02
Posts: 123
Last visit: 2008-10-14
Reputation: 3
???

Re: {TUTORIAL} Compilation Tweak Shoutout

wHere can i find js?eheheh...s0rry di ko kabisado eh...pwde malaman wEr cn i find the JS?



thnks for making this one sisz memay12

pleAse aDd me  in mY fS aCcount
gerlyn_emp0i@yahoo.com

#9  2008-07-02 23:39:26

dekha_21
» FriendsterGeek
dekha_21's display avatar
Forza Milan and Liverpool
Executive Coder
Location: Indramayu
Registered: 2007-09-01
Posts: 1016
Reputation: 52
Friendster

Re: {TUTORIAL} Compilation Tweak Shoutout

sorry, please dont sTiCky cAps and use English language, I dont understand your language..



DEKHA ANGGARESKA
Like : ADA Band, Kerispatih, Yovie Nuno, Milan, Liverpool, Atletico.


#10  2008-07-03 02:20:49

EbengMaya
» FriendsterAgent
EbengMaya's display avatar
gelo ciah maneh hahaha
Location: garut aing mah
Registered: 2008-02-09
Posts: 2406
Last visit: Today
Reputation: 99
Friendster

Re: {TUTORIAL} Compilation Tweak Shoutout

i have idea for this trick :lol:
thanks my friend for the share this trick =) :thumbsup:

#11  2008-07-03 02:21:22

bles_212000
» FriendsterWhiz
bles_212000's display avatar
gray mushroom
.White Protector.
Location: LOST
Registered: 2007-09-25
Posts: 3363
Reputation: 139

Re: {TUTORIAL} Compilation Tweak Shoutout

thanks, nice compilation! :D:thumbsup:


#12  2008-07-03 02:29:04

jababada
» FriendsterNewbie
Registered: 2008-07-03
Posts: 1
Last visit: 2008-07-03
Reputation: ~

Re: {TUTORIAL} Compilation Tweak Shoutout

How do I enlarge the amount of top friends to more then the 6 alotted =| THX

#13  2008-07-03 02:35:50

i i LeA i i
» FriendsterElite
i i LeA i i's display avatar
^pEaCe^
Class X
Location: cannot be located!
Registered: 2008-03-22
Posts: 3980
Reputation: 110
Friendster

Re: {TUTORIAL} Compilation Tweak Shoutout

gerlyn_wangzi wrote:

wHere can i find js?eheheh...s0rry di ko kabisado eh...pwde malaman wEr cn i find the JS?

Dont speak in tagalog dear,others dont understand that language..ok?
Nyweiz,what js are you looking for?linker?tweaks?
Kindly elaborate and if you have concerns proceed to help section..kk?;)

@TS: nice trick!+repu for you..thanx sharing!:D

#14  2008-07-03 04:10:01

bobcbar
» SuperFriendster
bobcbar's display avatar
Location: Texas USA
Registered: 2007-04-08
Posts: 9262
Last visit: Today
Reputation: 250
Friendster

Re: {TUTORIAL} Compilation Tweak Shoutout

Nice trick =) thanks so much for sharing :thumbsup:


#15  2008-07-03 04:27:42

darylldelfin
» Promoter
darylldelfin's display avatar
-tentenenen!! XD
Location: -MARS-
Registered: 2008-02-29
Posts: 1612
Reputation: 142
Friendster

Re: {TUTORIAL} Compilation Tweak Shoutout

very nice indeed .. :thumbsup: this might be useful .. :D


Oh Hiatus .. Haha . :]]

#16  2008-07-03 11:06:21

dekha_21
» FriendsterGeek
dekha_21's display avatar
Forza Milan and Liverpool
Executive Coder
Location: Indramayu
Registered: 2007-09-01
Posts: 1016
Reputation: 52
Friendster

Re: {TUTORIAL} Compilation Tweak Shoutout

ok!! thanks for the cmments and reputation...



DEKHA ANGGARESKA
Like : ADA Band, Kerispatih, Yovie Nuno, Milan, Liverpool, Atletico.


#17  2008-07-03 11:17:19

ugly_betty
» FriendsterTalker
ugly_betty's display avatar
.:WTF:.
Alchemy Explicit AE
Location: anywhere.
Registered: 2007-11-20
Posts: 190
Last visit: Today
Reputation: 2
Friendster

Re: {TUTORIAL} Compilation Tweak Shoutout

nice trick.
myt help me sumday!:thumbsup:



#18  2008-07-03 14:12:53

ari_hc
» FriendsterTalker
ari_hc's display avatar
Location: Indonesia
Registered: 2007-08-14
Posts: 138
Last visit: 2008-07-19
Reputation: 3
Friendster

Re: {TUTORIAL} Compilation Tweak Shoutout

how to makes the box of shoutbox transparent.??..


#19  2008-07-03 14:19:41

dekha_21
» FriendsterGeek
dekha_21's display avatar
Forza Milan and Liverpool
Executive Coder
Location: Indramayu
Registered: 2007-09-01
Posts: 1016
Reputation: 52
Friendster

Re: {TUTORIAL} Compilation Tweak Shoutout

ari_hc wrote:

how to makes the box of shoutbox transparent.??..

are you mean shoutout?
add this to your css file:

Code:

/*Transparent Shoutout*/

{transparent shoutout}
.controlpanel .so { margin: 0 -20px 10px 0; width: 257px; position: relative; background:url() repeat-y top left; color: #ce4424; font-weight: bold; }
.controlpanel .so a { color: #ce4424; }
.controlpanel .so div#cpShoutoutBox, .controlpanel .so div#cpShoutoutEditBox { padding: 7px 7px 5px 7px; margin: 0; }
.controlpanel .so div#cpShoutoutEditBox { display: none; }
.controlpanel .sol { position: absolute; left: -5px; top: 8px; width: 6px; height: 11px; background:url() no-repeat; }
.controlpanel .sob { width: 257px; height: 2px; background:url() no-repeat; line-height: 0; font-size: 0; }

Last edited by dekha_21 (2008-07-03 14:20:25)



DEKHA ANGGARESKA
Like : ADA Band, Kerispatih, Yovie Nuno, Milan, Liverpool, Atletico.


#20  2008-07-05 09:12:58

boedhak.phinank
» FriendsterTalker
boedhak.phinank's display avatar
Location: Phinank City
Registered: 2008-02-25
Posts: 104
Last visit: Today
Reputation: ~

Re: {TUTORIAL} Compilation Tweak Shoutout

Thanks 4 Sharing:thumbsup:

:eh:

Search Friendstertalk

Board footer

FriendsterTalk is not affiliated with Friendster.com
Copyright © 2002–2008 PunBB

[ 28 queries - 0.535 second ]

Pay Per Click Ads by pay per click advertising by Kontera

FriendsterTalk.com x

Welcome to FriendsterTalk! You'll need to login in order to fully use all the features and view all the sections of this site.

Please register if you're not yet a member. =)