![]() |
|
|
#1
|
||||
|
||||
|
If you've ever woundered how to steal a graphic, flash game, sometimes even a program of a website then i have a solution for you.
First of all open up a text editor and save the file as "savetodisk.html". Then enter in this: Code: HTML Code:
<html> <head><title>Save File to Disk</title></head> <body> <a href="">Right click this link, and click save target as...</a> </body> </html> In this example im going to download a file of miniclip.com. Quote:
Locally on the web server this would look something like: C:\inetpub\miniclip\games\blobs\en . this is usefull to note when using this technique. So what i need to do is work out what files exist on the server, and what is the filename if the game on that server. If you look at the source code of the web page (right click around the region of game and click view source) you can then work this out. Use the find function of your text editor (or press ctrl + F). In this case it's a flash file which has an ".swf" extension. So type in ".swf" in the search field . This is what you should get: Code: HTML Code:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="554" height="404" id="blobs"> <param name="movie" value="blobs_offsite.swf" /> <param name="quality" value="high" /> <param name="menu" value="false" /> <param name="allowScriptAccess" value="always" /> <embed src="blobs_offsite.swf" width="554" height="404" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" menu="false"></embed> </object> So we now know that the games file name is called "blobs_offsite.swf". Finally for the last step... In the "savetodisk.html" webpage you've just created, change <a href="">...</a> to <a href="http://www.miniclip.com/games/blobs/en/blobs_offsite.swf">...</a> save and open the file "savetodisk.html" in your web browser. Right click the link on the page and click "save target as..." then save the file to location to wish. At this stage you can either open the ".swf" in you web browser or as an alternitive you can create a new web page in your text editor. Like so... Code: HTML Code:
<html> <body> <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="100%" height="100%"> <param name="movie" value="blobs_offsite.swf" /> <param name="quality" value="high" /> <param name="menu" value="false" /> <param name="allowScriptAccess" value="always" /> <embed src="blobs_offsite.swf" width="100%" height="100%" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" menu="false"></embed> </object> </body> </html> [The End]
__________________
Thanks |
|
#2
|
|||
|
|||
|
Hi dude wow
|
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|