Is it possible to automate or write a macro that will issue either a blank space(or any character) or carriage return in NotePad ++ at certain intervals?
For example, if I wanted issue the letter 'E' everytime 5mins would it be possible to automate the issuing of the letter 'E' with a macro?
I have followed the suggestion provided my Toto, however when I run the script, see image I get a black screen.
I created the generate.py file as directed, however when I search for it I'm unable to view it in the path Python Script>>Scripts>>xxxxxxx
I can now see the script generate, see image, but when I select nothing happens
I don't know what I'm doing wrong but I can't seem to get the 'generate' script to appear in the Menu under Scripts
You can run a python script within the PythonScript plugin.
If it is not yet installed, follow this guide
from time import sleep
for i in range(10): # The text will be appended 10 times, put the value you need
sleep(5*60) # 5 min
editor.appendText("\nWHATEVER YOU WANT")