HTML question

Discussion in 'All other topics' started by Bobbinbob, Sep 19, 2006.

  1. Bobbinbob

    Bobbinbob Regular member

    Joined:
    Feb 4, 2005
    Messages:
    117
    Likes Received:
    0
    Trophy Points:
    26
    I have this flash game that always loads up automatically when i open my page. I like having the game there, but is there a way to have it not load automatically? so that if the person visiting the page wants to play it they can press a button and play it, but if not just skip over it without it loading? possible, yes?
     
  2. Bobbinbob

    Bobbinbob Regular member

    Joined:
    Feb 4, 2005
    Messages:
    117
    Likes Received:
    0
    Trophy Points:
    26
    bumpy for my tummy
     
  3. tycobb

    tycobb Regular member

    Joined:
    May 20, 2006
    Messages:
    2,062
    Likes Received:
    1
    Trophy Points:
    46
    Yep.It depends on the situation but you can get a graphic(either make your own or find one on the net)that looks like a button then place in wherever on the page you like Now use it as the link and link to the game.

    The result is when the user hits the button(thats really a link in disguise)it takes them to the game.
     
  4. teemu

    teemu Member

    Joined:
    Jun 16, 1999
    Messages:
    32
    Likes Received:
    0
    Trophy Points:
    16
    Or you can use basic html form which I think is much more convenient way to create a button...

    <form action="thegame.html" method="post">
    <input type="submit" value="Launch game!" />
    </form>
     

Share This Page