Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/30/2019 in all areas

  1. The newer version of Windows 10 come with, in every release, better "Dark mode" but, it never gets quite done. So, I'm using the High Contrast theme but, the color selection interface leave much to be desired. Hence this "Fine tuner" for the theme: ( mouse over, will show a tip of what a column of controls are for ) Next in line is to have a preview but I'll need some help ( requested here ), to get it done. Solved Is functional as is. If you change a color with the windows interface, you can later fine tune it with this. Edit1: Changed the criteria: Is now a "MyFineTuned.theme". The other trend of thought had basic problems. This is a better approach. Edit2: still incomplete but more functional. Still looking for a way to get the title colors for Win32 GUI right Done. The files are now in the downloads section .
    1 point
  2. I was thinking more of these trace lines and also guess the If was never true since you have the color as string! Have a look at this version and see what it does for you. WinActivate("TEST") HotKeySet("{ESC}", "cancel") Local $color While 1 $color = PixelGetColor (165, 550) ConsoleWrite('+ $color = ' & $color & " - " & Hex($color, 6) & @CRLF) ;### Debug Console If $color = 0x41C80F Then sleep(1000) ConsoleWrite('> Left click on (165,550)' & @CRLF) ;### Debug Console MouseClick("left", 165,550) ;CHECK JOB Else Sleep(1000) ConsoleWrite('! Left click on (550,630) ' & @CRLF) ;### Debug Console MouseClick("left", 550,630) EndIf Sleep(2000) WEnd Func cancel() Exit EndFunc So you really need to try and understand what you are doing and how to properly go about testing! Jos
    1 point
  3. Did you do what I suggested and add those debug statements so you can see why it is doing that? You are the only person that can do this! Jos
    1 point
  4. Ok.. so what exactly in not working at the moment as that explanation 2 posts up isn't clear to me? Just add some consolewrite() statements in the script so you can trace what the script is doing exactly when running from SciTE. Jos
    1 point
  5. You seriously think we would be able to answer that without being able to test it ourselves? So what exactly are you trying to do and what do you expect it to do? Jos
    1 point
  6. WinActivate("TEST") HotKeySet("{ESC}", "cancel") Local $color While 1 $color = PixelGetColor (165, 550) If $color = "0x41C80F" Then sleep(1000) MouseClick("left", 165,550) ;CHECK JOB Else Sleep(1000) MouseClick("left", 550,630) EndIf Sleep(2000) WEnd Func cancel() Exit EndFunc It helps if you put your code inside your loop. And welcome to the AutoIt forums.
    1 point
  7. What about you kick your own brains in gear and think about what I said instead of blaming others? Jos
    1 point
  8. UEZ

    ArrayWorkshop

    Looks very impressive! Thanks for sharing.
    1 point
  9. czardas

    ArrayWorkshop

    @UEZ I have put all the examples in a single file and added an attachment to the first post. Thanks for looking.
    1 point
  10. so what is the problem, what else do you want to use ? check for _IEAttach in help file I could but I won't. Open help file and learn how you could do it by yourself...
    0 points
×
×
  • Create New...