Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/21/2024 in all areas

  1. I was aiming at the same solution as @ioa747. The problem you have is probably because you do not own the DejaVu Sans Mono font. Try with Courier or Terminal font. It should work.
    1 point
  2. mr-es335

    _RenameTypeEdl "issues"

    Good day, My apologies, I did manage to "fig-ur it all out!" Sometime ago, I renamed the $masterEdlFile data file from "Type_#" to "Type#" with NO underscore! Duh!!! As someone has so eloquently stated, "That sounds like a you problem!"
    1 point
  3. ioa747

    Active_FileDlg

    I tried it but it doesn't work (at least in Windows 10) It only works if I run it as administrator
    1 point
  4. argumentum

    Active_FileDlg

    .., not sure. Haven't tried. But if you install to the "programs folder" you're supposed to have access to elevated windows. Untested. Just a thought. I may be wrong, very wrong.
    1 point
  5. Danp2

    Error launching WebDriver

    I suspect that the issue is associated with this line. Hint: If the path isn't valid, then chromedriver won't load correctly.
    1 point
  6. @donnyh13, Still feels like some race condition, so I have added some logic that the "IPC ping" needs to fail 3 times now before it is assumed that the other process must have ended. So the watcher task gives the other process(es) running the userscript a bit more time to handle the userscript ending. (I hope) Could you please test with this version of AutoIt3Wrapper.au3 to check if you still can make things fail? Thanks
    1 point
  7. #include <GUIToolTip.au3> #include <WinAPITheme.au3> #include <WinAPIGdiInternals.au3> HotKeySet("{ESC}", _Exit) Global $hFont = _WinAPI_CreateFont(40, 0) Example() Func Example() ToolTip("Tooltip Test", -100, -100, Default, 0, 1) ; hide it from view Local $pos, $hWnd = WinWait("Tooltip Test") _WinAPI_SetWindowTheme($hWnd, "", "") _GUIToolTip_SetTipTextColor($hWnd, 0xFFFFFF) _GUIToolTip_SetTipBkColor($hWnd, 0x000000) _WinAPI_SetFont($hWnd, $hFont) ToolTip("Tooltip Test", Default, Default, Default, 0, 1) While Sleep(50) $pos = MouseGetPos() ; this is faster WinMove($hWnd, "", $pos[0], $pos[1] + 20) WEnd EndFunc ;==>Example Func _Exit() _WinAPI_DeleteObject($hFont) ; this is needed Exit EndFunc ;==>_Exit
    1 point
×
×
  • Create New...