can someone be able to make a video of doing this cuz i dont get it
Sorry no vid, may help explain some things though. First of all, see the two downloadable files attatched to this post (theyre at the bottom). Well download them and then copy them to your phones memory card the same way you would if copying and pasting files onto a usb drive (If you dont have a card reader on your computer then I dont know how you would do this, but I bought one for like $7 at best buy a while ago). I like to keep the .html file and .jar file in the same folder on my memory card, you might want to do the same. Then insert the memory card into your phone, find the html file on your phone, and open the html file. From there it will automatically install the game onto your phone, you should see it in the game browser.
^That is just to show you how to install it once you've created the .html file, you can use my example to download the actual pacman game if you want, I also made several other .html files for games that I downloaded and Ill upload them if you want me to.
How I created the .html file:
1) I copied the example at the begginning of this post (the red text is what I changed from the example) to get this:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>
Pac-Man</title>
</head>
<body>
</br></br></br></br>
<h1 style="background-color:#F0E68C;">
<p><center><a style="text-decoration: none" href="
Pac-Man.jar" >Game
</a></center></p>
</h1>
</body>
</html>
2) Notice that the red text in
href="Pac-Man.jar" is the EXACT file name of the .jar file, it should be that way for all the .html files you create
3) You can make your .html files with notepad but make sure to save them with .html at the end. I like to add HTML_ at the begginning for convenience and organization.
4) ALSO, when you save them, select the "save as" option and make sure you change "save as type:" from "Text Documents (*.txt)" to "All files". Because of this the ".html" that you should have added to the end of the filename will make the file become an .html file.
I hope this helps, and sorry if I get something wrong since Im new to this stuff.