Last active
April 26, 2021 15:52
-
-
Save JoeGlines/8d28839c3aff6f41204ca9ee27575073 to your computer and use it in GitHub Desktop.
Automate sending large amounts of text with a Hotkey
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;******************************************************* | |
; Want a clear path for learning AutoHotkey; Take a look at our AutoHotkey Udemy courses. They're structured in a way to make learning AHK EASY | |
; Right now you can get a coupon code here: https://the-Automator.com/Learn | |
;******************************************************* | |
#Include <default_Settings> | |
;************************************** | |
^+r:: | |
text= | |
( | |
Here are the requirements. Let me know if you’re still interested & We’ll figure out a time you can see it. | |
• Maximum 5 tenants living on premises | |
• Copy of Valid Photo ID of all adults applying for lease | |
• Income verification (W-2s or paystubs) for past 2 years. | |
• Gross monthly Income must be $5,100 (3X the rent ) | |
• Security deposit is $1,700 (1 month’s rent) | |
• Employment Verification | |
• Criminal background check- No Criminal history | |
• No history of Evictions- Good reports from landlords for past 2 years with NO EVICTIONS | |
• Credit check run on all applicants. Minimum score of 575 | |
) | |
Clipboard:=text | |
Send ^v | |
return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment