-
Posts
590 -
Joined
-
Last visited
Content Type
Forums
Downloads
Forum Articles
Events
Everything posted by ileandros
-
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
-
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
-
#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
-
MouseClick while manually holding shift
ileandros replied to blondie's topic in AutoIt General Help and Support
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. -
Why don't you do it with python...???
-
I understand noone of you.
-
Do a google search. You will find plenty of them
-
Close a window during download
ileandros replied to jerem488's topic in AutoIt General Help and Support
If your download is called from your script then your script will remain frozen till it returns. Provide a snippet -
You can take a loot here if u want
-
Not all aplications accept controlclick
-
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?
-
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
-
Yep, that was it
-
Did it already many times
-
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
-
SendMessage!!! Cheers
-
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
-
I think that ie udf can't help me here. I can't read any properties or anything else that would help me.
-
It's my IE browser