Jump to content

Leaderboard

Popular Content

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

  1. Hello guys. I recently saw some posts that Windows 10 provides OCR API. So I decided to create a UDF. What's UWPOCR? UWPOCR UDF is a simple library to use Universal Windows Platform Optical character recognition API. Features. Get Text From Image File. Get Text From GDI+ Bitmap. Easy to use. Usage: #include "..\UWPOCR.au3" _Example() Func _Example() Local $sOCRTextResult = _UWPOCR_GetText(FileOpenDialog("Select Image", @ScriptDir & "\", "Images (*.jpg;*.bmp;*.png;*.tif;*.gif)")) MsgBox(0,"",$sOCRTextResult) EndFunc Get Words Rect(Example): More examples here. Check UWPOCR UDF on GitHub. Saludos
    2 points
  2. 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
  3. You can check if both span text exist. //div/div/span[span[contains(text(), "Yes")] and span[contains(text(), "No")]] Saludos
    1 point
  4. Here is a very basic script that could help, the rectangle is draggable, resizable and stays on top of other windows. Esc is the key to close the script when the rectangle is selected (an Accelerator key has been used, which is better than a HotKey in this kind of script) : #include <GuiconstantsEx.au3> #include <WindowsConstants.au3> Local $hGUI = GUICreate("", 100, 100, -1, -1, BitOr($WS_POPUP, $WS_SIZEBOX), $WS_EX_TOPMOST) GUISetBkColor(0x000000) Local $iLabel = GUICtrlCreateLabel("", 0, 0, 100, 100, -1, $GUI_WS_EX_PARENTDRAG) Local $idDummy_Esc = GUICtrlCreateDummy() Local $aAccelKeys[1][2] = [["{ESC}", $idDummy_Esc]] GUISetAccelerators($aAccelKeys) GUISetState() While 1 Switch GUIGetMsg() Case $idDummy_Esc GUIDelete() Exit EndSwitch WEnd Though the script doesn't cover all OP's requirements [ "hide and show it back with some hotkey as (for example) Ctrl+Alt+B ] I thought it could be useful for some users. Good luck
    1 point
  5. @steipal, the answer I guess would be yes, it got fixed. When he claims something, is because is a done deal, historically speaking. Now, the only way to know for sure, is to test it out under more environments and peer review any findings, that way we all participate in bettering the product ( AutoIt3 ). So try it out and share your findings. They will be welcomed by us all.
    1 point
  6. Hi @Muheet, Attaching to an existing browser instance is definitely more challenging with Webdriver. There are prior discussions on this topic as well as some details on the wiki. I know that @mLipokhas recently converted from IE >> Webdriver, so he may be able to add some insight to this discussion. Regards, Dan
    1 point
  7. A possible alternative: https://inveigle.net/cmail https://www.inveigle.net/blog/cmail-history
    1 point
  8. Thanks for the code, I will try it later tomorrow.
    1 point
  9. Danyfirex

    send email

    🤘 You're welcome Saludos
    1 point
  10. Danyfirex

    send email

    In your Gmail account settings you need to go here and the create the password as is shown here Saludos
    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. 1 point
  13. 1 point
  14. 1 point
  15. Valik

    Create Registry Key

    RegWrite automatically creates the key if it doesn't already exist.
    0 points
×
×
  • Create New...