This repository contains AHK scripts that work with japanese_text.txt
and english_text.txt
, along with a GUI (Jap_GUI.ahk
) to genorate random questions.
To work with these scripts, make sure you have AutoHotkey installed on your system. If you haven't, you can download it from here.
-
Clone the repository.
-
Copy the following files from this repository into your Scripts Folder:
japanese_text.txt
english_text.txt
Jap_GUI.ahk
Utilize the Run command to run the script. Here's an example of how you can do it:
RunWait, Jap_GUI.ahk
This will execute Jap_GUI.ahk
and wait for it to finish before continuing.
To have the script run indefinitely, change the correct condition in the CheckAnswer:
routine from Exitapp:
to the following code:
OutputReset()
GenorateGUI()
SoundBeep, 100
return
This modification will reset the output, regenerate the GUI, and then produce a beep sound with a frequency of 100Hz every time the script cycles through.
Feel free to contribute to this repository.