08/25 - Thankful for Turkopticon Thursday!

Status
Not open for further replies.

Not A Robot

VERIFIED HUMAN
Contributor
Joined
Apr 27, 2016
Messages
4,515
Reaction score
6,751
Points
838
Gender
Male
in addition to what Yuk @Yuk said, you can clean it up at bit using {tab 2} instead of multiple tabs in a row, and instead of {down} then {up} just use {space} to fill the bubble.

oh, and ^2 should probably use Suspend instead of Pause for the intended effect
Thanks, extremely new to this.

How does this look now?

1: Nothing Identical
2: Left side identical
3: Both sides Identical
4: Right side identical
Enter: Submit
Code:
#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn  ; Enable warnings to assist with detecting common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.


1::
send {tab}
send {down}
sleep, 100
send {tab 2}
send {down}
return

2::
send {tab}
send {space}
sleep, 100
send {tab 2}
send {down}
return

3::
send {tab}
send {space}
sleep, 100
send {tab 2}
send {space}
return

4::
send {tab}
send {down}
sleep, 100
send {tab 2}
send {space}
return

^2::
suspend
return

^3::
ExitApp
 
Last edited:
  • Like
Reactions: VGB

nikicollazo

-----------------
Joined
Jan 20, 2016
Messages
597
Reaction score
771
Points
293
Age
30
Location
Lady Lake, FL
Gender
Female
Thanks, extremely new to this.

How does this look now?
Code:
#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn  ; Enable warnings to assist with detecting common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.


1::
send {tab}
send {down}
sleep, 100
send {tab2}
send {down}
return

2::
send {tab}
send {space}
sleep, 100
send {tab2}
send {down}
return

3::
send {tab}
send {space}
sleep, 100
send {tab2}
send {tab}
send {space}
return

4::
send {tab}
send {down}
sleep, 100
send {tab2}
send {tab}
send {space}
return

^2::
suspend
return

^3::
ExitApp
any way to change submit from enter to space?
 

Jaded

The real themildone
Administrator
Joined
Jan 10, 2016
Messages
46,618
Reaction score
123,839
Points
1,414
Age
123
Gender
Female
you can clean it up at bit using {tab 2} instead of multiple tabs in a row,

Whoa, I didn't know that was a thing.
 
  • Like
Reactions: VGB

VGB

dr. peepee poopoo
Joined
Jan 21, 2016
Messages
5,753
Reaction score
15,213
Points
1,038
Age
38
Location
Milwaukee via Boston
Gender
Male
Thanks, extremely new to this.

How does this look now?
Code:
#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn  ; Enable warnings to assist with detecting common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.


1::
send {tab}
send {down}
sleep, 100
send {tab 2}
send {down}
return

2::
send {tab}
send {space}
sleep, 100
send {tab 2}
send {down}
return

3::
send {tab}
send {space}
sleep, 100
send {tab 2}
send {tab}
send {space}
return

4::
send {tab}
send {down}
sleep, 100
send {tab 2}
send {space}
return

^2::
suspend
return

^3::
ExitApp
:thumbup:

might be some extra tabs in there it looks like, though, on 3 maybe?
 
Last edited:

Squatty

.
Contributor
Crowd Pleaser
HIT Poster
Joined
Mar 17, 2016
Messages
21,286
Reaction score
44,989
Points
2,538
Age
35
Gender
Female
I just took a nice break. Anything fun and exciting up?
 

Müdeloli

New Member
Joined
Aug 20, 2016
Messages
15
Reaction score
22
Points
3
Age
27
I don't understand why some HIT have a list of approved states that you have to live in to be able to work on them.
And it always seems to be the most populous states, what about living in Idaho makes my work unwanted?
 

Yuk

Member
Joined
Jul 10, 2016
Messages
685
Reaction score
1,572
Points
393
Age
124
any way to change submit from enter to space?
$Space::
Send {Enter}
Return

edit: this may or may not trigger off of the other hotkeys when they press space, I think the $ prevents that but I'm not 100% certain. my ahk game is rusty

edit 2: Confirmed works fine without triggering off of other hotkeys that also press space. $ is awesome
 
Last edited:

Jaded

The real themildone
Administrator
Joined
Jan 10, 2016
Messages
46,618
Reaction score
123,839
Points
1,414
Age
123
Gender
Female
I don't understand why some HIT have a list of approved states that you have to live in to be able to work on them.
And it always seems to be the most populous states, what about living in Idaho makes my work unwanted?
Something about taxes or some nonsense. They do it to Alabama too.
 

electrolyte

The Ghost of MTurk Past
Contributor
Joined
Jan 10, 2016
Messages
19,184
Reaction score
45,978
Points
1,313
I don't understand why some HIT have a list of approved states that you have to live in to be able to work on them.
And it always seems to be the most populous states, what about living in Idaho makes my work unwanted?
It has something to do with the tax status and sales tax in the states. clickhappier @clickhappier has a post about it somewhere.
 
Status
Not open for further replies.