Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 10/18/2023 in all areas

  1. water

    Is AU3Recorder gone?

    It is gone. The forum search feature tells you when.
    1 point
  2. Andreik

    PDF viewer

    Acrobat Reader is installed on almost every PC but it's always good to have a fallback option.
    1 point
  3. Andreik

    PDF viewer

    Try this: $oPDF = ObjCreate("AcroPDF.PDF.1") ConsoleWrite('AcroPDF object creation: ' & (IsObj($oPDF) = True) & @CRLF) $oPDF.src = <path to your pdf> $oPDF.setShowToolbar(0) $oPDF.setShowScrollbars(0) $oPDF.setView('Fit') $oPDF.setLayoutMode('SinglePage') $oPDF.setPageMode('None') $hMain = GUICreate('Test', 1280, 720) GUICtrlCreateObj($oPDF, 0, 0, 1280, 720) GUISetState(@SW_SHOW, $hMain) Do Until GUIGetMsg() = -3
    1 point
  4. Thank you for the help on this everyone. The truth is that all of these helped me out. Then I ran into more problems. My main problem ended up being that the task scheduler did not have access to the Folders/SQL tables that my script was trying to run. It is working as expected now.
    1 point
  5. Jon

    Where is au3record.exe?

    It has been removed from the main installer from v3.3.14.1 as it triggers many AV false positives. You can find an old version here: https://www.autoitscript.com/autoit3/files/archive/autoit/ autoit-v3.3.14.0.zip A little explanation of the rather strange link above: If we give you a direct link to the file (or the zip file which includes it) the site gets flagged as hosting malware (yes really!) - so what you have is a link to the AutoIt archive page and the name of the zip file you need to download from it.
    1 point
  6. Jos

    Where is au3record.exe?

    The main reason for it's definite removal is the fact that both the Installer and the WebSite got flagged by Google as containing malicious programs. So Chrome was giving a big fat warning each time someone wanted to visit our forum. So hence also the request NOT to post it any any flavor or form in this forum. Jos
    1 point
×
×
  • Create New...