Minikori Posted September 4, 2008 Posted September 4, 2008 Just trying to make a simple web browser, does anyone know how I could do this? For those who are asking questions, look in the help file first. I'm tired of people asking stupid questions about how to do things when 10 seconds in the help file could solve their problem.[quote name='JRowe' date='24 January 2010 - 05:58 PM' timestamp='1264381100' post='766337'][quote name='beerman' date='24 January 2010 - 03:28 PM' timestamp='1264372082' post='766300']They already have a punishment system for abuse.[/quote]... and his his name is Valik.[/quote]www.minikori.com
cyanidemonkey Posted September 4, 2008 Posted September 4, 2008 (edited) here's a start, this will create the browser window, add it to your GUI code (you'll need to adjust the x/y, width & height of the obj window (line 2) to fit your GUI, proberlly want to put in an error check after the ObjCreate as well). $oIE = ObjCreate("Shell.Explorer.2") $GUIActiveX = GUICtrlCreateObj($oIE, 400, 80, @DesktopWidth-430,@DesktopHeight-150) GUICtrlSetStyle($GUIActiveX, $WS_VISIBLE) $oIE.navigate("http://www.autoitscript.com/") Edited September 4, 2008 by cyanidemonkey My AutoIt Scripts.- AutoHost and Password Enabler for Delta Force 2 Demo.| Caffine for Winamp 2.9x and WRS 2.0 | mp3 directory cleaner | CRAP DJ | A:B:J Radio Automation Software | FFMPEG batch conversion automator
Minikori Posted September 4, 2008 Author Posted September 4, 2008 here's a start, this will create the browser window, add it to your GUI code (you'll need to adjust the x/y, width & height of the obj window (line 2) to fit your GUI, proberlly want to put in an error check after the ObjCreate as well). $oIE = ObjCreate("Shell.Explorer.2") $GUIActiveX = GUICtrlCreateObj($oIE, 400, 80, @DesktopWidth-430,@DesktopHeight-150) GUICtrlSetStyle($GUIActiveX, $WS_VISIBLE) $oIE.navigate("http://www.autoitscript.com/")I have no experience whatsoever in Obj... Any good tutorials? For those who are asking questions, look in the help file first. I'm tired of people asking stupid questions about how to do things when 10 seconds in the help file could solve their problem.[quote name='JRowe' date='24 January 2010 - 05:58 PM' timestamp='1264381100' post='766337'][quote name='beerman' date='24 January 2010 - 03:28 PM' timestamp='1264372082' post='766300']They already have a punishment system for abuse.[/quote]... and his his name is Valik.[/quote]www.minikori.com
Minikori Posted September 4, 2008 Author Posted September 4, 2008 I have no experience whatsoever in Obj... Any good tutorials?Alright got it working, merci. I'd still like a tutorial though. For those who are asking questions, look in the help file first. I'm tired of people asking stupid questions about how to do things when 10 seconds in the help file could solve their problem.[quote name='JRowe' date='24 January 2010 - 05:58 PM' timestamp='1264381100' post='766337'][quote name='beerman' date='24 January 2010 - 03:28 PM' timestamp='1264372082' post='766300']They already have a punishment system for abuse.[/quote]... and his his name is Valik.[/quote]www.minikori.com
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