topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Thursday April 18, 2024, 12:21 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Author Topic: autohotkey script help?  (Read 3493 times)

projecttemp

  • Participant
  • Joined in 2009
  • *
  • Posts: 2
    • View Profile
    • Donate to Member
autohotkey script help?
« on: July 22, 2009, 03:42 PM »
hello, i need someone to help me write a simple script, i just want the script to write a sentence and then press enter and then write another sentence and press enter etc and the activator is just when you type a certain word

wr975

  • Charter Member
  • Joined in 2005
  • ***
  • Posts: 369
    • View Profile
    • Donate to Member
Re: autohotkey script help?
« Reply #1 on: July 22, 2009, 04:18 PM »
You're talking about Hotstrings.

Documentation: http://www.autohotke.../docs/Hotstrings.htm


Script example for your request:

:*:MaxHeadroom::This is the first line{enter}This is the second line{enter}This is the third line

Save the script as "whatever.ahk", launch it and if you type "MaxHeadroom" it'll be replaced.


projecttemp

  • Participant
  • Joined in 2009
  • *
  • Posts: 2
    • View Profile
    • Donate to Member
Re: autohotkey script help?
« Reply #2 on: July 22, 2009, 04:53 PM »
ty