How to Extend your Client with HTML, PHP and JQuery

Results 1 to 25 of 25
  1. #1
    [̲̅$̲̅(̲̅1̲̅)̲̅$ ̲̅] leenster is offline
    MemberRank
    May 2008 Join Date
    KanaadaLocation
    992Posts

    happy How to Extend your Client with HTML, PHP and JQuery

    Have you ever wanted to add some features to your client? Like a Bot shop or something like that?

    Well read this tutorial and you will know how to do it.

    First ill show you a screen shot:

    The new box is completely draggable just like the other boxes in your swf.


    I know.... pretty sweet huh?

    Ok lets see how its done (it's easy).

    What we are going to do is just overlay some stuff over your swf and to your visitors it will look like it is all part of the client.

    Ok lets get started.

    Make sure this parameter is in your list of parameter for your habbo.swf
    PHP Code:
    params["wmode"] = "transparent"
    First add these lines to your client. make sure it is before the </header> tag.
    PHP Code:
    <style>
        .
    menu
            
    {
                
    position:fixed;
                
    bottom:45px;
                
    left:15px;
                
    z-index1005 !important;
                
    color:#FFF;
                
    cursor:pointer;
            }
        .
    button
            
    {
                
    float:left;
                
    padding:3px;
                
    margin-right:3px;
            }
        
    #addedcontent
            
    {
                
    position:fixed;
                
    top:5px;
                
    left:300px;
                
    max-width:400px;
                
    min-width:150px;
                
    z-index1006 !important;
            }
        
    #b-header
            
    {
                
    cursor:default;
                
    padding:5px;
                
    text-align:center;
                
    background-color:#568BA4;
                
    font-size:13px;
                
    font-weight:bold;
                -
    moz-border-radius5px 5px 0px 0px;
                
    border-radius5px 5px 0px 0px;
                
    border:2px solid #66A2BE;
                
    border-bottom1px solid #000;
                
    height:19px;
                
    line-height:19px;
            }
        
    #b-content
            
    {
                
    padding:5px;
                
    background-color:#E9E9E1;
                
    -moz-border-radius0px 0px 5px 5px;
                
    border-radius0px 0px 5px 5px;
                
    color:#000;
            
    }
        
    #close-button
            
    {
                
    position:absolute;
                
    right:5px;
                
    top:7px;
                
    width:19px;
                
    height:20px;
                
    background-image:url('images/buttons/close.png');
                
    background-repeat:no-repeat;
                
    cursor:pointer;
                
    background-position:right top
            }
        
    #close-button:hover
            
    {
                
    background-repeat:no-repeat;
                
                
    background-position:left top
            }
        @
    font-face
            
    {
                
    font-familyUbuntu-C;
                
    srcurl('Ubuntu-C.ttf');
            }
        
        
    body
            
    {
                
    font-size12px;
                
    font-family:Ubuntu-C;
            }
    </
    style>

    <
    link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
    <
    script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
    <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>

    <script>
      $(document).ready(function() {
        $("#addedcontent").draggable();
        $("#addedcontent").hide();
      });
      function loadpage(page,title)
      {
        $("#b-header").html(title + '<div id="close-button" onclick="$(\'#addedcontent\').hide();"></div>');
        
        $('#b-content').load("addedcontent/"+page+".php", function() 
        {
            $("#addedcontent").show();
        });
      }
    </script> 

    Now after your <body> tag paste the following code.
    PHP Code:
    <div class="menu">
            <
    div class="button" onclick="loadpage('bots','Bot Creator');">Create Bot</div>
            <
    div class="button" onclick="loadpage('coins','Buy Coins');">Buy Coins</div>
            <
    div class="button" onclick="loadpage('badgeshop','Badge Shop');">Badge Shop</div>
        </
    div>
        <
    div id="addedcontent">
            <
    div id="b-header">
                
    header
                
            
    </div>
            <
    div id="b-content">
                
    content
            
    </div>
        </
    div
    Save this image somewhere and adjust this css code to point to the right location.
    PHP Code:
    #close-button
            
    {
                
    position:absolute;
                
    right:5px;
                
    top:7px;
                
    width:19px;
                
    height:20px;
                
    background-image:url('images/buttons/close.png');
                
    background-repeat:no-repeat;
                
    cursor:pointer;
                
    background-position:right top
            } 
    Download the Ubuntu font here and put it in the root of your site (or where ever you want it, just edit the css ).

    Also create a folder in your root called AddedContent. This is where the extra content will be stored.


    Basically you are done.....

    To create content Just create a PHP file in your AddedContent folder. e.g. AddedContent/bots.php

    To create a link to your file just add a line like this
    PHP Code:
    <div class="button" onclick="loadpage('bots','Bot Creator');">Create Bot</div
    loadpage('bots //this is the name of the PHP file, do not add .PHP//','Bot Creator //This is the title that will be shown in the header of the box//');


    If you dont like the location of the menu bar then just edit the CSS:
    PHP Code:
    .menu
            
    {
                
    position:fixed;
                
    bottom:45px;
                
    left:15px;
                
    z-index1005 !important;
                
    color:#FFF;
                
    cursor:pointer;
            } 
    If you want to edit the look of the buttons then edit this css:
    PHP Code:
    .button
            
    {
                
    float:left;
                
    padding:3px;
                
    margin-right:3px;
            } 


    If you make a form, for example then just use JQUERY to submit it.


    Like this example:
    PHP Code:
    $(function() {  
      $(
    ".button").click(function() {  
        
    // validate and process form here  
        
    var dataString 'name='name '&id=' id '&look=' look//just an example
        
    $.ajax({  
            
    type"POST",  
            
    url"bin/process.php",  
            
    datadataString,  
            
    success: function() {  
                
    //Completed hide the Box
                
    $("#addedcontent").hide(); 
            }  
        }); 
      });  
    }); 


    Hopefully you guys will be nice enough to share your creations.

    Likes and Reps are welcome.
    Last edited by leenster; 04-09-12 at 10:53 PM.


  2. #2
    Habbo section forever TimGlipper is offline
    MemberRank
    Oct 2011 Join Date
    On RaGEZONE.comLocation
    243Posts

    Re: How to Extend your Habbo.swf with HTML

    Whatthe f*ck?
    +REP +LIKE MEN!

  3. #3
    [̲̅$̲̅(̲̅1̲̅)̲̅$ ̲̅] leenster is offline
    MemberRank
    May 2008 Join Date
    KanaadaLocation
    992Posts
    Quote Originally Posted by TimGlipper View Post
    Whatthe f*ck?
    +REP +LIKE MEN!
    I'm glad u like it ;)


    Sent from some remote location using Tapatalk...

  4. #4
    The one and only! Hejula is offline
    MemberRank
    Nov 2008 Join Date
    4,128Posts

    Re: How to Extend your Habbo.swf with HTML

    This is nice man, a great way to add features to the SWF without major modifications! I like it, thanks :D

  5. #5
    Check http://arcturus.pw The General is offline
    DeveloperRank
    Aug 2011 Join Date
    7,608Posts

    Re: How to Extend your Habbo.swf with HTML

    Leen awesome!

    Edit: Title should be how to extend your habbo.swf with php and html ;O

  6. #6
    Banned V for Vendetta is offline
    BannedRank
    Feb 2007 Join Date
    1,809Posts

    Re: How to Extend your Habbo.swf with HTML

    Damn that's so nice thanks for giving that i've been searching for this actually and it finally has been released (y)

  7. #7
    Account Upgraded | Title Enabled! GertJanA is offline
    MemberRank
    Jan 2010 Join Date
    The NetherlandsLocation
    391Posts

    Re: How to Extend your Client with HTML, PHP and JQuery

    Leenster babe,
    I lova ya! ^^,

    Im going to use this for like 100% sure.

    Greetz,

  8. #8
    [̲̅$̲̅(̲̅1̲̅)̲̅$ ̲̅] leenster is offline
    MemberRank
    May 2008 Join Date
    KanaadaLocation
    992Posts
    Quote Originally Posted by GertJanA View Post
    Leenster babe,
    I lova ya! ^^,

    Im going to use this for like 100% sure.

    Greetz,
    Thanks :)

    I kinda thought there would have been more interest in this though.. 3 days only 6 reply's.

    Maybe I have to release some addons for it, like the bot creator and group creator?


    Sent from some remote location using Tapatalk...

  9. #9
    Apprentice SnX is offline
    MemberRank
    Jul 2012 Join Date
    6Posts

    Re: How to Extend your Client with HTML, PHP and JQuery

    Love you Leenster <3 Thanks!

  10. #10
    Banned V for Vendetta is offline
    BannedRank
    Feb 2007 Join Date
    1,809Posts

    Re: How to Extend your Client with HTML, PHP and JQuery

    Quote Originally Posted by SnX View Post
    Love you Leenster <3 Thanks!
    Everyone loves leenster :)

  11. #11
    Check http://arcturus.pw The General is offline
    DeveloperRank
    Aug 2011 Join Date
    7,608Posts

    Re: How to Extend your Client with HTML, PHP and JQuery

    Quote Originally Posted by leenster View Post
    Maybe I have to release some addons for it, like the bot creator and group creator?


    Sent from some remote location using Tapatalk...

    PM me ;P

    I may make a housekeeping this way :O

  12. #12
    Proficient Member Galago is offline
    MemberRank
    Aug 2011 Join Date
    The NetherlandsLocation
    177Posts

    Re: How to Extend your Client with HTML, PHP and JQuery

    So fucking nice. And please, give us the Group Creator.
    Ooh, and can you make it, so only when you press the header, its moveble, so i can add a scrollbar for long pages. ;)

  13. #13
    Occasional Visitor Cecer is offline
    MemberRank
    Aug 2006 Join Date
    EnglandLocation
    743Posts

    Re: How to Extend your Client with HTML, PHP and JQuery

    I remember wanting to do this with Shockwave back in the day but Shockwave is always rendered on top :(
    Last edited by Cecer; 30-11-12 at 03:55 AM.

  14. #14
    Valued Member Huginho98 is offline
    MemberRank
    Jan 2011 Join Date
    SwitzerlandLocation
    128Posts

    Re: How to Extend your Client with HTML, PHP and JQuery

    I made last month a script like this. But it shows more currencys on the left top corner.

  15. #15
    Enthusiast Butler is offline
    MemberRank
    Oct 2012 Join Date
    HollandLocation
    42Posts

    Re: How to Extend your Client with HTML, PHP and JQuery

    Like, Like, Like, Like.

    -Butler

  16. #16
    Proficient Member Galago is offline
    MemberRank
    Aug 2011 Join Date
    The NetherlandsLocation
    177Posts

    Re: How to Extend your Client with HTML, PHP and JQuery

    The moodlight isn't working anymore when i add wmode=transperant. The background is white and won't change anymore.

  17. #17
    Proficient Member EvilKiller is offline
    MemberRank
    Jun 2012 Join Date
    NetherlandsLocation
    160Posts

    Re: How to Extend your Client with HTML, PHP and JQuery

    It's suck an easy and nice tutorial and i followed every step but when i'm done mo client won't loade...

  18. #18
    [̲̅$̲̅(̲̅1̲̅)̲̅$ ̲̅] leenster is offline
    MemberRank
    May 2008 Join Date
    KanaadaLocation
    992Posts

    Re: How to Extend your Client with HTML, PHP and JQuery

    Quote Originally Posted by Galago View Post
    The moodlight isn't working anymore when i add wmode=transperant. The background is white and won't change anymore.
    I havent seen this problem before. I am not sure on how to fix that.

    Quote Originally Posted by EvilKiller View Post
    It's suck an easy and nice tutorial and i followed every step but when i'm done mo client won't loade...
    I think you did something wrong while adding params["wmode"] = "transparent";

  19. #19
    Proficient Member Galago is offline
    MemberRank
    Aug 2011 Join Date
    The NetherlandsLocation
    177Posts

    Re: How to Extend your Client with HTML, PHP and JQuery

    If you use RevCMS, don't use ["wmode"] = "transparent".
    Add under
    Code:
    var params = {
    This
    Code:
    "wmode" : "transparent"
    @Leenster, is it possible that this isn't working on RevCMS?

  20. #20
    Enthusiast DemonCreazy is offline
    MemberRank
    Apr 2012 Join Date
    32Posts

    Re: How to Extend your Client with HTML, PHP and JQuery

    like leenster

    Images broken

  21. #21
    Member Dzemanoosh is offline
    MemberRank
    Mar 2012 Join Date
    72Posts

    Re: How to Extend your Client with HTML, PHP and JQuery

    This is amazing!

    Keep it up!

  22. #22
    Apprentice PE1ROX is offline
    MemberRank
    Aug 2012 Join Date
    12Posts

    Support Re: How to Extend your Client with HTML, PHP and JQuery

    I'm sorry guys, u will hate me cause i'm bumping

    Allright, this is realy awesome but when i do this on my hotel it does work on my Computer, on the computer of other people (i've test it) the buttons just dissapear in just like 0.000001 second...

    Well here is my Client.php
    PHP Code:
    <?php

    require_once('./data_classes/server-data.php_data_classes-core.php.php');
    require_once(
    './data_classes/server-data.php_data_classes-session.php.php');



    mysql_query("UPDATE users SET auth_ticket = '', auth_ticket = '".GenerateTicket()."', ip_last = '', ip_last = '".$remote_ip."' WHERE id = '".$my_id."'") or die(mysql_error());

    $ticketsql mysql_query("SELECT * FROM users WHERE id = '".$my_id."'") or die(mysql_error());
    $ticketrow mysql_fetch_assoc($ticketsql);

    $client_port mysql_fetch_assoc($client_port mysql_query("SELECT * FROM cms_settings WHERE variable = 'client_port'"));
    $client_mus mysql_fetch_assoc($client_mus mysql_query("SELECT * FROM cms_settings WHERE variable = 'client_mus'"));
    $client_ip mysql_fetch_assoc($client_ip mysql_query("SELECT * FROM cms_settings WHERE variable = 'client_ip'"));
    $client_variables mysql_fetch_assoc($client_variables mysql_query("SELECT * FROM cms_settings WHERE variable = 'client_variables'"));
    $client_variables_night mysql_fetch_assoc($client_variables_night mysql_query("SELECT * FROM cms_settings WHERE variable = 'client_variables_night'"));
    $client_texts mysql_fetch_assoc($client_texts mysql_query("SELECT * FROM cms_settings WHERE variable = 'client_texts'"));
    $client_swf_path mysql_fetch_assoc($client_swf_path mysql_query("SELECT * FROM cms_settings WHERE variable = 'client_swf_path'"));
    $client_habbo_swf mysql_fetch_assoc($client_habbo_swf mysql_query("SELECT * FROM cms_settings WHERE variable = 'client_habbo_swf'"));
    $client_limit mysql_fetch_assoc($client_limit mysql_query("SELECT * FROM cms_settings WHERE variable = 'cms_clientlimit'"));
    $caca="deltoro";
    if(
    $caca=="delavaca"){

        echo
    "<script>alert(\"Halloo\");</script>
        <meta http-equiv=\"refresh\" content=\"0;url="
    .$adminpath."/index/p/login&do=secretcode\">"

    } elseif(
    $user_rank && $online_count >= $client_limit['value']){ 

    require_once(
    './templates/login_subheader.php');
    require_once(
    './templates/login_header.php'); 
    require_once(
    './templates/client_subheader.php');


    ?>
    <header><style>
        .menu 
            { 
                position:fixed; 
                bottom:45px; 
                left:15px; 
                z-index: 1005 !important; 
                color:#FFF; 
                cursor:pointer; 
            } 
        .button 
            { 
                float:left; 
                padding:3px; 
                margin-right:3px; 
            } 
        #addedcontent 
            { 
                position:fixed; 
                top:5px; 
                left:300px; 
                max-width:400px; 
                min-width:150px; 
                z-index: 1006 !important; 
            } 
        #b-header 
            { 
                cursor:default; 
                padding:5px; 
                text-align:center; 
                background-color:#568BA4; 
                font-size:13px; 
                font-weight:bold; 
                -moz-border-radius: 5px 5px 0px 0px; 
                border-radius: 5px 5px 0px 0px; 
                border:2px solid #66A2BE; 
                border-bottom: 1px solid #000; 
                height:19px; 
                line-height:19px;
            } 
        #b-content 
            { 
                padding:5px; 
                background-color:#E9E9E1; 
                -moz-border-radius: 0px 0px 5px 5px; 
                border-radius: 0px 0px 5px 5px; 
                color:#000; 
            } 
        #close-button 
            { 
                position:absolute; 
                right:5px; 
                top:7px; 
                width:19px; 
                height:20px; 
                background-image:url('images/buttons/close.png'); 
                background-repeat:no-repeat; 
                cursor:pointer; 
                background-position:right top;  
            } 
        #close-button:hover 
            { 
                background-repeat:no-repeat; 
                 
                background-position:left top;  
            } 
        @font-face 
            { 
                font-family: Ubuntu-C; 
                src: url('Ubuntu-C.ttf'); 
            } 
         
        body 
            { 
                font-size: 12px; 
                font-family:Ubuntu-C; 
            } 
    </style> 

    <link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/> 
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script> 
    <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script> 

    <script> 
      $(document).ready(function() { 
        $("#addedcontent").draggable(); 
        $("#addedcontent").hide(); 
      }); 
      function loadpage(page,title) 
      { 
        $("#b-header").html(title + '<div id="close-button" onclick="$(\'#addedcontent\').hide();"></div>'); 
         
        $('#b-content').load("addedcontent/"+page+".php", function()  
        { 
            $("#addedcontent").show(); 
        }); 
      } </script></header>
    <body>
    <div class="menu"> 
            <div class="button" onclick="loadpage('Staff','Medewerkers');"><img src="<?php echo $path;?>/images/buttons/staff.gif"></div> 
            <div class="button" onclick="loadpage('Bots','Nieuwe bot aanmaken');"><img src="<?php echo $path;?>/images/buttons/bots.gif"></div> 
            </div> 
        <div id="addedcontent"> 
            <div id="b-header"> 
                header 
                 
            </div> 
            <div id="b-content"> 
                content 
            </div> 
        </div>  </body>
    <br>


    <?php require_once('./templates/login_footer.php'); }else{ require_once('./templates/client_subheader.php'); ?>
    <script type="text/javascript">
        FlashExternalInterface.loginLogEnabled = true;
        
        FlashExternalInterface.logLoginStep("web.view.start");
        
        if (top == self) {
            FlashHabboClient.cacheCheck();
        }
        var flashvars = {
        "client.allow.cross.domain" : "1", 
                       "client.allow.cross.domain" : "0", 
                        "client.notify.cross.domain" : "1", 
                "connection.info.host" : "85.17.245.102", 
                "connection.info.port" : "30000", 
                "site.url" : "<?php echo $path?>", 
                "url.prefix" : "<?php echo $path?>", 
                "client.reload.url" : "<?php echo $path?>/client", 
                "client.fatal.error.url" : "<?php echo $path?>/clientutils.php", 
                "client.connection.failed.url" : "<?php echo $path?>/clientutils.php", 
                "external.variables.txt" : "http://feam-h.nl/swf/external_variables.txt", 
                "external.texts.txt" : "http://feam-h.nl/swf/external_flash_texts.txt", 
                "use.sso.ticket" : "1", 
                "sso.ticket" : "<?php echo $ticketrow['auth_ticket']; ?>", 
                "processlog.enabled" : "1", 
                "account_id" : "<?php echo $ticketrow['id']; ?>", 
                "client.starting" : "Wacht even! <?php echo $shortname?> wordt geladen.", 
                "flash.client.url" : "<?php echo $client_swf_path['value']; ?>?d=<?php echo time(); ?>", 
                "user.hash" : "31385693ae558a03d28fc720be6b41cb1ccfec02", 
                "has.identity" : "1", 
                "flash.client.origin" : "popup",            
                "logout.disconnect.url" : "<?php echo $path?>/clientutils.php", 
                "logout.url" : "<?php echo $path?>/clientutils.php"<?php if($forwardid 0) { ?>,
                "forward.type" : "<?php echo $forwardid?>",
                "forward.id" : "<?php echo $forwardroom?>"<?php ?>


        };
        var params = {
            "base" : "http://feam-h.nl/swf/",
            "allowScriptAccess" : "always",
            "menu" : "false" 
            
        };
        
        if (!(HabbletLoader.needsFlashKbWorkaround())) {
            params["wmode"] = "opaque";
        }

        FlashExternalInterface.signoutUrl = "<?php echo $path?>/account/logout?token=<?php echo sha1($myrow['password']); ?>";
        
        var clientUrl = "http://feam-h.nl/swf/Habbo.swf";

        swfobject.embedSWF(clientUrl, "flash-container", "100%", "100%", "10.0.0", "http://images.habbo.com/habboweb/63_1dc60c6d6ea6e089c6893ab4e0541ee0/1393/web-gallery/flash/expressInstall.swf", flashvars, params);
     
        window.onbeforeunload = unloading;
        function unloading() {
            var clientObject;
            if (navigator.appName.indexOf("Microsoft") != -1) {
                clientObject = window["flash-container"];
            } else {
                clientObject = document["flash-container"];
            }
            try {
                clientObject.unloading();
            } catch (e) {}
        }
    </script>

    <meta name="description" content="Pearhotel gaafheid" />
    <meta name="keywords" content="Pearhotel gaafheid" />



    <!--[if IE 8]>
    <link rel="stylesheet" href="<?php echo $path?>/web-gallery/static/styles/ie8.css" type="text/css" />
    <![endif]-->
    <!--[if lt IE 8]>
    <link rel="stylesheet" href="<?php echo $path?>/web-gallery/static/styles/ie.css" type="text/css" />
    <![endif]-->
    <!--[if lt IE 7]>
    <link rel="stylesheet" href="<?php echo $path?>/web-gallery/static/styles/ie6.css" type="text/css" />
    <script src="<?php echo $path?>/web-gallery/static/js/pngfix.js" type="text/javascript"></script>
    <script type="text/javascript">
    try { document.execCommand('BackgroundImageCache', false, true); } catch(e) {}
    </script>

    <style type="text/css">
    body { behavior: url(/js/csshover.htc); }
    </style>
    <![endif]-->

    <meta name="build" content="63-BUILD406 - 09.05.2011 23:04 - de" />
    </head>


     <script src="http://code.jquery.com/jquery-latest.js"></script>
      <script>
      $(document).ready(function(){
       setTimeout(function(){
      $("div.ads").fadeOut(7000, function () {
      $("div.ads").remove();
          });
        
    }, 8000);
     });
      </script>


    </div>

    </div>
    <body id="client" class="flashclient">
    <div id="overlay"></div>
    <img src="<?php echo $path?>/web-gallery/v2/images/page_loader.gif" style="position:absolute; margin: -1500px;" />

    <div id="overlay"></div>
    <div id="client-ui" >
        <div id="flash-wrapper">
        <div id="flash-container">
            <div id="content" style="width: 400px; margin: 20px auto 0 auto; display: none">
    <div class="cbb clearfix">
        <h2 class="title">Download nu Adobe Flash Player Version.</h2>

        <div class="box-content">
                <p>Hier kan je Adobe Flash player downloaden:  <a href="http://get.adobe.com/flashplayer/">Installeer flash player</a>. Meer informatie of wil je meer weten over Adobe Flashplayer vind je hier:  <a href="http://www.adobe.com/products/flashplayer/productinfo/instructions/">Meer informatie!</a></p>
                <p><a href="http://www.adobe.com/go/getflashplayer"><img src="./web-gallery/v2/images/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>
        </div>
    </div>
            </div>
            <script type="text/javascript">
                $('content').show();
            </script>

            <noscript>
                <div style="width: 400px; margin: 20px auto 0 auto; text-align: center">
                    <p>If you are not automatically redirected, please <a href="/client">click here</a></p>
                </div>
            </noscript>
        </div>
        </div>
        <div id="content" class="client-content"></div>  





    <script type="text/javascript">
        HabboView.run();
    </script>

    </html>
    <?php ?>

  23. #23
    Apprentice PE1ROX is offline
    MemberRank
    Aug 2012 Join Date
    12Posts

    Re: How to Extend your Client with HTML, PHP and JQuery

    bump!

  24. #24
    Proficient Member Galago is offline
    MemberRank
    Aug 2011 Join Date
    The NetherlandsLocation
    177Posts

    Re: How to Extend your Client with HTML, PHP and JQuery

    Raavi, you have forgotten the wmode part, lol...

  25. #25
    :joy: Jonteh is offline
    MemberRank
    Apr 2007 Join Date
    New York, USALocation
    3,372Posts

    Re: How to Extend your Client with HTML, PHP and JQuery

    fucking love you dude, I saw this on another retro I was on the other day and had some good ideas to put it to use on! thanks!



Advertisement