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?
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.
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>