Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 21
  1. #11
    Join Date
    Mar 2007
    Posts
    106
    Tokens
    0

    Default

    LOL! THAT REAlly makes me tehehehe. LOL! DD ripper, thats as low as you can get, ripping from such a big site like that obviusly shows that you can't code a single thing and yet try to. GOD, NOOBIE children these days.

  2. #12
    Join Date
    May 2007
    Posts
    56
    Tokens
    0

    Default

    Can someone just closed this thread, its full of arguing its nonsense

  3. #13
    Oni Guest

    Default

    Mentors right you started it by ripping, you should be found out and now you have, idiot.

  4. #14
    Join Date
    Feb 2006
    Location
    Bristol
    Posts
    4,164
    Tokens
    0

    Latest Awards:

    Default

    Fame Gone Wrong (l)



    If you have any queries or questions, just PM me!

    :eusa_thin

  5. #15
    Join Date
    May 2007
    Location
    Brisbane, Australia
    Posts
    796
    Tokens
    0

    Default

    lol ture +REP
    LOL! THAT REAlly makes me tehehehe. LOL! DD ripper, thats as low as you can get, ripping from such a big site like that obviusly shows that you can't code a single thing and yet try to. GOD, NOOBIE children these days.
    Edited by opensourcehost (Forum Moderator): Please don't post pointlessly.
    Last edited by Mr.OSH; 14-06-2007 at 03:58 PM.
    Thanks,
    Chris
    Free Image Uploading

    __________________


    [/url]

    [/FONT]

  6. #16
    Join Date
    May 2007
    Location
    Scotland
    Posts
    294
    Tokens
    0

    Default

    This is like the thirD time I have posted this now..

    HABBORING HELPED ME WITH THE SCRIPT. & I Made the image to put it in.

    dot.

    end of.
    Sam

  7. #17
    Join Date
    Aug 2004
    Location
    bristol
    Posts
    3,799
    Tokens
    0

    Latest Awards:

    Default

    That can be achieved through one CSS declaration. Never would I consider using that vomit of code, chiefly not to give a legacy browser support for Mickey Mouse effects. You didn't even code this gallimaufry of functions yourself anyhow.
    kinda quit.

  8. #18
    Join Date
    Aug 2004
    Location
    UK
    Posts
    11,283
    Tokens
    2,031

    Latest Awards:

    Default

    Quote Originally Posted by nets View Post
    That can be achieved through one CSS declaration. Never would I consider using that vomit of code, chiefly not to give a legacy browser support for Mickey Mouse effects. You didn't even code this gallimaufry of functions yourself anyhow.
    To true, its why i hate Dynamic drive, there scripts are so rediculsy bloated even when they do such simple things. i mean is it that hard to add a cursor decloration ?

    cursor : url("custom.cur");

  9. #19
    Join Date
    May 2007
    Location
    Brisbane, Australia
    Posts
    796
    Tokens
    0

    Default

    [quote=Highjacker-x;3600648]Last night I was bored, So I decided to make a quick script.

    Its a HABBO mouse pointer for your website.

    All you gotta do is simply add this code after the <head> tags on your site.
    HTML Code:
    <script language="JavaScript" type="text/javascript">
    A=document.getElementById
    B=document.all;
    C=document.layers;
    T1=new Array("http://www.bobbafm.pro-hosting.org.uk/MyMouseScript/pointer.png ",35,35)
    var offsetx=0 //x offset of trail from mouse pointer
    var offsety=0 //y offset of trail from mouse pointer
    nos=parseInt(T1.length/3)
    rate=50
    ie5fix1=0;
    ie5fix2=0;
    rightedge=B? document.body.clientWidth-T1[1] : window.innerWidth-T1[1]-20
    bottomedge=B? document.body.scrollTop+document.body.clientHeight-T1[2] : window.pageYOffset+window.innerHeight-T1[2]
    for (i=0;i<nos;i++){
    createContainer("CUR"+i,i*10,i*10,i*3+1,i*3+2,"","<img src='"+T1[i*3]+"' width="+T1[(i*3+1)]+" height="+T1[(i*3+2)]+" border=0>")
    }
    function createContainer(N,Xp,Yp,W,H,At,HT,Op,St){
    with (document){
    write((!A && !B) ? "<layer id='"+N+"' left="+Xp+" top="+Yp+" width="+W+" height="+H : "<div id='"+N+"'"+" style='position:absolute;left:"+Xp+"; top:"+Yp+"; width:"+W+"; height:"+H+"; ");
    if(St){
    if (C)
    write(" style='");
    write(St+";' ")
    }
    else write((A || B)?"'":"");
    write((At)? At+">" : ">");
    write((HT) ? HT : "");
    if (!Op)
    closeContainer(N)
    }
    }
    function closeContainer(){
    document.write((A || B)?"</div>":"</layer>")
    }
    function getXpos(N){
    if (A)
    return parseInt(document.getElementById(N).style.left)
    else if (B)
    return parseInt(B[N].style.left)
    else
    return C[N].left
    }
    function getYpos(N){
    if (A)
    return parseInt(document.getElementById(N).style.top)
    else if (B)
    return parseInt(B[N].style.top)
    else
    return C[N].top
    }
    function moveContainer(N,DX,DY){
    c=(A)? document.getElementById(N).style : (B)? B[N].style : (C)? C[N] : "";
    if (!B){
    rightedge=window.innerWidth-T1[1]-20
    bottomedge=window.pageYOffset+window.innerHeight-T1[2]
    }
    c.left=Math.min(rightedge, DX+offsetx);
    c.top=Math.min(bottomedge, DY+offsety);
    }
    function cycle(){
    //if (IE5) 
    if (document.all&&window.print){
    ie5fix1=document.body.scrollLeft;
    ie5fix2=document.body.scrollTop;
    }
    for (i=0;i<(nos-1);i++){
    moveContainer("CUR"+i,getXpos("CUR"+(i+1)),getYpos("CUR"+(i+1)))
    }
    }
    function newPos(e){
    moveContainer("CUR"+(nos-1),(B)?event.clientX+ie5fix1:e.pageX+2,(B)?event.clientY+ie5fix2:e.pageY+2)
    }
    function getedgesIE(){
    rightedge=document.body.clientWidth-T1[1]
    bottomedge=document.body.scrollHeight-T1[2]
    }
    if (B){
    window.onload=getedgesIE
    window.onresize=getedgesIE
    }
    if(document.layers)
    document.captureEvents(Event.MOUSEMOVE)
    document.onmousemove=newPos
    setInterval("cycle()",rate)
    </script>
    My first ever script & Its a success

    Enjoy people x
    quote]

    I dont like it at all, It has a BIG Blue BG & can't go on FLASH & its huge.. -REP
    Last edited by chrisgocrazyH; 16-06-2007 at 02:49 AM.
    Thanks,
    Chris
    Free Image Uploading

    __________________


    [/url]

    [/FONT]

  10. #20
    Join Date
    Aug 2005
    Location
    Tunbridge Wells, Kent
    Posts
    5,063
    Tokens
    1,624

    Latest Awards:

    Default

    -REP for Ripping script from DynamicDrive and not even keeping the copyright at the top...
    Never argue with an idiot, he'll drag you down to his level, and beat you with experience.

    Quote Originally Posted by Recursion
    *oh trust me
    *I would NEVER go ATi
    And 15 mins later...
    Sapphire ATI Radeon HD 5850 1024MB GDDR5 PCI-Express Graphics Card £195.73 1 £195.73
    *ordered.

Page 2 of 3 FirstFirst 123 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •