Jump to content

ileandros

Active Members
  • Posts

    590
  • Joined

  • Last visited

About ileandros

  • Birthday 04/29/1989

Profile Information

  • Location
    Belgium, Brussels
  • Interests
    Kitchen, sport, pets, software engineering(though it is not my job)

Recent Profile Visitors

669 profile views

ileandros's Achievements

Universalist

Universalist (7/7)

13

Reputation

  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. Do a google search. You will find plenty of them
  7. If your download is called from your script then your script will remain frozen till it returns. Provide a snippet
  8. You can take a loot here if u want
  9. Not all aplications accept controlclick
  10. 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?
  11. 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
  12. 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
×
×
  • Create New...