Posts

Showing posts from May, 2021

[Juho's AutoHotkey Tutorial #11 Clipboard] Part 2 - Multi Clipboard Script

Image
https://youtu.be/jwzt8jyd9rY   In this video, we're are going to create a script that allows you to use multiple clipboards in AutoHotkey (with back-up capability) step by step. The multi-clipboard can store not only texts but also image data and have them backed up so you can retrieve them even if your script terminates. This script  can be likened to the Windows 10 native multi clipboard feature that you can call upon by pressing the Win + V keys. Other relevant videos: • Clipboard Basics: https://youtu.be/THEwAdp6uvc Other useful scripts: • AutoHotkey Screen Clipping Tool: https://youtu.be/kCmaH9fX3ZA • Frameless Notepad (Always On Top): https://youtu.be/PSPoR0RDKC8 • Auto Screenshot Taker: https://youtu.be/I5vOj-SSyVw To take a look at my AutoHotkey tutorial plan: • go to https://juho-lee.com/tutorial • select the dropdown list and click the item See Tutorial Plan Here AutoHotkey Playlists • Juho's AutoHotkey Tutorial: https://www.youtube.com/playlist?list=PLa9z1lCs1x9Lvsq...

[Juho's AutoHotkey Tutorial #11 Clipboard] Part 1 - Clipboard, ClipWait, OnClipboardChange

Image
https://youtu.be/THEwAdp6uvc   In this video we will be going through various topics around using the clipboard variable, namely: 1. Clipboard Basics 2. Using ClipWait 3. How to Preserve the Existing Clipboard 4. Save Every Newly Copied Text to a Text File 5. Take an Action when Clipboard Content Changes Other useful scripts: • AutoHotkey Screen Clipping Tool: https://youtu.be/kCmaH9fX3ZA • Frameless Notepad (Always On Top): https://youtu.be/PSPoR0RDKC8 • Auto Screenshot Taker: https://youtu.be/I5vOj-SSyVw To take a look at my AutoHotkey tutorial plan: • go to https://juho-lee.com/tutorial • select the dropdown list and click the item See Tutorial Plan Here AutoHotkey Playlists • Juho's AutoHotkey Tutorial: https://www.youtube.com/playlist?list=PLa9z1lCs1x9Lvsqbz-oTD6s6TysEVREpJ • Juho's Random AutoHotkey Stuff: https://www.youtube.com/playlist?list=PLa9z1lCs1x9JEEFS9vArkbg0p8D8hbArr Background Music at the end: Ehrling - Lounge #AutoHotkey #AHK #Automation #Programming #Coding...

[Juho's AutoHotkey Script Demo #19] Scripts to Perform Character Recognition with UWP API OCR

Image
https://youtu.be/P89OtdD5s1Y   In this video, I will be demonstrating five different scripts that use UWP API (Universal Windows Platform API) to perform Optical Character Recognition (OCR). UWP API is only available on Windows 10 so if your operating system is not Windows 10, you won't be able to use these scripts. Other relevant videos: • How to use the installed version of Tesseract for Optical Character Recognition: https://youtu.be/zzj-4Q8LhQs • Portable Tesseract & Leptonica (OCR): https://youtu.be/vwMiJPvVRT0 Other useful scripts: • AutoHotkey Screen Clipping Tool: https://youtu.be/kCmaH9fX3ZA • Frameless Notepad (Always On Top): https://youtu.be/PSPoR0RDKC8 • Auto Screenshot Taker: https://youtu.be/I5vOj-SSyVw To take a look at my AutoHotkey tutorial plan: • go to https://juho-lee.com/tutorial • select the dropdown list and click the item See Tutorial Plan Here AutoHotkey Playlists • Juho's AutoHotkey Tutorial: https://www.youtube.com/playlist?list=PLa9z1lCs1x9Lvsqb...

[Juho's AutoHotkey Tutorial #10 Run & Command Prompt] Part 6 - Portable Tesseract & Leptonica (OCR)

Image
https://youtu.be/vwMiJPvVRT0 In this video I walk you thru how to download and use the portable version of Tesseract for Optical Character Recognition (OCR) and Leptonica for image pre-processing to improve the OCR result. To download the required files: https://github.com/iseahound/Vis2 Traineddata for other languages: • https://tesseract-ocr.github.io/tessdoc/Data-Files • https://github.com/tesseract-ocr/tessdata_fast • https://github.com/tesseract-ocr/tessdata_best Other relevant videos: • How to use the installed version of Tesseract: https://youtu.be/zzj-4Q8LhQs Other useful scripts: • AutoHotkey Screen Clipping Tool: https://youtu.be/kCmaH9fX3ZA • Frameless Notepad (Always On Top): https://youtu.be/PSPoR0RDKC8 • Auto Screenshot Taker: https://youtu.be/I5vOj-SSyVw To take a look at my AutoHotkey tutorial plan: • go to https://juho-lee.com/tutorial • select the dropdown list and click the item See Tutorial Plan Here AutoHotkey Playlists • Juho's AutoHotkey Tutori...

[Juho's AutoHotkey Tutorial #10 Run & Command Prompt] Part 5 - Optical Char Recognition (Tesseract)

Image
  https://youtu.be/zzj-4Q8LhQs In this video, we're going to learn how to use the local install of Tesseract to performance Optical Character Recognition (OCR) on images that contain English or Korean texts. Tesseract is a free OCR engine, the development of which is sponsored by Google. Link to Download Tesseract: https://github.com/UB-Mannheim/tesseract/wiki Tesseract User Manual: https://tesseract-ocr.github.io/ Tesseract Traineddata Files (fast): https://github.com/tesseract-ocr/tessdata_fast Tesseract Traineddata Files (best): https://github.com/tesseract-ocr/tessdata_best Other relevant videos: • Run and RunWait Commands: https://youtu.be/S-MlMLgfT_s • Command Prompt (Cmd): https://youtu.be/WTJHwEl1Wk8 Other useful scripts: • AutoHotkey Screen Clipping Tool: https://youtu.be/kCmaH9fX3ZA • Frameless Notepad (Always On Top): https://youtu.be/PSPoR0RDKC8 • Auto Screenshot Taker: https://youtu.be/I5vOj-SSyVw To take a look at my AutoHotkey tutorial plan: • go to http...

[Juho's Random AutoHotkey Stuff #10] Auto Screenshot Taker

Image
https://youtu.be/I5vOj-SSyVw This script allows you to capture an area of screen or the entire screen simply using a button and saves the captured image in a folder. The script also has an auto-capture functionality whereby it saves down a screen capture every interval you specify within the interface. Other useful scripts: • AutoHotkey Screen Clipping Tool: https://youtu.be/kCmaH9fX3ZA • Frameless Notepad (Always On Top): https://youtu.be/PSPoR0RDKC8 To take a look at my AutoHotkey tutorial plan: • go to https://juho-lee.com/tutorial • select the dropdown list and click the item See Tutorial Plan Here AutoHotkey Playlists • Juho's AutoHotkey Tutorial: https://www.youtube.com/playlist?list=PLa9z1lCs1x9Lvsqbz-oTD6s6TysEVREpJ • Juho's Random AutoHotkey Stuff: https://www.youtube.com/playlist?list=PLa9z1lCs1x9JEEFS9vArkbg0p8D8hbArr #AutoHotkey #AHK #Automation #Programming #Coding #Course #Tutorial #AHK #Productivity #Efficiency #Office #Shortcut #Hotkey #Mac...

[Juho's AutoHotkey Script Demo #18] Download Videos Streamed Online (VLC, youtube-dl and ffmpeg)

Image
 https://youtu.be/1fQfFzlZVXc In this video I will be demonstrating several methods through which you can download videos streamed online. Some methods do not require any programs other than your browser while others will use (free) external programs such as VLC Media Player, youtube-dl and ffmpeg. Link to download VLC Media Player: https://www.videolan.org/vlc/download-windows.html Link to download youtube-dl: https://ytdl-org.github.io/youtube-dl/download.html Link to download ffmpeg: https://www.gyan.dev/ffmpeg/builds/ Other relevant videos: • youtube-dl to Download YouTube Videos: https://youtu.be/8q2BFjhP9OA • YouTube Video Bulk Downloader Script (youtube-dl): https://youtu.be/jaFqY5s1NA4 Other useful scripts: • AutoHotkey Screen Clipping Tool: https://youtu.be/kCmaH9fX3ZA • Frameless Notepad (Always On Top): https://youtu.be/PSPoR0RDKC8 To take a look at my AutoHotkey tutorial plan: • go to https://juho-lee.com/tutorial • select the dropdown list and click the ite...

[Juho's AutoHotkey Script Demo #17] YouTube Video Bulk Downloader Script (youtube-dl)

Image
https://youtu.be/jaFqY5s1NA4 This Autohotkey script uses youtube-dl to download a list of YouTube videos. Other relevant videos: • How to use youtube-dl to download YouTube Videos: https://youtu.be/8q2BFjhP9OA Other useful scripts: • AutoHotkey Screen Clipping Tool: https://youtu.be/kCmaH9fX3ZA • Frameless Notepad (Always On Top): https://youtu.be/PSPoR0RDKC8 To take a look at my AutoHotkey tutorial plan: • go to https://juho-lee.com/tutorial • select the dropdown list and click the item See Tutorial Plan Here AutoHotkey Playlists • Juho's AutoHotkey Tutorial: https://www.youtube.com/playlist?list=PLa9z1lCs1x9Lvsqbz-oTD6s6TysEVREpJ • Juho's Random AutoHotkey Stuff: https://www.youtube.com/playlist?list=PLa9z1lCs1x9JEEFS9vArkbg0p8D8hbArr #AutoHotkey #AHK #Automation #Programming #Coding #Course #Tutorial #AHK #Productivity #Efficiency #Office #Shortcut #Hotkey #Macro

[Juho's AutoHotkey Tutorial #10 Run & Command Prompt] Part 4 - youtube-dl to Download YouTube Videos

Image
https://youtu.be/8q2BFjhP9OA In this video, we're going to learn how to use youtube-dl to download YouTube videos. youtube-dl is a command line program which you can also run through AutoHotkey scripts. Other relevant videos to watch: Run and RunWait Commands: https://youtu.be/S-MlMLgfT_s Command Prompt (Cmd): https://youtu.be/WTJHwEl1Wk8 Other useful scripts: • AutoHotkey Screen Clipping Tool: https://youtu.be/kCmaH9fX3ZA • Frameless Notepad (Always On Top): https://youtu.be/PSPoR0RDKC8 To take a look at my AutoHotkey tutorial plan: • go to https://juho-lee.com/tutorial • select the dropdown list and click the item See Tutorial Plan Here AutoHotkey Playlists • Juho's AutoHotkey Tutorial: https://www.youtube.com/playlist?list=PLa9z1lCs1x9Lvsqbz-oTD6s6TysEVREpJ • Juho's Random AutoHotkey Stuff: https://www.youtube.com/playlist?list=PLa9z1lCs1x9JEEFS9vArkbg0p8D8hbArr #AutoHotkey #AHK #Automation #Programming #Coding #Course #Tutorial #AHK #Productivity #E...

[Juho's AutoHotkey Tutorial #10 Run & Command Prompt] Part 3 - Cmd to Schedule Tasks or Scripts

Image
https://youtu.be/PP9qLhyDUNc   In this video, I walk you through the method of using AutoHotkey to run command prompt commands to create, modify and delete Tasks on Task Scheduler. Other relevant videos: Run and RunWait Commands: https://youtu.be/S-MlMLgfT_s Command Prompt (Cmd): https://youtu.be/WTJHwEl1Wk8 Other useful scripts: • AutoHotkey Screen Clipping Tool: https://youtu.be/kCmaH9fX3ZA • Frameless Notepad (Always On Top): https://youtu.be/PSPoR0RDKC8 To take a look at my AutoHotkey tutorial plan: • go to https://juho-lee.com/tutorial • select the dropdown list and click the item See Tutorial Plan Here AutoHotkey Playlists • Juho's AutoHotkey Tutorial: https://www.youtube.com/playlist?list=PLa9z1lCs1x9Lvsqbz-oTD6s6TysEVREpJ • Juho's Random AutoHotkey Stuff: https://www.youtube.com/playlist?list=PLa9z1lCs1x9JEEFS9vArkbg0p8D8hbArr #AutoHotkey #AHK #Automation #Programming #Coding #Course #Tutorial #AHK #Productivity #Efficiency #Office #Shortcut #Hot...

[Juho's Random AutoHotkey Stuff #9] Schedule AutoHotkey Script to Run in Advance

Image
  https://youtu.be/F6gCfhHCe6I Watch this video to learn how to schedule AutoHotkey script to execute in future! Some other relevant videos to watch: • Launch Scripts at Startup or Kill All Scripts: https://youtu.be/eulh593SDNQ • Kill All Scripts and Relaunch All Scripts: https://youtu.be/bnvkc9oe0mA • Kill Specific AutoHotkey Script: https://youtu.be/V2ePDPKMVdM • Speeding Up Autohotkey Scripts: https://youtu.be/W4S1pGBcNEQ • #Include To Call Other Scripts Or Libraries: https://youtu.be/7xN5iGYOC3k Other useful scripts: • AutoHotkey Screen Clipping Tool: https://youtu.be/kCmaH9fX3ZA • Frameless Notepad (Always On Top): https://youtu.be/PSPoR0RDKC8 To take a look at my AutoHotkey tutorial plan: • go to https://juho-lee.com/tutorial • select the dropdown list and click the item See Tutorial Plan Here AutoHotkey Playlists • Juho's AutoHotkey Tutorial: https://www.youtube.com/playlist?list=PLa9z1lCs1x9Lvsqbz-oTD6s6TysEVREpJ • Juho's Random AutoHotkey Stuff: https://w...

[Juho's AutoHotkey Tutorial #10 Run & Command Prompt] Part 2 - Command Prompt (Cmd)

Image
  https://youtu.be/WTJHwEl1Wk8 In this video, I walk you through how command prompt commands can be executed from AutoHotkey. I'll be demonstrating lots of useful Cmd commands along the way. To learn how to use the Run and RunWait Commands: https://youtu.be/S-MlMLgfT_s Other useful scripts: • AutoHotkey Screen Clipping Tool: https://youtu.be/kCmaH9fX3ZA • Frameless Notepad (Always On Top): https://youtu.be/PSPoR0RDKC8 To take a look at my AutoHotkey tutorial plan: • go to https://juho-lee.com/tutorial • select the dropdown list and click the item See Tutorial Plan Here AutoHotkey Playlists • Juho's AutoHotkey Tutorial: https://www.youtube.com/playlist?list=PLa9z1lCs1x9Lvsqbz-oTD6s6TysEVREpJ • Juho's Random AutoHotkey Stuff: https://www.youtube.com/playlist?list=PLa9z1lCs1x9JEEFS9vArkbg0p8D8hbArr #AutoHotkey #AHK #Automation #Programming #Coding #Course #Tutorial #AHK #Productivity #Efficiency #Office #Shortcut #Hotkey #Macro

[Juho's AutoHotkey Tutorial #10 Run & Command Prompt] Part 1 - Run and RunWait Commands

Image
https://youtu.be/S-MlMLgfT_s   This video is going to cover the Run and Runwait commands and will go through (among other things): 1. Basics of Run and Runwait 2. Use Run to Run a Search in a Folder 3. Pass Arguments to Programs 4. Pass Variables to another AutoHotkey script 5. How to Set Up and use Environmental Variable Path Other useful scripts: • AutoHotkey Screen Clipping Tool: https://youtu.be/kCmaH9fX3ZA • Frameless Notepad (Always On Top): https://youtu.be/PSPoR0RDKC8 To take a look at my AutoHotkey tutorial plan: • go to https://juho-lee.com/tutorial • select the dropdown list and click the item See Tutorial Plan Here AutoHotkey Playlists • Juho's AutoHotkey Tutorial: https://www.youtube.com/playlist?list=PLa9z1lCs1x9Lvsqbz-oTD6s6TysEVREpJ • Juho's Random AutoHotkey Stuff: https://www.youtube.com/playlist?list=PLa9z1lCs1x9JEEFS9vArkbg0p8D8hbArr #AutoHotkey #AHK #Automation #Programming #Coding #Course #Tutorial #AHK #Productivity #Efficiency #Office ...

[Juho's Random AutoHotkey Stuff #8] Code Tester

Image
https://youtu.be/uMlNq7QWDC8   Use this script to quickly test out your code in a small GUI, instead of creating a new test script. Other useful scripts: • AutoHotkey Screen Clipping Tool: https://youtu.be/kCmaH9fX3ZA • Frameless Notepad (Always On Top): https://youtu.be/PSPoR0RDKC8 To take a look at my AutoHotkey tutorial plan: • go to https://juho-lee.com/tutorial • select the dropdown list and click the item See Tutorial Plan Here AutoHotkey Playlists • Juho's AutoHotkey Tutorial: https://www.youtube.com/playlist?list=PLa9z1lCs1x9Lvsqbz-oTD6s6TysEVREpJ • Juho's Random AutoHotkey Stuff: https://www.youtube.com/playlist?list=PLa9z1lCs1x9JEEFS9vArkbg0p8D8hbArr #AutoHotkey #AHK #Automation #Programming #Coding #Course #Tutorial #AHK #Productivity #Efficiency #Office #Shortcut #Hotkey #Macro