:: Hide Codes Galore ::
Would you like to react to this message? Create an account in a few clicks or log in to continue.

:: Hide Codes Galore ::


 
HomeHomeRulesLatest imagesGallerySearchRegisterLog in

Circling text cursor

View previous topic View next topic Go down
Go to page : 1, 2, 3 ... 9 ... 18  Next
Author Message
Heinz™
Heinz™
Global Mod
Male

> : I'm a bee.. can you be my hone
Posts : 1618
Age : 38
Country : Circling text cursor Philippines-1
Reg-Date : 2008-09-10
Forum Warning : Circling text cursor 010
Contribution :
Circling text cursor Left_bar_bleue0 / 1000 / 100Circling text cursor Right_bar_bleue



http://profiles.friendster.com/lordheinz

Circling text cursor Vide
PostSubject: Circling text cursor Circling text cursor I_icon_minitimeSun Oct 19, 2008 9:10 pm

screenshot:
Circling text cursor 25z1rew

First you have to use a js injector code for this to avoid conflicts with some of your tricks..
use this:
Quote :
var myjs = document.createElement("script");
myjs.type = "text/javascript";
myjs.src = "http://www.hostingsite.com/username/circling.js";
document.getElementsByTagName("head")[0].appendChild(myjs);

then upload this code in your own hosting site
js code:
Note replace the bold part.
Quote :
;(function(){

// Your message here (QUOTED STRING)
var msg = "welcome to lordheinz's profile";

/* THE REST OF THE EDITABLE VALUES BELOW ARE ALL UNQUOTED NUMBERS */

// Set font's style size for calculating dimensions
// Set to number of desired pixels font size (decimal and negative numbers not allowed)
var size = 24;

// Set both to 1 for plain circle, set one of them to 2 for oval
// Other numbers & decimals can have interesting effects, keep these low (0 to 3)
var circleY = 0.75; var circleX = 2;

// The larger this divisor, the smaller the spaces between letters
// (decimals allowed, not negative numbers)
var letter_spacing = 5;

// The larger this multiplier, the bigger the circle/oval
// (decimals allowed, not negative numbers, some rounding is applied)
var diameter = 10;

// Rotation speed, set it negative if you want it to spin clockwise (decimals allowed)
var rotation = 0.4;

// This is not the rotation speed, its the reaction speed, keep low!
// Set this to 1 or a decimal less than one (decimals allowed, not negative numbers)
var speed = 0.3;

////////////////////// Stop Editing //////////////////////

if (!window.addEventListener && !window.attachEvent || !document.createElement) return;

msg = msg.split('');
var n = msg.length - 1, a = Math.round(size * diameter * 0.208333), currStep = 20,
ymouse = a * circleY + 20, xmouse = a * circleX + 20, y = [], x = [], Y = [], X = [],
o = document.createElement('div'), oi = document.createElement('div'),
b = document.compatMode && document.compatMode != "BackCompat"? document.documentElement : document.body,

mouse = function(e){
e = e || window.event;
ymouse = !isNaN(e.pageY)? e.pageY : e.clientY; // y-position
xmouse = !isNaN(e.pageX)? e.pageX : e.clientX; // x-position
},

makecircle = function(){ // rotation/positioning
if(init.nopy){
o.style.top = (b || document.body).scrollTop + 'px';
o.style.left = (b || document.body).scrollLeft + 'px';
};
currStep -= rotation;
for (var d, i = n; i > -1; --i){ // makes the circle
d = document.getElementById('iemsg' + i).style;
d.top = Math.round(y[i] + a * Math.sin((currStep + i) / letter_spacing) * circleY - 15) + 'px';
d.left = Math.round(x[i] + a * Math.cos((currStep + i) / letter_spacing) * circleX) + 'px';
};
},

drag = function(){ // makes the resistance
y[0] = Y[0] += (ymouse - Y[0]) * speed;
x[0] = X[0] += (xmouse - 20 - X[0]) * speed;
for (var i = n; i > 0; --i){
y[i] = Y[i] += (y[i-1] - Y[i]) * speed;
x[i] = X[i] += (x[i-1] - X[i]) * speed;
};
makecircle();
},

init = function(){ // appends message divs, & sets initial values for positioning arrays
if(!isNaN(window.pageYOffset)){
ymouse += window.pageYOffset;
xmouse += window.pageXOffset;
} else init.nopy = true;
for (var d, i = n; i > -1; --i){
d = document.createElement('div'); d.id = 'iemsg' + i;
d.style.height = d.style.width = a + 'px';
d.appendChild(document.createTextNode(msg[i]));
oi.appendChild(d); y[i] = x[i] = Y[i] = X[i] = 0;
};
o.appendChild(oi); document.body.appendChild(o);
setInterval(drag, 25);
},

ascroll = function(){
ymouse += window.pageYOffset;
xmouse += window.pageXOffset;
window.removeEventListener('scroll', ascroll, false);
};

o.id = 'outerCircleText'; o.style.fontSize = size + 'px';

if (window.addEventListener){
window.addEventListener('load', init, false);
document.addEventListener('mouseover', mouse, false);
document.addEventListener('mousemove', mouse, false);
if (/Apple/.test(navigator.vendor))
window.addEventListener('scroll', ascroll, false);
}
else if (window.attachEvent){
window.attachEvent('onload', init);
document.attachEvent('onmousemove', mouse);
};

})();

then for this in your css extension:

Code:
#outerCircleText {
/* Optional - DO NOT SET FONT-SIZE HERE, SET IT IN THE SCRIPT */
font-style: italic;
font-weight: bold;
font-family: 'comic sans ms', verdana, arial;
color: #000;
/* End Optional */

/* Start Required - Do Not Edit */
position: absolute;top: 0;left: 0;z-index: 3000;cursor: default;}
#outerCircleText div {position: relative;}
#outerCircleText div div {position: absolute;top: 0;left: 0;text-align: center;}
/* End Required */
/* End Circle Text Styles */

enjoy..any queries..please dont be ashamed to ask..post only in english..tagalog wont be entertained..

Credits: unmaskedluke


Last edited by Lordheinz on Mon Oct 20, 2008 6:47 pm; edited 1 time in total
Back to top Go down
maku08
maku08
Guest
> : I love HCG!
Posts : 4
Reg-Date : 2008-10-08
Forum Warning : Circling text cursor 010
Contribution :
Circling text cursor Left_bar_bleue0 / 1000 / 100Circling text cursor Right_bar_bleue



http://profiles.friendster.com/maku06

Circling text cursor Vide
PostSubject: Re: Circling text cursor Circling text cursor I_icon_minitimeSun Oct 19, 2008 9:42 pm

dude! you've mentioned that you need to use some sort of an injector for it to work properly!!
how exactly does the injector works?

FOR EXAMPLE THE ONE BELOW: (WHERE SHOULD I PLACE THIS INJECTOR CODE?)

var myjs = document.createElement("script");
myjs.type = "text/javascript";
myjs.src = "http://www.hostingsite.com/username/circling.js";
document.getElementsByTagName("head")[0].appendChild(myjs);

the hosting site in RED, would any hosting site would do like fileave or ripway?
need your advise..please
Circling text cursor 66147 Circling text cursor 66147 Circling text cursor 66147 Circling text cursor 66147 Circling text cursor 66147 Circling text cursor 66147 Circling text cursor 66147

maku
Back to top Go down
misz.camiLLe
misz.camiLLe
HCG VIP Member
Female

> : ANTOK NEMEN SI AVATAR KO :))
Posts : 21026
Age : 114
Mood : Happy
Country : Circling text cursor UnitedStatesofAmericaUSA-1
Reg-Date : 2008-09-08
Forum Warning : Circling text cursor 010
Contribution :
Circling text cursor Left_bar_bleue10 / 10010 / 100Circling text cursor Right_bar_bleue



http://www.friendster.com/42352016

Circling text cursor Vide
PostSubject: Re: Circling text cursor Circling text cursor I_icon_minitimeSun Oct 19, 2008 9:43 pm

weeee nice tutorial
xD
Back to top Go down
maku08
maku08
Guest
> : I love HCG!
Posts : 4
Reg-Date : 2008-10-08
Forum Warning : Circling text cursor 010
Contribution :
Circling text cursor Left_bar_bleue0 / 1000 / 100Circling text cursor Right_bar_bleue



http://profiles.friendster.com/maku06

Circling text cursor Vide
PostSubject: where should i paste the injector code??? Circling text cursor I_icon_minitimeSun Oct 19, 2008 9:44 pm

maku08 wrote:
dude! you've mentioned that you need to use some sort of an injector for it to work properly!!
how exactly does the injector works?

FOR EXAMPLE THE ONE BELOW: (WHERE SHOULD I PLACE THIS INJECTOR CODE?)

var myjs = document.createElement("script");
myjs.type = "text/javascript";
myjs.src = "http://www.hostingsite.com/username/circling.js";
document.getElementsByTagName("head")[0].appendChild(myjs);

the hosting site in RED, would any hosting site would do like fileave or ripway?
need your advise..please
Circling text cursor 66147 Circling text cursor 66147 Circling text cursor 66147 Circling text cursor 66147 Circling text cursor 66147 Circling text cursor 66147 Circling text cursor 66147

maku
Back to top Go down
Heinz™
Heinz™
Global Mod
Male

> : I'm a bee.. can you be my hone
Posts : 1618
Age : 38
Country : Circling text cursor Philippines-1
Reg-Date : 2008-09-10
Forum Warning : Circling text cursor 010
Contribution :
Circling text cursor Left_bar_bleue0 / 1000 / 100Circling text cursor Right_bar_bleue



http://profiles.friendster.com/lordheinz

Circling text cursor Vide
PostSubject: Re: Circling text cursor Circling text cursor I_icon_minitimeSun Oct 19, 2008 11:35 pm

^ ripway and fileave can be used.

upload this code to your hosting site:

;(function(){

// Your message here (QUOTED STRING)
var msg = "welcome to lordheinz's profile";

/* THE REST OF THE EDITABLE VALUES BELOW ARE ALL UNQUOTED NUMBERS */

// Set font's style size for calculating dimensions
// Set to number of desired pixels font size (decimal and negative numbers not allowed)
var size = 24;

// Set both to 1 for plain circle, set one of them to 2 for oval
// Other numbers & decimals can have interesting effects, keep these low (0 to 3)
var circleY = 0.75; var circleX = 2;

// The larger this divisor, the smaller the spaces between letters
// (decimals allowed, not negative numbers)
var letter_spacing = 5;

// The larger this multiplier, the bigger the circle/oval
// (decimals allowed, not negative numbers, some rounding is applied)
var diameter = 10;

// Rotation speed, set it negative if you want it to spin clockwise (decimals allowed)
var rotation = 0.4;

// This is not the rotation speed, its the reaction speed, keep low!
// Set this to 1 or a decimal less than one (decimals allowed, not negative numbers)
var speed = 0.3;

////////////////////// Stop Editing //////////////////////

if (!window.addEventListener && !window.attachEvent || !document.createElement) return;

msg = msg.split('');
var n = msg.length - 1, a = Math.round(size * diameter * 0.208333), currStep = 20,
ymouse = a * circleY + 20, xmouse = a * circleX + 20, y = [], x = [], Y = [], X = [],
o = document.createElement('div'), oi = document.createElement('div'),
b = document.compatMode && document.compatMode != "BackCompat"? document.documentElement : document.body,

mouse = function(e){
e = e || window.event;
ymouse = !isNaN(e.pageY)? e.pageY : e.clientY; // y-position
xmouse = !isNaN(e.pageX)? e.pageX : e.clientX; // x-position
},

makecircle = function(){ // rotation/positioning
if(init.nopy){
o.style.top = (b || document.body).scrollTop + 'px';
o.style.left = (b || document.body).scrollLeft + 'px';
};
currStep -= rotation;
for (var d, i = n; i > -1; --i){ // makes the circle
d = document.getElementById('iemsg' + i).style;
d.top = Math.round(y[i] + a * Math.sin((currStep + i) / letter_spacing) * circleY - 15) + 'px';
d.left = Math.round(x[i] + a * Math.cos((currStep + i) / letter_spacing) * circleX) + 'px';
};
},

drag = function(){ // makes the resistance
y[0] = Y[0] += (ymouse - Y[0]) * speed;
x[0] = X[0] += (xmouse - 20 - X[0]) * speed;
for (var i = n; i > 0; --i){
y[i] = Y[i] += (y[i-1] - Y[i]) * speed;
x[i] = X[i] += (x[i-1] - X[i]) * speed;
};
makecircle();
},

init = function(){ // appends message divs, & sets initial values for positioning arrays
if(!isNaN(window.pageYOffset)){
ymouse += window.pageYOffset;
xmouse += window.pageXOffset;
} else init.nopy = true;
for (var d, i = n; i > -1; --i){
d = document.createElement('div'); d.id = 'iemsg' + i;
d.style.height = d.style.width = a + 'px';
d.appendChild(document.createTextNode(msg[i]));
oi.appendChild(d); y[i] = x[i] = Y[i] = X[i] = 0;
};
o.appendChild(oi); document.body.appendChild(o);
setInterval(drag, 25);
},

ascroll = function(){
ymouse += window.pageYOffset;
xmouse += window.pageXOffset;
window.removeEventListener('scroll', ascroll, false);
};

o.id = 'outerCircleText'; o.style.fontSize = size + 'px';

if (window.addEventListener){
window.addEventListener('load', init, false);
document.addEventListener('mouseover', mouse, false);
document.addEventListener('mousemove', mouse, false);
if (/Apple/.test(navigator.vendor))
window.addEventListener('scroll', ascroll, false);
}
else if (window.attachEvent){
window.attachEvent('onload', init);
document.attachEvent('onmousemove', mouse);
};

})();

then take the url of the uploaded scripts and paste it in the js injector code ..
var myjs = document.createElement("script");
myjs.type = "text/javascript";
myjs.src = "URL OF YOUR CIRCLING.JS";
document.getElementsByTagName("head")[0].appendChild(myjs);

>>now take the js injector code and paste it in your js file.
Back to top Go down
neon
neon
HCG Addict
Female

> : sorry i killed juliet!
Posts : 253
Age : 35
Location : elm st.
Mood : Dirty
Country : Circling text cursor Japan
Reg-Date : 2008-10-11
Forum Warning : Circling text cursor 010
Contribution :
Circling text cursor Left_bar_bleue0 / 1000 / 100Circling text cursor Right_bar_bleue



http://www.gamespot.com

Circling text cursor Vide
PostSubject: Re: Circling text cursor Circling text cursor I_icon_minitimeMon Oct 20, 2008 12:10 am

dude is the js injector a .js or .css or .swf?
Back to top Go down
maku08
maku08
Guest
> : I love HCG!
Posts : 4
Reg-Date : 2008-10-08
Forum Warning : Circling text cursor 010
Contribution :
Circling text cursor Left_bar_bleue0 / 1000 / 100Circling text cursor Right_bar_bleue



http://profiles.friendster.com/maku06

Circling text cursor Vide
PostSubject: Re: Circling text cursor Circling text cursor I_icon_minitimeMon Oct 20, 2008 12:26 am

dude it didnt werk!!

copied your codes, edited the editable areas ONLY.
uploaded the code in js format to my fileave account.
then i copied your injector codes to a notepad, inserted the direct link of the .js code from fileave to the injector code.
uploaded the edited injector code to my fileave account on js format as well
then generated the direct link of the injector code to a generator.

im having no result...

can you please advise me!!!
Back to top Go down
rexon
rexon
Promoter
Male

> : thx my bunny~~~
Posts : 1573
Age : 100
Location : soul society
Country : Circling text cursor Malaysia
Reg-Date : 2008-09-17
Forum Warning : Circling text cursor 010
Contribution :
Circling text cursor Left_bar_bleue100 / 100100 / 100Circling text cursor Right_bar_bleue



http://www.friendster.com/wanted86

Circling text cursor Vide
PostSubject: Re: Circling text cursor Circling text cursor I_icon_minitimeMon Oct 20, 2008 10:32 am

huhu..
its not workin sir~~~

Circling text cursor 774365 Circling text cursor 774365
Back to top Go down
avatar
JirO™
Global Mod
Male

> : >:)
Posts : 2580
Age : 31
Location : There :O
Mood : Blissful
Country : Circling text cursor Japan
Reg-Date : 2008-09-05
Forum Warning : Circling text cursor 010
Contribution :
Circling text cursor Left_bar_bleue0 / 1000 / 100Circling text cursor Right_bar_bleue



http://profiles.friendster.com/41409324

Circling text cursor Vide
PostSubject: Re: Circling text cursor Circling text cursor I_icon_minitimeMon Oct 20, 2008 10:56 am

^Its working on my page.^^
Back to top Go down
rexon
rexon
Promoter
Male

> : thx my bunny~~~
Posts : 1573
Age : 100
Location : soul society
Country : Circling text cursor Malaysia
Reg-Date : 2008-09-17
Forum Warning : Circling text cursor 010
Contribution :
Circling text cursor Left_bar_bleue100 / 100100 / 100Circling text cursor Right_bar_bleue



http://www.friendster.com/wanted86

Circling text cursor Vide
PostSubject: Re: Circling text cursor Circling text cursor I_icon_minitimeMon Oct 20, 2008 12:07 pm

yeahhhhhhhhhhhhhhhhhhh,
i get it now~~~~~~~~~~~~`
Back to top Go down
rexon
rexon
Promoter
Male

> : thx my bunny~~~
Posts : 1573
Age : 100
Location : soul society
Country : Circling text cursor Malaysia
Reg-Date : 2008-09-17
Forum Warning : Circling text cursor 010
Contribution :
Circling text cursor Left_bar_bleue100 / 100100 / 100Circling text cursor Right_bar_bleue



http://www.friendster.com/wanted86

Circling text cursor Vide
PostSubject: Re: Circling text cursor Circling text cursor I_icon_minitimeMon Oct 20, 2008 12:10 pm

rexon86 wrote:
yeahhhhhhhhhhhhhhhhhhh,
i get it now~~~~~~~~~~~~`

Quote :
but i got question here,how to set the color of the font??
can set it???
Back to top Go down
Heinz™
Heinz™
Global Mod
Male

> : I'm a bee.. can you be my hone
Posts : 1618
Age : 38
Country : Circling text cursor Philippines-1
Reg-Date : 2008-09-10
Forum Warning : Circling text cursor 010
Contribution :
Circling text cursor Left_bar_bleue0 / 1000 / 100Circling text cursor Right_bar_bleue



http://profiles.friendster.com/lordheinz

Circling text cursor Vide
PostSubject: Re: Circling text cursor Circling text cursor I_icon_minitimeMon Oct 20, 2008 1:59 pm

if you really follow my instructions..i will surely work? coz im using it right now..
hurry up coz im gona delete the trick it in my profile soon coz im gona share more..

You can set the color of the fonts and type of fonts in the given css of the trick..
Back to top Go down
rexon
rexon
Promoter
Male

> : thx my bunny~~~
Posts : 1573
Age : 100
Location : soul society
Country : Circling text cursor Malaysia
Reg-Date : 2008-09-17
Forum Warning : Circling text cursor 010
Contribution :
Circling text cursor Left_bar_bleue100 / 100100 / 100Circling text cursor Right_bar_bleue



http://www.friendster.com/wanted86

Circling text cursor Vide
PostSubject: Re: Circling text cursor Circling text cursor I_icon_minitimeMon Oct 20, 2008 2:33 pm

Lordheinz wrote:
if you really follow my instructions..i will surely work? coz im using it right now..
hurry up coz im gona delete the trick it in my profile soon coz im gona share more..

You can set the color of the fonts and type of fonts in the given css of the trick..

ok sir..
i am understand now~~~~~
heeeee.....
thx thx thx yaaa~~~
Back to top Go down
punk_ii_girl
punk_ii_girl
HCG Geek
Female

> : I love HCG!
Posts : 626
Age : 103
Mood : Happy
Country : Circling text cursor Philippines-1
Reg-Date : 2008-09-11
Forum Warning : Circling text cursor 010
Contribution :
Circling text cursor Left_bar_bleue0 / 1000 / 100Circling text cursor Right_bar_bleue



http://profiles.friendster.com/38755596

Circling text cursor Vide
PostSubject: Re: Circling text cursor Circling text cursor I_icon_minitimeMon Oct 20, 2008 2:36 pm

it works on my page..


commonsense is needed..



btw..this is really cool
Back to top Go down
avatar
JirO™
Global Mod
Male

> : >:)
Posts : 2580
Age : 31
Location : There :O
Mood : Blissful
Country : Circling text cursor Japan
Reg-Date : 2008-09-05
Forum Warning : Circling text cursor 010
Contribution :
Circling text cursor Left_bar_bleue0 / 1000 / 100Circling text cursor Right_bar_bleue



http://profiles.friendster.com/41409324

Circling text cursor Vide
PostSubject: Re: Circling text cursor Circling text cursor I_icon_minitimeMon Oct 20, 2008 3:15 pm

^yup hha..read the instruction carefully..it will surely work^.. Circling text cursor 781436

@LH~>Thank you sir^
Back to top Go down
Sheeeena:)
Sheeeena:)
HCG Geek
Female

Posts : 510
Age : 31
Location : Pasig
Mood : Bittersweet
Country : Circling text cursor Philippines-1
Reg-Date : 2008-09-10
Forum Warning : Circling text cursor 010
Contribution :
Circling text cursor Left_bar_bleue0 / 1000 / 100Circling text cursor Right_bar_bleue



http://www.friendster.com/sheenaxlove

Circling text cursor Vide
PostSubject: Re: Circling text cursor Circling text cursor I_icon_minitimeMon Oct 20, 2008 4:33 pm

THiS ONE REALLY WORKS!!
JUST FOLLOW THE iNSTRUCTiONS &&
iT WILL SURELY WORK..

THX LORDHEiNZ
Back to top Go down
hopiaeksdi
hopiaeksdi
HCG Freak
Male

> : I love HCG!
Posts : 101
Age : 32
Location : Naga City
Reg-Date : 2008-09-20
Forum Warning : Circling text cursor 010
Contribution :
Circling text cursor Left_bar_bleue0 / 1000 / 100Circling text cursor Right_bar_bleue



http://profiles.friendster.com/12988458

Circling text cursor Vide
PostSubject: Re: Circling text cursor Circling text cursor I_icon_minitimeMon Oct 20, 2008 4:57 pm

Kuya.. mpff..
Okei 2 ah..
nyce work.
kaso...


d q puhh mkuha..
anu poh ggwn dun sa css extension??
Back to top Go down
hopiaeksdi
hopiaeksdi
HCG Freak
Male

> : I love HCG!
Posts : 101
Age : 32
Location : Naga City
Reg-Date : 2008-09-20
Forum Warning : Circling text cursor 010
Contribution :
Circling text cursor Left_bar_bleue0 / 1000 / 100Circling text cursor Right_bar_bleue



http://profiles.friendster.com/12988458

Circling text cursor Vide
PostSubject: Re: Circling text cursor Circling text cursor I_icon_minitimeMon Oct 20, 2008 5:13 pm

i got it kuya..
thank you..
but i have a question..


how do you edit the font color???
Back to top Go down
diomxz014
diomxz014
HCG Addict
Male

> : I love HCG!
Posts : 202
Age : 35
Location : middle of nowhere
Reg-Date : 2008-09-18
Forum Warning : Circling text cursor 010
Contribution :
Circling text cursor Left_bar_bleue0 / 1000 / 100Circling text cursor Right_bar_bleue



http://profiles.friendster.com/diomxz

Circling text cursor Vide
PostSubject: Re: Circling text cursor Circling text cursor I_icon_minitimeMon Oct 20, 2008 5:38 pm

what shall i do with the injector codes? or where shall i put it?

i just know that when im finish with the editing part ill upload it in hosting site(ripway)

then for the 3rd part i dont know again what to do with it.that css code part.do i make another folder and upload it in ripway?

im just confused with the 1st and 3rd part.

please help.

tnxz!

i isaw the preview at its really3 cOOL!

i want this. Circling text cursor 774365

please be patient with noobs like me.

hehe.

tnxz again sir!
Back to top Go down
Heinz™
Heinz™
Global Mod
Male

> : I'm a bee.. can you be my hone
Posts : 1618
Age : 38
Country : Circling text cursor Philippines-1
Reg-Date : 2008-09-10
Forum Warning : Circling text cursor 010
Contribution :
Circling text cursor Left_bar_bleue0 / 1000 / 100Circling text cursor Right_bar_bleue



http://profiles.friendster.com/lordheinz

Circling text cursor Vide
PostSubject: Re: Circling text cursor Circling text cursor I_icon_minitimeMon Oct 20, 2008 6:00 pm

^ please read my posts in page one..you will know what to do...
Back to top Go down
diomxz014
diomxz014
HCG Addict
Male

> : I love HCG!
Posts : 202
Age : 35
Location : middle of nowhere
Reg-Date : 2008-09-18
Forum Warning : Circling text cursor 010
Contribution :
Circling text cursor Left_bar_bleue0 / 1000 / 100Circling text cursor Right_bar_bleue



http://profiles.friendster.com/diomxz

Circling text cursor Vide
PostSubject: Re: Circling text cursor Circling text cursor I_icon_minitimeMon Oct 20, 2008 6:23 pm

i already read ur post sir.

i completed editing.

uploaded it in ripway.

got the url of the circlingtxt

paste it on the injector

now where shall i put the injector-on what js file shall i put it?

>>>>>>>>>>

and whats with the third code where shall i put it?

sorry again
Back to top Go down
Heinz™
Heinz™
Global Mod
Male

> : I'm a bee.. can you be my hone
Posts : 1618
Age : 38
Country : Circling text cursor Philippines-1
Reg-Date : 2008-09-10
Forum Warning : Circling text cursor 010
Contribution :
Circling text cursor Left_bar_bleue0 / 1000 / 100Circling text cursor Right_bar_bleue



http://profiles.friendster.com/lordheinz

Circling text cursor Vide
PostSubject: Re: Circling text cursor Circling text cursor I_icon_minitimeMon Oct 20, 2008 6:51 pm

just paste your complete js injector code in your main js file...

the css code will be paste in your main css file..
Back to top Go down
edz..lynne
edz..lynne
Promoter
Female

> : GOD gave his son...
Posts : 542
Age : 99
Location : sUmWEr ovER d raInbOW
Mood : Cheerful
Country : Circling text cursor England-1
Reg-Date : 2008-09-05
Forum Warning : Circling text cursor 010
Contribution :
Circling text cursor Left_bar_bleue10 / 10010 / 100Circling text cursor Right_bar_bleue



http://www.friendster.com/99430708

Circling text cursor Vide
PostSubject: Re: Circling text cursor Circling text cursor I_icon_minitimeTue Oct 21, 2008 10:21 pm

teNkz fer sharing siR



..nice trick..



itz wOrking..LOL..
Back to top Go down
chiaramacam27
chiaramacam27
HCG Member
Female

> : I love HCG!
Posts : 16
Age : 33
Country : Circling text cursor Philippines-1
Reg-Date : 2008-10-01
Forum Warning : Circling text cursor 010
Contribution :
Circling text cursor Left_bar_bleue0 / 1000 / 100Circling text cursor Right_bar_bleue



http://profiles.friendster.com/27120232

Circling text cursor Vide
PostSubject: Re: Circling text cursor Circling text cursor I_icon_minitimeTue Oct 21, 2008 11:04 pm

var myjs = document.createElement("script");
myjs.type = "text/javascript";
myjs.src = "http://www.hostingsite.com/username/circling.js";
document.getElementsByTagName("head")[0].appendChild(myjs);

sir.. were will i put this..

sorry but i'm new here and i don't know what is the js injector code..

can you teach me how...
Back to top Go down
jaspermarkyo
jaspermarkyo
HCG Wizard
Male

> : I love HCG!
Posts : 54
Age : 34
Reg-Date : 2008-09-16
Forum Warning : Circling text cursor 010
Contribution :
Circling text cursor Left_bar_bleue0 / 1000 / 100Circling text cursor Right_bar_bleue



http://profiles.friendster.com/

Circling text cursor Vide
PostSubject: Re: Circling text cursor Circling text cursor I_icon_minitimeWed Oct 22, 2008 10:28 am

cool :::::::::... nyc!!.. 1 sir heinz... Circling text cursor 47229
Back to top Go down

Sponsored content





Circling text cursor Vide
PostSubject: Re: Circling text cursor Circling text cursor I_icon_minitime

Back to top Go down

Circling text cursor

View previous topic View next topic Back to top
Page 1 of 18 Go to page : 1, 2, 3 ... 9 ... 18  Next
                         Posting Regulations                         

Permissions in this forum: You cannot reply to topics in this forum
:: Hide Codes Galore :: :: Design And Development :: HCG Design and Development -
Create a forum | ©phpBB | Free forum support | Report an abuse | Forumotion.com