Jump to content

mashrino

Members
  • Posts

    11
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

mashrino's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Hi. I found solution for the above. Is it possible to click an image without moving the mouse. And could you please give me an sample code for waitforimagesearch function, Thanks in advance.
  2. Thank you very much Melba. I am getting another error now. Could you please help me on this.
  3. Hi, I am new to AutoIT. When I try to run the attached code (Imagesearch.au3) I am getting error. Please find the attachment and kindly provide me a solution. Thanks in advance. ImageSearchDemo.au3
  4. Hi, I am trying to get button id. But when I use autoit info to get the button id, that button seems to be grouped. Autoit info is not selecting a particular button instead autoit info selecting a block. How can I get that particular button id alone. Thanks in advance.
  5. Hi, I have an *.aspx link (sorry I am not from computer science background, so I don't know much about it). I want to access the buttons of the aspx link through internet explorer. Could you please help me. How to access the buttons in internet explorer. I used Autoit info to get the button IDs but I was not able to get the button IDs. I used inspect.exe and able to the read the button names, but I am not able to get any IDs. Could you suggest how to proceed with this issue/ any other idea. Thank you.
  6. Hi guys, I have 20 checkboxes. Each checkbox has one function with it. If I select say 15 out of 20 checkboxes , only 15 checkboxes related functions has to be performed. Can you please help me on this. Thanks.
  7. Thanks chimp it is working.
  8. $Output has "notepad" which I give as input through command prompt
  9. Thanks for the reply. I can find the variable is a string. In command window I am giving "echo notepad | example.exe ". When $sOutput and $string2 (where I have already declared "notepad") matches it should go inside the if condition. But it is not working. Code: MsgBox($MB_SYSTEMMODAL, "", $sOutput) --> It gives the result "notepad" Global $string2 = "notepad" if $sOutput == $string2 Then MsgBox($MB_SYSTEMMODAL, "", "entered the if condition" & $string2) EndIf
  10. Hi, Local $sOutput While True $sOutput &= ConsoleRead() If @error Then ExitLoop Sleep(25) WEnd MsgBox($MB_SYSTEMMODAL, "", $sOutput) for the above code I am reading data from a command window using consoleread. The output I am getting from ConsoleRead() is stored in a variable $sOutput. Here my question is the output I am getting from consoleread is a string? Thanks
×
×
  • Create New...