Jump to content

Site to appear in my GUI.


lolwut
 Share

Recommended Posts

Well basically I'm making a game menu. I need it to connect to and display my site, which shows bug fixes and so on, in a small area.

I've seen this done in many MMOs.

Like:

Posted Image

For mines:

Posted Image

Could somebody direct me in the right direction for this?

Thanks.

Edited by lolwut
Link to comment
Share on other sites

Well, this may help too

#include <GUIConstants.au3>

$Form2 = GUICreate("", 580, 466, 120, 100)

$oIE = ObjCreate("Shell.Explorer.2")
$GUIActiveX            = GUICtrlCreateObj        ( $oIE,         -285, -1100, 700, 1300)
GUISetState ()       ;Show GUI

$oIE.navigate("http://fate.netgame.com/guide/to_st_ep_00.php")


While 1
    $msg = GUIGetMsg()
    
    Select
        Case $msg = $GUI_EVENT_CLOSE
            ExitLoop
    EndSelect
    
Wend

8)

NEWHeader1.png

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...