Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 09/29/2022 in all areas

  1. kaz

    GDI+ clock

    Another GDI+ clock with google watch look. i hope you'll like it. Some code should look familiar for someone. Sorry if code isn't clean. GDI+_Clock.au3
    1 point
  2. Moved to the appropriate AutoIt General Help and Support forum, as the Developer General Discussion forum very clearly states: Moderation Team
    1 point
  3. Jos, Just to stop this becoming the Michal and Jos show - ad to show others are testing too! An ability to choose the number of characters typed before the autocomplete appears would be a nice option - if it does not complicate things too much. Steve G
    1 point
  4. I have added a check for *_stripped.au3 to skip those script directory source files from being scanned for VARs & FUNCs. Try the current ZIP version.
    1 point
  5. (sigh) did you check the helpinfo I wrote or is there anything unclear that I should change? --> Documentation No idea what this means or whether there is a question there, but I get the feeling you have a somewhat cludgy setup. EDIT: I guess what you are saying that I should not read the *.stripped.au3 script to be used as an include option! That is something I definitely agree on and will change. (Sorry to be somewhat slow)
    1 point
  6. Look at _guictrllistview_findtext and _guictrllistview_setitemselected
    1 point
  7. maniootek, OK, I can see a very short hesitation when the checkboxes are actioned - as opposed to the instantaneous reaction when items are selected. The reason is simple - Windows is dealing with the latter, but the checkbox code is deal with by an AutoIt coded message handler. This handler must detect a click on an item, determine if checkboxes are in use, if they are then check if the click was on the checkbox, and if so set a flag to be actioned in the script idle loop by the _EventMonitor function, which clears the previous selection and selects the newly clicked item. Quite a convoluted chain, but the only way I could find to prevent your original problem of multiple selections. So it looks as if you are stuck with that small delay - sorry about that. M23
    1 point
  8. Maybe use a tool that is already tailored for such tasks, like HTTrack, it copies your website and saves it locally. https://www.httrack.com/ You can use filters, here's a short guide. https://www.httrack.com/page/20/en/index.html
    1 point
  9. @argumentum Shopify is an online shopping cart host, that anyone can join. It appears he wants Vinny wants to prepend and append too each line of text. @vinnyMS1 Couple of quick examples: #include <Array.au3> #include <File.au3> Global $g_sPrefix = "/products/" Global $g_sSuffix = ".html" ;~ Example 1 Global $g_aURLs _FileReadToArray(@ScriptDir & "\url.txt", $g_aURLs) If @error Then Exit MsgBox(4096, "Error", "Unable to read url.txt to Array") _ArrayDisplay($g_aURLs, "Before Changes") For $i = 1 To $g_aURLs[0] $g_aURLs[$i] = $g_sPrefix & $g_aURLs[$i] & $g_sSuffix Next _ArrayDisplay($g_aURLs, "After Changes") ;~ Example 2 $sURLs = $g_sPrefix & StringRegExpReplace(FileRead(@ScriptDir & "\url.txt"), "(?:\r\n|\n)", $g_sSuffix & @LF & $g_sPrefix & "$1") & $g_sSuffix ConsoleWrite(StringReplace($sUrls,"/products/.html", "") & @CRLF)
    1 point
  10. ClipPut("Test") $vClip = ClipGet ( ) Msgbox(0,"",$vClip)
    1 point
  11. Jon

    AutoIt (Latest Stable Version)

    Version v3.3.16.1

    50,301 downloads

    This is the current stable version of AutoIt. What's new: Changelog. Main AutoIt download page (for AutoIt and other tools like the script editor).
    1 point
  12. #include <Date.au3> #include <GUIConstants.au3> #include <Excel.au3> HotKeySet("{ESC}", "Terminate") Func Terminate() Exit 0 EndFunc ;==>Terminate Local $oExcel = _Excel_Open() Local $sWorkbook = "C:\Users\tvois\Desktop\Start\Start.xlsx" Local $oWorkbook = _Excel_BookOpen($oExcel, $sWorkbook) WinWaitActive("Start.xlsx", "", 10) For $i = 1 To 120 Local $sCellValue = _Excel_RangeRead($oWorkbook, Default, "A" & $i) Opt("MouseCoordMode", 0) MouseClick("left", 154, 345) MouseClick("left", 101, 378) MouseClick("left", 250, 144) _Excel_RangeWrite($oWorkbook, Default, $sCellValue, "B" & $i) Next
    1 point
×
×
  • Create New...