A simple utility tool for Windows to clean formatted text and automatically type it into any application. Perfect for pasting text into restricted fields that block pasting or legacy applications.
Download the latest TextTyper.exe from the Releases Page
No installation is required. Just download the .exe file and run it.
- Text Cleaning: Automatically cleans formatted text (fixing smart quotes, tabs, and line breaks) to ensure smooth typing.
- Clipboard Integration: One-click paste directly from your system clipboard.
- Adjustable Speed: Control typing speed with a configurable delay setting.
- Progress Tracking: Real-time progress bar and character count.
- Always on Top: Keep the tool floating above your other windows for easy access.
- Safe: Includes a quick "Stop" button to halt typing immediately.
- Run the App: Double-click
TextTyper.exe. - Input Text:
- Click "📋 Paste Clipboard" to use text you've already copied.
- Or manually type/paste text into the input box.
- Configure:
- Set "Typing delay" (default is 0.05s). Increase this number if the typing is too fast for the target app.
- Toggle "Always on Top" if you want the window to stay visible.
- Start:
- Click "▶ Start Typing".
- You have 3 seconds to click into the window where you want the text to be typed.
- Stop: Click "⏹ Stop" at any time to cancel.
If you want to modify the code or build it yourself:
- Python 3.x
pip
Clone the repository and install dependencies:
pip install -r requirements.txtTo run the application directly with Python:
python main.pyTo create your own standalone .exe using PyInstaller:
Option A: Using the script (easier)
python build_exe.py
# or on Windows
build.batOption B: Manual Build
pyinstaller main.py --onefile --windowed --name=TextTyperThe new executable will be created in the dist folder.