레이블이 Simple Hotkey인 게시물을 표시합니다. 모든 게시물 표시
레이블이 Simple Hotkey인 게시물을 표시합니다. 모든 게시물 표시

2025년 8월 31일 일요일

Simple Hotkey Macro: Start Your Practice with the 2-Times Table!

 Hi there! Today, I'll show you how to easily use loops and variables with a simple macro example: creating the 2-times multiplication table. Simple Hotkey is a really easy and convenient macro program, so you can practice right away with this example!


How to Create a 2-Times Table Macro




To type the 2-times table into Notepad with a macro, you need to repeat the calculation and key entry from '2 x 1 = 2' to '2 x 9 = 18' nine times. You can do this very simply using a loop.

Script Example:

<string,a=2>
<string,b=1>
<repeat,9>[
<calc,c=a*b>
<sendkey,a>X<sendkey,b>=<sendkey,c>⇒
<calc,b=b+1>]

Script Explanation:

  • <string,a=2>: Stores the number 2 in variable a. This represents the fixed '2' in the multiplication table.

  • <string,b=1>: Stores the number 1 in variable b. This is the number that will be multiplied, starting from 1.

  • <repeat,9>[ ... ]: This command tells the macro to repeat the commands inside the brackets [ and ] a total of 9 times.

  • <calc,c=a*b>: Calculates the product of variables a and b and stores it in variable c. This is the result of the multiplication.

  • <sendkey,a>X<sendkey,b>=<sendkey,c>⇒: Types the results (variables a, b, and c) into Notepad in order. For example, it will type '2X1=2'. The symbol represents an Enter key press, which creates a new line.

  • <calc,b=b+1>: Each time the loop runs, this command adds 1 to the value of variable b. This makes b increase from 1, to 2, to 3, and so on, completing the multiplication table.


How to Use This Example

This example is great for:

  • Practicing repetitive tasks: It’s the best way to get comfortable with using loops and variables.

  • Automating simple calculations: You can use the calc command whenever your macro needs to perform a quick calculation.

  • Practicing data output: It helps you practice how to output calculated values to a file or onto the screen.

It’s a simple but incredibly powerful way to use macros! Try making and running the script yourself to see how easy and convenient Simple Hotkey is.

2023년 8월 7일 월요일

Installing Simple Hot Key OpenCV Add-ons

 Introduction.

A Simple Hotkey program is a macro program. 

OpenCV module is available from simple hotkey version 2.3.4 and later. 


Introducing OpenCV.

Open Source Computer Vision (OpenCV) is a programming library for real-time computer vision.

It was originally developed by Intel. It is a library focused on real-time image processing. 

In the simple hotkey, it is a grateful library that allows you to access image search from a more diverse perspective.

Simply put, you can find an image even if it doesn't match exactly.


Install OpenCV.

You need a DLL file to use OpenCV functionality in simple hotkeys.

Download and extract the attached file above, and run OpenCV_Install.exe. 

(When installed, an OpenCVDll file will be created in the %Temp% folder path)












OpenCV (Download) 64bit only

https://blog.kakaocdn.net/dn/bJgv9j/btqVkLaIsBV/ekKc3A7wr3GOzsQuwHilS0/OpenCV_Install.zip?attach=1&knm=tfile.zip



Checked by the virus total site - Virus Total is a subsidiary of Google, a site that tests and prevents viruses, worms, and so on (Namuwiki) - Before using it, check the downloaded zip file again at https://www.virustotal.com . It should be the same as the virus scan as shown below. - If it is misdiagnosed as a virus, we are requesting the vaccine developer to handle the exception. www.virustotal.com/gui/file/e0134dd95938ea376cb19964b4e8daa74e998b81859f755ffca39d6dd7501d62/detection

2022년 7월 11일 월요일

A macro program that can change your life (Simple Hotkey)

Try changing it to English subtitles



The Simple Hotkey program is a macro program.
Go beyond simple mouse clicks and movements to find images and move pixels.
It is a program that can find and create conditional script.
It will be helpful for those who have a lot of repetitive tasks other than games.

main function.
1. key stroke, light click
2. Image Search
3. Pixel Search
4. Creation of various conditional statements
5. Automatic date/time input
6. Intuitive UI
7. Network (Ping, Port) conditional statement
8. Disable Controls (ControlSend, ControlClick)
9. Variables, arithmetic operations, multiple conditional statements
10. Conditional statements related to files and windows
11. Fast reaction speed
12. Easy Macro Creation and Editing
13. Use of office work
14. No installation, portable execution
15. Reading and writing files
16. Arduino hardware linkage (serial communication)


MSI MAG 321UP QD-OLED X24 후기

 MSI MAG 321UP QD-OLED X24를 구매해서 사용해 보니 만족도가 기대 이상입니다. 가장 먼저 선명하고 왜곡 없는 훌륭한 색감 표현력이 눈에 띕니다. QD-OLED 패널 특유의 압도적인 명암비 덕분에 텍스트 가독성이 뛰어나고, 오랫동안 ...