For you it's easy for me it's new world

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
User avatar
Kingpin
Posts: 2
Joined: 18 Jun 2018, 06:49

For you it's easy for me it's new world

18 Jun 2018, 07:23

Hi everyone,
Nice to meet you. As all of beginers I can't find information and I ask a stupid questions.
I have a some kind of questionnaire and I hope that ahk help me. I don't now how to put imagines so i use only txt. (".........."is separate column to fill)

MY questionnaire
1. Name: ...............
2. Surname: ...........
3. City: .................

Only what ahk is to do is put kingpin in 1. column, press enter put Pin in 2 column, press enter, put Vicecity in 3 column. It will help if ther will be a for example ^x triger to fill the column

If you know the answer, or ther is a link to some help topic, or some youtube film's about it I will be very pleasd for your help.
Anyway have a nice day
Lupusvir
Posts: 11
Joined: 29 May 2018, 13:14

Re: For you it's easy for me it's new world

18 Jun 2018, 08:44

Code: Select all

^x::
{
	Send, Kingpin
	Send, {Enter}
	Send, Pin
	Send, {Enter}
	Send, Vicecity
	return
}
If you haven't looked at the tutorial you can do so here: https://autohotkey.com/docs/Tutorial.htm
eelrod
Posts: 65
Joined: 10 Apr 2018, 11:17

Re: For you it's easy for me it's new world

18 Jun 2018, 08:49

Something quick to note is that you can, alternatively, send all of that in one Send command.

Code: Select all

Send , Kinpin{Enter}Pin{Enter}Vicecity
User avatar
Kingpin
Posts: 2
Joined: 18 Jun 2018, 06:49

Re: For you it's easy for me it's new world

19 Jun 2018, 02:58

@Lupusvir I will check this toturial and thanks for your time and code! It's working!

@eelrod thanks!

Return to “Ask for Help (v1)”

Who is online

Users browsing this forum: filipemb, Ineedhelplz, mapcarter, peter_ahk, Rohwedder and 304 guests