Vindicator209 Posted August 12, 2006 Posted August 12, 2006 I have an input box named $url so this is the rest$url=InputBox("URL?","URL?")Run("C:\Program Files\Internet Explorer\IEXPLORE.EXE $url")appearantly, it doesnt work, is there another way to get the same effect without doing this?$url=InputBox("URL?","URL?")Run("C:\Program Files\Internet Explorer\IEXPLORE.EXE")WinWait("Microsoft Internet Explorer")sleep(1000)send($url) [center]"When you look at old, classic games like Snake, you often put it off because it's such a simple game, but it's only when you actually try and create your own unique game from scratch, do you finally appreciate those games."[/center][center]Don't ask for answers if you haven't TRIED yet![/center][center]Most answers can be answered in the help file! Use it![/center]
poisonkiller Posted August 12, 2006 Posted August 12, 2006 Use IE.au3. Its in latest stable Autoit v3 version(now it's 3.2). #include <IE.au3> $url = InputBox("URL", "URL?") _IECreate($url)
bluebearr Posted August 12, 2006 Posted August 12, 2006 This should work: $url=InputBox("URL?","URL?") Run("C:\Program Files\Internet Explorer\IEXPLORE.EXE " & $url) BlueBearrOddly enough, this is what I do for fun.
Zib Posted August 12, 2006 Posted August 12, 2006 There is numerous ways to do this. Check this post for more information:http://www.autoitscript.com/forum/index.ph...mp;#entry220386
ShonGail Posted August 12, 2006 Posted August 12, 2006 I have an input box named $url so this is the rest$url=InputBox("URL?","URL?")Run("C:\Program Files\Internet Explorer\IEXPLORE.EXE $url")appearantly, it doesnt work, is there another way to get the same effect without doing this?$url=InputBox("URL?","URL?")Run("C:\Program Files\Internet Explorer\IEXPLORE.EXE")WinWait("Microsoft Internet Explorer")sleep(1000)send($url)Hello Your command is misformattedIt shouldn't be "C:\Program Files\Internet Explorer\IEXPLORE.EXE $url" but :"C:\Program Files\Internet Explorer\IEXPLORE.EXE" & $urlSo if the user wants to open google.fr :the command interpreted by Run will be : C:\Program Files\Internet Explorer\IEXPLORE.EXE google.frand not :C:\Program Files\Internet Explorer\IEXPLORE.EXE $url
Vindicator209 Posted August 12, 2006 Author Posted August 12, 2006 (edited) ahh! thanks! thanks! thanks! Edited August 12, 2006 by MethodZero [center]"When you look at old, classic games like Snake, you often put it off because it's such a simple game, but it's only when you actually try and create your own unique game from scratch, do you finally appreciate those games."[/center][center]Don't ask for answers if you haven't TRIED yet![/center][center]Most answers can be answered in the help file! Use it![/center]
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