Archived

This topic is now archived and is closed to further replies.

TheDoctor

Another test post

Recommended Posts

2 didn't work! How do you find out the url for the game? all the games I've seen are in a html page.

You have to look through the HTML coding of the web page. Look for the .SWF file, sometimes it will be there sometimes they hide it on many layers of html and links.

 

The way I do it is I go to the top of the browser (IE) and click View, then click Source. That will open the HTML for you to search. Try it here:

 

http://www.miniclip.com/battleships.htm

 

When it opens, go to View and click Source. When that page opens make it full screen then click Edit, then click Find. In the Find box type swf and click "Find Next". You will find several instances of swf in the text but you are looking for the one that points to that game. In this case it's battleship. THe code you are looking for looks like this:

 

<param name="movie" value="gamefiles1234/battleships.swf">
                               <param name="quality" value="high">
                               <param name="menu" value="false">
                               <embed src="gamefiles1234/battleships.swf" width="572"

 

Take note of this part...

 

gamefiles1234/battleships.swf

 

That's only a partial URL so what you have to do is add that partial URL to the sites main URL, in this case:

 

http://www.miniclip.com/

 

So you add the partial URL to the main URL to look like this:

 

http://www.miniclip.com/gamefiles1234/battleships.swf

 

That's how you find it.

Share this post


Link to post
Share on other sites