Know-Legal Web Search

Search results

  1. Results From The WOW.Com Content Network
  2. AHK Fast Translator - AutoHotkey Community

    www.autohotkey.com/boards/viewtopic.php?t=119371

    by balawi28 » Thu Jul 13, 2023 6:17 pm. AHKFastTranslator is an AutoHotkey script that provides a fast and convenient way to translate text using Google Translate API. It allows you to assign a hotkey that triggers the translation process, and the translated text can be displayed in a tooltip or a message box.

  3. Text to Binary (and back) Function - Scripts and Functions

    www.autohotkey.com/board/topic/3033-text-to-binary-and-back-function

    I just saw it as a challenge to see if I could make a function to convert text to binary. It will convert a string to binary. string=this is a test Binary:=binary (string) msgbox, %Binary% binary (string) { Loop, parse, string { var=128 Transform, tobin, Asc, %A_LoopField% loop, 8 { oldtobin=%tobin% tobin:=tobin-var value=1 if tobin<0 { tobin ...

  4. Using Google Translate to automate text translation

    www.autohotkey.com/boards/viewtopic.php?t=63835

    Code: Select all; Google Translate script ; Take a string in any language and translate to any other language

  5. translate text file to bing translator - AutoHotkey Community

    www.autohotkey.com/boards/viewtopic.php?t=90849

    this is the text: "ตัวอย่างข้อความนี้เท่านั้น สําหรับข้อความ ahk จากแผ่นจดบันทึกถึงตัวแปล bing ขอบคุณ 12345" become : "this text only example for the ahk text from notepad to bing translator thank you 12345"

  6. Vis2 - Image to Text OCR() - AutoHotkey Community

    www.autohotkey.com/boards/viewtopic.php?t=36047

    Code: Select all. #c:: OCR () #g:: Vis2.OCR.google () ;Googles the text instead of saving it to clipboard. #i:: ImageIdentify () * When your cursor turns into a crosshair, drag to select a portion of the screen. * Release LButton when you are satisfied with the preview text. Press any of the modifier keys, Ctrl, Alt, or Shift to access Advanced ...

  7. text in tray icon - Ask for Help - AutoHotkey Community

    www.autohotkey.com/board/topic/23558-text-in-tray-icon

    text in tray icon - posted in Ask for Help: is there any way to display text as the tray icon so i can have an input displayed as the icon. I am making a gmail checker and i want the number of email to be displayed on top of the gmail logo. I could do this by saving lots of icons (with different numbers) but i really dont want to do that.

  8. MSComm32:How to set the InputMode - Ask for Help - AutoHotkey

    www.autohotkey.com/board/topic/41597-mscomm32how-to-set-the-inputmode

    24 posts. Last active: Feb 10 2012 07:01 AM. Joined: 07 Nov 2006. It is easy to use the mscomm32.ocx by the com lib. But when i want to send the binary, i met the problem because the default property of InputMode is text. However i don't know how to change this property. I try this: Com_Invoke (rs_port,"InputMode=","comInputModeBinary"), it is ...

  9. FileAppend - Syntax & Usage | AutoHotkey v1

    www.autohotkey.com/docs/v1/lib/FileAppend.htm

    FileAppend, Text, Filename, Encoding Parameters Text. If blank or omitted, Filename will be created as an empty file (but if the file already exists, its modification time will be updated). Otherwise, specify the text to append to the file. This text may include linefeed characters (`n) to start new lines.

  10. Small and fast Text File Encryptor - Scripts and Functions

    www.autohotkey.com/board/topic/4147-small-and-fast-text-file-encryptor

    Page 1 of 4 - Small and fast Text File Encryptor - posted in Scripts and Functions: Here is a relatively small script for encrypting and decrypting text files. The ciphertext is also a text file. Characters with code less than 32 or larger than 126 are left unencrypted. The line structure of the original file is preserved. If this is undesirable, the original lines could be padded with a ...

  11. Need functions to convert selected text to lowercase and...

    www.autohotkey.com/boards/viewtopic.php?f=82&t=124532

    LowerText(*) { ; Convert text to lower Clipboard := "" Send("^c") ;copies selected text ClipWait StringLower Clipboard, Clipboard SendInput %Clipboard% Return } Beijer.bot (2024-01-03).jpg You do not have the required permissions to view the files attached to this post.