Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/07/2016 in all areas

  1. Features: Create modern looking borderless and resizable GUIs with control buttons (Close,Maximize/Restore,Minimize, Fullscreen, Menu) True borderless, resizeable GUI with full support for aerosnap etc. Many color schemes/themes included. See MetroThemes.au3 for more details. 3 type of Windows 8/10 style buttons. Modern checkboxes, radios, toggles and progressbar. All buttons, checkboxes etc. have hover effects! Windows 10 style modern MsgBox. Windows 10/Android style menu that slides in from left. Windows 10 style right click menu Credits: @UEZ, for the function to create buttons with text using GDIPlus. @binhnx for his SSCtrlHover UDF Changelog: Download UDF with example:
    2 points
  2. Set the proper resizing option for the progress: GUICtrlSetResizing($Progress1[0], 1) See https://www.autoitscript.com/autoit3/docs/functions/GUICtrlSetResizing.htm
    1 point
  3. Question 1: you'll have to keep the autoit script running all the time and just wait for that script to drop, then do your magic. While True ; <-- loop as long as True is true, i.e. loop forever While ProcessExists("someProcess.exe") Sleep(1000) ; <-- Sleep as long as someProcess.exe exists WEnd ; The only way we get here is if someProcess.exe does not exist any more. ; So, do your button pressing magic here. ; If needed, make another sleep loop that runs until a check passes that everything is OK. ; Maybe something like this: While Not ProcessExists("someProcess.exe") Sleep(1000) ; <-- Sleep as long as someProcess.exe does NOT exist, i.e. wait until it does WEnd ; In the end, the WEnd below will just make the engine go back to the corresponding While (line 1, in this case). WEnd Question 2: depends a lot on how that text is displayed and in what kind of program window. First question: is it a "normal" Windows application GUI (use the AU3Info tool, ctrl+f6 in Scite to find controls to interact with) or does it have its own GUI? If possible, insert a screenshot (block out any privacy information of course).
    1 point
×
×
  • Create New...