Page 5 of 15 FirstFirst 123456789 ... LastLast
Results 41 to 50 of 150
  1. #41
    Join Date
    Apr 2006
    Location
    England
    Posts
    1,159
    Tokens
    0

    Latest Awards:

    Default

    You need to resize the image so it doesn't have all of the room below the actual image. I think you can set a transparent colour with CSS Filters.
    REMOVED

    Edited by jesus (Forum Super Moderator): Please do not have text in your signature which is over size 4.

  2. #42
    Join Date
    Jul 2005
    Posts
    1,653
    Tokens
    50

    Latest Awards:


  3. #43
    Join Date
    Jun 2006
    Posts
    4,832
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by RYANNNNN View Post
    mhm, I'll keep tryin
    Ok, thanks I'll try too.

  4. #44
    Join Date
    Jul 2005
    Posts
    1,653
    Tokens
    50

    Latest Awards:

    Default

    On the form I have, if you don't have a hex it doesn't work, so fffff has been set default, and if you have a background (1-19) you still need a hex, I dont think this transparency will be possible too be honest.

  5. #45
    Join Date
    Aug 2006
    Location
    Manchester
    Posts
    434
    Tokens
    0

    Default

    Quote Originally Posted by Zengo View Post
    Hey, I thought about this, so I decided to go ahead, and it's works so why not post it ^_^

    You type in ANY habbo name, and it'll show you what the habbo looks like!

    http://team-x-labs.net/habbo/form.html


    whats a hex code and a habbo rotation

  6. #46
    Join Date
    Jun 2006
    Posts
    4,832
    Tokens
    0

    Latest Awards:

    Default

    Hex code is a colour. Like FFFFFF is white, 000000 is black.

    Rotation is which way you want the habbo to face (enter 1 - 9)

    I was testing something on that.

  7. #47
    Join Date
    Jul 2005
    Posts
    1,653
    Tokens
    50

    Latest Awards:


  8. #48
    Join Date
    Jun 2006
    Posts
    4,832
    Tokens
    0

    Latest Awards:

    Default

    Rofl, thats cool.

    The code for rotation and hex is:

    Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>What does your Habbo look like?</title>
    </head>
    
    <body>
    <form action="habbo.php" method="post">
    Enter Habbo Name: <input type="text" name="name" /><br />
    Enter Hex Code: <input type="text" name="hex" value="000000" /><br />
    Enter Habbo Rotation: <input type="text" name="habbo" />
    <br /><input type="submit" name="submit" value="Submit" />
    <br /><br />
    If you don't know what a hex code is, leave the form as 000000
    <br />For rotation enter a number from 1 to 9.
    </body>
    </html>
    Save as form.html

    PHP Code:
    <?php
    $name 
    $_POST['name'];
    $hex $_POST['hex'];
    $habbo $_POST['habbo'];
    $br "<br>";
    if (
    $name == null|$hex == null|$habbo == null){
    echo 
    "You missed a field!";
    } else {
    echo 
    "$name looks like this: $br <img src=\"http://www.habbohotel.co.uk/habbo-imaging/collagepr?name_2_txt=0&name_2_y=-117&name_2_x=-491&h_2_dir=$habbo&h_2_name=0&h_2_frame=0&h_2_gesture=0&h_2_action=0&h_2_y=0&h_2_x=50&name_1_txt=$name&name_1_y=-597&name_1_x=-471&stampY=-1048&stampX=-1019&h_1_dir=$habbo&h_1_name=$name&h_1_frame=0&h_1_gesture=nrm&h_1_action=std&h_1_y=0&h_1_x=0&overlay=0&overlayY=-95&overlayX=-39&logoY=-300&logoX=-300&bkg=0&bkgY=-95&bkgX=-39&bkgColor=$hex&picH=300&picW=65&quality=5&img-format=png&xml-template=imageCreator_1_name\"> $br If no image of a Habbo shows, the Habbo doesn't exist.";
    }
    ?>
    Save as habbo.php

  9. #49
    Join Date
    Jul 2005
    Posts
    1,653
    Tokens
    50

    Latest Awards:

    Default

    lol - i've got that code already ;p

  10. #50
    Join Date
    Jun 2006
    Posts
    4,832
    Tokens
    0

    Latest Awards:

    Default

    I know you have you're two steps ahead :p

    Just incase other people want it

    Look at this though: http://www.dotdoodle.net/fierce.php?user=Zengo

    How did he do that? Try any habbo, its small and transparent.
    Last edited by Hitman; 17-09-2006 at 10:31 AM.

Page 5 of 15 FirstFirst 123456789 ... 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
  •