GabrielaC81 Posted February 1, 2012 Posted February 1, 2012 I tryed to create my first scripts and I'm already stucked Can you guys help me please to find out what's wrong? I'm not a developer nor I have development skills. Ex. 1: #Include $s_Url = "http://youtube.com" _IECreate ( $s_Url, 0, 1,0 , 1 ) And on F5 I get: >"C:\Program Files (x86)\AutoIt3\SciTE\..\autoit3.exe" /ErrorStdOut "C:\Users\xxxxx\Desktop\Automation Testing\My first Script - Copy.au3" C:\Users\xxxxx\Desktop\Automation Testing\My first Script - Copy.au3 (13) : ==> Cannot parse #include.: Ex. 2: exaclty as it appears in their Help file: #include <IE.au3> Local $oIE = _IECreate("www.autoitscript.com") I get only >"C:\Program Files (x86)\AutoIt3\SciTE\..\autoit3.exe" /ErrorStdOut "C:\Users\gcascava\Desktop\Automation Testing\My first Script - Copy.au3" Not that wuould help me to give another hint, becuase I'm a profane, but I'm very disapointed I got stucked so early in the procces:((
czardas Posted February 1, 2012 Posted February 1, 2012 Welcome to the AutoIt community. You posted this in the wrong forum. This is not a help and support forum. You need to request the topic be moved to General Help and Support. operator64 ArrayWorkshop
Moderators JLogan3o13 Posted February 1, 2012 Moderators Posted February 1, 2012 (edited) Hi, GabrielaC81, welcome to the forum. The error is telling you that you need to include the file IE.au3. Your first line of code just says #Include $s_Url = "http://youtube.com" _IECreate ( $s_Url, 0, 1,0 , 1 ) It should read: #include <ie.au3> $s_Url = "http://youtube.com" _IECreate ( $s_Url, 0, 1,0 , 1 ) Edited February 1, 2012 by JLogan3o13 "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum!
GabrielaC81 Posted February 1, 2012 Author Posted February 1, 2012 Sorry for posting on the wrong section. Could an admin move my thread to General Help and Support please?
GabrielaC81 Posted February 1, 2012 Author Posted February 1, 2012 $s_Url = "http://youtube.com" _IECreate ( $s_Url, 0, 1, 0 , 1 ) $s_Url = "http://youtube.com" _IECreate ( ^ ERROR >Exit code: 1 Time: 0.215
Guest Posted February 1, 2012 Posted February 1, 2012 It should be Like Below: #include <IE.au3> $s_Url = "http://youtube.com" _IECreate ( $s_Url, 0, 1, 0 , 1 )
somdcomputerguy Posted February 1, 2012 Posted February 1, 2012 Try it this way #include <IE.au3> $s_Url = "http://youtube.com" _IECreate ( $s_Url, 0, 1, 0 , 1 ) - Bruce /*somdcomputerguy */ If you change the way you look at things, the things you look at change.
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