How do I load RuneScape?

Discussion in 'Programming General' started by Mogyt, Jun 24, 2007.

How do I load RuneScape?
  1. Unread #1 - Jun 24, 2007 at 12:48 PM
  2. Mogyt
    Referrals:
    0

    Mogyt Guest

    How do I load RuneScape?

    Hi. I have created window, but don't know how to load to it RuneScape. If you know how to do it please post. Thanks for help :)
     
  3. Unread #2 - Jul 2, 2007 at 9:14 PM
  4. Doombringe1
    Joined:
    May 19, 2007
    Posts:
    471
    Referrals:
    0
    Sythe Gold:
    0

    Doombringe1 Forum Addict

    How do I load RuneScape?

    well what you have to do is put the link in the window duh. You have to make the window the same size as the runescape window and then you just put in your script for the window to open the runescape window.
     
  5. Unread #3 - Jul 3, 2007 at 6:12 AM
  6. speljohan
    Joined:
    Apr 24, 2005
    Posts:
    1,450
    Referrals:
    3
    Sythe Gold:
    0

    speljohan Guru
    Visual Basic Programmers

    How do I load RuneScape?

    or you could download the classes, hook the runescape canvas using an updater and put the canvas in a JFrame.
     
  7. Unread #4 - Jul 3, 2007 at 5:30 PM
  8. Doombringe1
    Joined:
    May 19, 2007
    Posts:
    471
    Referrals:
    0
    Sythe Gold:
    0

    Doombringe1 Forum Addict

    How do I load RuneScape?

    speljohan. OMG i cant believe i didnt think of that.. That is so much easier than what i said. Thank you buddy you just made my life a lot easier.
     
  9. Unread #5 - Jul 3, 2007 at 6:55 PM
  10. speljohan
    Joined:
    Apr 24, 2005
    Posts:
    1,450
    Referrals:
    3
    Sythe Gold:
    0

    speljohan Guru
    Visual Basic Programmers

    How do I load RuneScape?

    sarcasm much? :p
     
  11. Unread #6 - Jul 4, 2007 at 10:07 AM
  12. SidStudios
    Joined:
    Mar 14, 2007
    Posts:
    201
    Referrals:
    0
    Sythe Gold:
    0

    SidStudios Active Member

    How do I load RuneScape?

    How do you use a JFrame? I use JCreator LE 4.0, I'm new to Java.
     
  13. Unread #7 - Jul 4, 2007 at 10:31 AM
  14. speljohan
    Joined:
    Apr 24, 2005
    Posts:
    1,450
    Referrals:
    3
    Sythe Gold:
    0

    speljohan Guru
    Visual Basic Programmers

    How do I load RuneScape?

    make your base application inherit a JFrame. Let me write a quick one up:
    Code:
    import javax.swing.*;
    
    public class HelloWorld extends JFrame {
    
    public static void main(String []args) {
    HelloWorld app = new HelloWorld();
    }
    
    public HelloWorld() {
    this.setSize(400,600);
    this.setTitle("My Test Window");
    this.setVisible(true);
    }
    }
    not sure if it will works as i just wrote out of my head.
     
< Dev-C++ help | SidNET 0.3 >

Users viewing this thread
1 guest


 
 
Adblock breaks this site