1.

Solve : batch file best for repeated text entry??

Answer» <html><body><p>I would like to use a hot key to <a href="https://interviewquestions.tuteehub.com/tag/enter-446119" style="font-weight:bold;" target="_blank" title="Click to know more about ENTER">ENTER</a> the <a href="https://interviewquestions.tuteehub.com/tag/following-463335" style="font-weight:bold;" target="_blank" title="Click to know more about FOLLOWING">FOLLOWING</a> code into a forum post message box.  Would a batch file be the way to do it?  If so, what is the code?  <br/><br/> Code: <a>[Select]</a>[table  bgcolor=lightgreen width=600 height=300 style="border:5px double darkblue"][tr][td ][color=black]<br/><br/>my text here<br/><br/>[/color][/td][/tr][/table]<br/>My objective is to <a href="https://interviewquestions.tuteehub.com/tag/easily-964537" style="font-weight:bold;" target="_blank" title="Click to know more about EASILY">EASILY</a> use different backgrounds for my posts.  This code does work in other forums.  I didn't know if it would be inappropriate to use it here, so I didn't.<br/><br/>Batch wouldn't be the way to do it. I suggest getting a program called <a href="http://www.autohotkey.com">AutoHotkey</a>.<br/><br/>For example, all you have to do is modify this code and save it as a .AHK file (after you've installed AutoHotkey).<br/><br/>;This code will insert text when you press WIN+Q<br/>#q::<br/>send LINE 1 {ENTER} ; {ENTER} creates a new line<br/>send LINE 2 {ENTER}<br/>send [TESTING] {Enter} ; Just watch what you put in between brackets (especially curly ones like { )<br/>return<br/><br/>Double-Click the newly-created AHK file and when you're ready, press WIN+Q to <a href="https://interviewquestions.tuteehub.com/tag/activate-848037" style="font-weight:bold;" target="_blank" title="Click to know more about ACTIVATE">ACTIVATE</a> the commands.</p></body></html>


Discussion

No Comment Found