Jump to content

ileandros

Active Members
  • Posts

    590
  • Joined

  • Last visited

Everything posted by ileandros

  1. I have used a lot pixelsearch and imagesearch funtions, maybe i could help you but i am not understanding how your android application works... Your image tells me nothing and your explanation is booring... Give a ream image of your application and explain what you want to do. Or even a video of your application running would be good
  2. I would do it like this if i was you. This is how you can toggle it. HotKeySet("s", "_start") HotKeySet("p", "_pause") HotKeySet("e", "_exit") $Active = 0 $button = "left" While (True) If $Active = 1 Then MouseClick($button) Sleep(1000) EndIf WEnd Func _start() $Active = 1 EndFunc Func _pause() $Active = 0 EndFunc Func _exit() Exit EndFunc
  3. #include <ButtonConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> $Form1 = GUICreate("Auto Click", 282, 120, 192, 124) $Button1 = GUICtrlCreateButton("F2 para iniciar", 8, 8, 113, 41) $Button2 = GUICtrlCreateButton("F3 para pausar", 136, 8, 129, 41) $label = GUICtrlCreateLabel("Number: ", 130, 85) $input = GUICtrlCreateInput("", 180,80,80,25) Dim $Form1_AccelTable[2][2] = [["{F2}", $Button1],["{F3}", $Button2]] GUISetAccelerators($Form1_AccelTable) GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $Button1 $First = 0 Do MouseClick("Left") Sleep(1000) $First += 1 Until $First = GUICtrlRead($input) EndSwitch WEnd
  4. Hey guys i just updated it because i used it on a project so i needed to update it for my use. Check 1st post for update
  5. Your script is wrong all the way it is. I am not sure what you are trying to do and how. Do you want a running script that will wait until you press a hot key and then it will react? Check the IsPressed function if so. Your above script must get stuck while trying to send shift up since you are holding it down.
  6. Why don't you do it with python...???
  7. I understand noone of you.
  8. Do a google search. You will find plenty of them
  9. If your download is called from your script then your script will remain frozen till it returns. Provide a snippet
  10. You can take a loot here if u want
  11. Not all aplications accept controlclick
  12. Since your returning the colour in memory i don't think you will need a pixel function. So you want to block the message via memory.Is there a button which can help you block the message or a command(example: /block) which could block it. Since we don't know which chat client it is we can't help that much... Edit: I am finding some mistakes in the above script. Does it work for you?
  13. Hi, i am not really sure if i understand you. So you have a chat client, you are reading the chat history and you want to play a sound and block when someone writes on green and only accept the white letters??? If it is like this then just return the colour of the chat and compare to green or white
  14. Create a small GUI with an object and iecreateembedded in it Then use it to navigate each link you want to download. If it is a direct link then it will download, if it something else then use ie automatation to download what you want. I still am not sure what you trying to achieve
  15. So you have the url and then when u navigate it the download starts? Give us a link so we can understand what your saying because else we are just guessing
  16. How does your download start?? You click on a link? You insert a link? You are asking too much without even providing a piece of code besides that i think that your hidding something. Provide more informations
  17. Yep, that was it
  18. Did it already many times
  19. Hello, I formated my computer. I reinstalled autoit but not to the local drive. While trying to install scite i get this error message. Any ideas what is going on? Cheers
  20. Check for IpTool on example scripts. I think I have added clear cookies function but I'm not sure i updated it
  21. SendMessage!!! Cheers
  22. None of what I know. I want to do it to avoid some stuff explorer gives me depending on where my mouse is. I know that mouse is above all windows activated or not so I'm trying to pass fake informations to the background window tha the mouse is in a different position than the mouse I am using
  23. I think that ie udf can't help me here. I can't read any properties or anything else that would help me.
  24. It's my IE browser
×
×
  • Create New...