-
Posts
76 -
Joined
-
Last visited
Everything posted by elmoi0010
-
Hello guys. Is there a way to do something like this... I need to check a in one .BMP image if inside that .BMP have two exact images. and if yes? Then delete. example: image: A B C A .. (Got two "A" images in this case.) then delete. image 2: A B C D (No exact images) Then save. I was think if save all images in an array and to check if some of that array are in the .BMP file and if in the image found two exact omages of one array. Then delete. Just to know if i can do this with autoit. and if anyone got an example of it or what func should i use. Am using autoit like 4 or 5 month ago so am familiarized with it. Thanks in advanced to all.
-
You are right, maybe its working but i want to test the URL. Maybe the page is down. Its my question, thanks in advanced @jguinch <3
-
Hi again guys, am here with a noob question e.e. How can i check if i get an active URL? because sometimes my internet is not working propperly and then i get the error saying, "YOU ARE NOT CONNECTED TO INTERNET" in internet explorer. and i want to check if there a way to test if the webpage is active. I was triying with _inetgetsource but dont seems to work. $findtl = _GetIP $check1 = _INetGetSource("https://www.happypanda.com") If StringInStr($check1,$findtl) Then ConsoleWrite ("YES") EndIf Thanks in advanced.
-
Is just visit websites to my webpages who i created under popup rotator script. at some certain seconds it just change the URL and then reload the webpage so is other of my webpages. Just for my own testing porpuse, thanks in advanced @JLogan3o13 <3 .
-
Hello, as tittle says. I was using _IEcreate = (.....,0,0,0,0)And it works but when i click on link it gets visibly again... $lol = _IEPropertyGet($oIE,"HWnd") WinSetState($lol, "", @SW_HIDE)I tryed getting the HWnd with _IEPropertyGet and then hide it with Winsetstate and @SW_Hide ... But again like the first, when i click a new link it gets visible again.. Anyone know a method for just let it invisible or completely hidden? Thanks in advanced.
-
Thanks in advanced i just created a new IE using $oIE2 = _IECreate('happypanda2.com',0,0,0,0) and it works invisible, but when i click to get the popup? the pop up got visible again. Is there a way to auto HIDE that pop up? Thanks in advanced. @Melba23 No problem bro, my bad. I will not do it again, no problem.
-
bump? /msgtooshort
-
Hello guys am here again with a noob question. I got this code: _IELoadWait($oIE) _IENavigate($oIE,"http://www.happypanda.com") _IELoadWait($oIE) _IELinkClickByText($oIE,"Click to watch a happy panda") 'HERE I GOT A POP UP AFTER I CLICK TO WATCH THE PANDA. Sleep(2000) 'Here i navigate to other webpage in another tab $oIE.Navigate2('http://happypanda2.com', $nt) 'In the new tab i cannot find the text and i already attached the IE _IELoadWait($oIE,"1000") Sleep(10000) _IEAttach("Happy panda") _IELinkClickByText($oIE, "start happy panda") _IELoadWait($oIE,"5000")But i cannot click on the new tab "start happy panda" because i cannot find it, what the problem if i already attached to that tab? or that is what i think. Thanks in advanced to all.
-
I swear i used that one, but not work. And now? Now it working, lol really dont know. Thanks in advanced bro, and sorry my noob question. Good job
-
Hello, am triying to click a button without name or ID. i searched all threads and test all possibly codes triying to figure it out but nope. No one is working. I tryed several methods but with no results. Thanks in advanced to all. This is the HTML of the button. <td><input type="submit" value="Login" class="classname"> <a href="register.php" class="classname">Register</a> </td>and this is my code. $oTDs = _IETagnameGetCollection($oIE, "TD") For $oTD in $oTDs If String(_IEPropertyGet($oTD, "innertext")) = "Login " Then _IEAction($oTD, "focus") _IEAction($oTD, "click") ExitLoop EndIf Next Thanks in advanced for the help and for your time, thanks in advanced.
-
Good morning, am here again.. Is there a way to get just the images who have "paso_0","paso_1" from URL with "_IEImgGetCollection"? i tryed this from autoit help webpage ; Create browser at AutoIt homepage, get Img collection ; and display src URL for each #include <IE.au3> #include <MsgBoxConstants.au3> Local $oIE = _IECreate("http://www.recetasgratis.net/receta-de-limonada-brasilena-57084.html") Local $oImgs = _IEImgGetCollection($oIE) Local $iNumImg = @extended Local $sTxt = "There are " & $iNumImg & " images on the page" & @CRLF & @CRLF For $oImg In $oImgs $sTxt &= $oImg.src & @CRLF Next MsgBox($MB_SYSTEMMODAL, "Img Info", $sTxt) _IEQuit($oIE) I get the image URL's but i just those who have "paso_0","paso_1". Something like stringregexp but i really dont know how, new to this.. Thanks in advanced to all guys.
-
I created the IE but i cannot send any comand to it, this is my code so far. #include <IE.au3> Local $oIE = Run(@ProgramFilesDir & "\Internet Explorer\iexplore.exe -noframemerging") Sleep(4000) $1oIE = _IEAttach($oIE) _IENavigate($1oIE,"youtube.com")And i got this errors: --> IE.au3 T3.0-1 Warning from function _IEAttach, $_IESTATUS_NoMatch --> IE.au3 T3.0-1 Error from function _IENavigate, $_IESTATUS_InvalidDataTypeThanks in advanced to all.
-
I cannot find any reference of that comand. Can you ive me a example? Thanks in advanced.
-
Hello sorry to post again but i have a question. I have a script that works perfectly as i want and thanks to all for your help, but is there a way to open a new instance of that script? or multiple session or internet explorer? like run multiple times that script, because it dont need to have cookies of previous session of IE, no is like create a new IE with no cookie, no history, no cache, no nothing. Anyone can help me a little bit? i will try to figure it out, am here to learn as much as possible thanks in advanced to all.
-
Thanks in advanced, worked. <3
-
The script just click the button but dont stop until the ID="email" got the word "@flurred.com", it just click the button. I need to click the button until the ID="email" got the word "@Flurred.com" , sorry and thanks.
-
Still dont work bro :s, god is very dificult :s.
-
Anyone can help me out? Thanks in advanced to all.
-
Something like that but dont work.. Am tryed this and i cant make it work: #include <IE.au3> $oIE = _IECreate("http://temp-mail.org/") $2em = _IEGetObjById($oIE,"mail") $1em = StringInStr($2em,"@flurred.com") $mal = _IEGetObjById($oIE,"click-to-delete") Do _IEAction($mal,"click") Sleep (1000) Until $mal = StringSplit($2em,"flurred.com")
-
Hello as tittle said i need to click this ID="click-to-delete"Until ID="email"Got some of this text, @yahoo.com @gmail.com @htomail.com.mx, i tryed with StringInStr, Innertext, and things like that but really i cant make it work, i decide to create a program who help me to save time on my work so am more effiecient doing my excel tables. Sorry my bad english, and thanks in advaced to all. Thanks.
-
Hello bros, am triying to get the value of this textbox. I triyed: -Innertext -innerhtml -copy and things like that, if anyone can help me? thanks in advanced.
-
Random numbers from millions to millions?
elmoi0010 replied to elmoi0010's topic in AutoIt General Help and Support
Thanks bro -
Hello guys, is there a way to do something like this: $pwd = "" Dim $aSpace $digits = 8 For $i = 1 To $digits $aSpace = Chr(Random(48, 57, 1)) ;0-9 $pwd &= $aSpace Next ConsoleWrite("Your password (" & $digits & " digits): " & $pwd & @CRLF) But with a range of "7000000" to "27000000", Thanks in advanced and sorry for my noob question.
-
Send tab until find an id by _IEGetObjMyID?
elmoi0010 replied to elmoi0010's topic in AutoIt General Help and Support
Anyone know how ? e.e BUMP<3 -
Send tab until find an id by _IEGetObjMyID?
elmoi0010 replied to elmoi0010's topic in AutoIt General Help and Support
Is to click and facebook page like and upload the name of the page via FTP to my homework e.e! EDIT1: I got all the code and the FTP is working. what i done so far is: *Connect to FTP *Get the name i just need to click the Like. u.u