lolwut Posted March 27, 2007 Posted March 27, 2007 (edited) 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: For mines:Could somebody direct me in the right direction for this? Thanks. Edited March 27, 2007 by lolwut
lolwut Posted March 27, 2007 Author Posted March 27, 2007 Oh I'm so sorry for this thread, I didn't realise my answer was in the help file. I feel so dumb now :S Please lock, sorry.
Valuater Posted March 27, 2007 Posted March 27, 2007 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)
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now