8218 Posted January 30, 2005 Posted January 30, 2005 How do i run Internet Explorer in maximize? If i type Run("Iexplore.exe", "", @SW_MAXIMIZE) it says it cant find the file? please help me
DirtyBanditos Posted January 30, 2005 Posted January 30, 2005 How do i run Internet Explorer in maximize? If i type Run("Iexplore.exe", "", @SW_MAXIMIZE) it says it cant find the file? please help me<{POST_SNAPBACK}>hi look on exampe´l folder on your autoit3 install!Or reade the Autoit3 helpfile pls Thx you!$rc = _RunDOS("start http://www.dirtyBanditos.de.vu/")
MHz Posted January 30, 2005 Posted January 30, 2005 Run(@ProgramFilesDir & "\Internet Explorer\IExplore.exe", "", @SW_MAXIMIZE) You need to let Autoit know where IExplore.exe is.
8218 Posted January 30, 2005 Author Posted January 30, 2005 hi look on exampe´l folder on your autoit3 install!Or reade the Autoit3 helpfile pls Thx you!$rc = _RunDOS("start http://www.dirtyBanditos.de.vu/")<{POST_SNAPBACK}>thx for help
SlimShady Posted January 30, 2005 Posted January 30, 2005 (edited) Run(@ProgramFilesDir & "\Internet Explorer\IExplore.exe", "", @SW_MAXIMIZE)You need to let Autoit know where IExplore.exe is.<{POST_SNAPBACK}>Exactly.I made two examples for you.;Example 1 Run(@ProgramFilesDir & '\Internet Explorer\IEXPLORE.EXE www.autoitscript.com') Sleep(5000) ;Example 2 Run('explorer.exe http://www.autoitscript.com', @WindowsDir) Edited January 30, 2005 by SlimShady
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