AppleScript Typesetter
Hi, username.
Have you also had moments when copy-paste doesn’t work?
For example, here. There was such a situation when pasting from the clipboard does not work.
Ok, I accept the challenge! 🔥
- Launching Automator.
2. Creating a "Quick Action"
3. Search for “AppleScript” and drag & drop on to the right pane
4. You will see a window with a standard script:
Update the script like below:
on run {input, parameters}
tell application "System Events" to keystroke (the clipboard as text)
return input
end run
5. Save it! Cool job! 👍
You can also bind a hotkey to it:
Keyboard -> Shortcuts -> Services
At startup script, you may see a system window where you will need to allow the computer to be managed using the universal access function.
You will need to give permissions so that the script can run.
As a result, when you run the script, the text from the clipboard will print itself! 🎉
I will be glad if you share the scripts that you use :)