Just use itunes.
|
|




No it won't... If you look at how the RS client does it, client extends an applet, so when it's on a website, the <applet> tags will call init() instead of main(String[] args) like the JVM calls when ran through the command line. A simple way to allow both would be: inside main, instantiate a JFrame, and your own player, and add the player instance to the content pane of the frame.
Example:
Code:public class Player extends Applet { public void init() { //init your player n stuff here } public static void main(String[] args) { Player player = new Player(); player.init(); //Someone confirm if this is actually needed? // or does the Applet constructor already call it JFrame frame = new JFrame("A KULIO MUSIC PLAYER"); frame.setSize(WIDTH, HIEGHT); frame.getContentPane().add(player); frame.setVisible(true); } }
Something as simple as the above would be a nice way... Not only do you learn how applets work, you don't use Jagex's bulky way of doing certain things


i c wut u did dere. will it be released? looks sexy![]()


why would i want to make it work off a webpage? its purpose is for the webpage...and if i was to make it work off the webpage i think people would rather us windows media player...and quit franktly i dont give a fuck if u hate to see the outcome...and idc what you think either.


Pretty kinky way of starting the project.Good luck, good work.
| « Cadmium Isle | BUllet Cheat Client by Verified, deob, class's, and jframe by Pablo » |
| Thread Information |
Users Browsing this ThreadThere are currently 1 users browsing this thread. (0 members and 1 guests) |