01/27 - Fantastic Friday!

Status
Not open for further replies.

KellieS23

Anyone else feel like a Rainbow?
Contributor
Joined
Apr 6, 2016
Messages
6,287
Reaction score
10,331
Points
1,063
Location
Kansas
Gender
Female
Title: Fast and easy content viewing (few minutes for possible $0.60) - E8lzdUEas3V2ezXj87kMm | PANDA
Requester: Sticky [A1I5WZRIXY5GS9] (Contact)
(TO): [Pay: 4.46] [Fair: 4.72] [Comm: 4.19] [Fast: 4.76]
Description:
Look at some content for a few minutes to help us improve our measurements.
Time: 20 minutes
HITs Available: 1
Reward: $0.40
Qualifications: Age is not greater than 70; Location is US; Age is not less than 18;

If your into random people watching you...
 

turktime4:20

Active Member
Joined
Dec 10, 2016
Messages
642
Reaction score
542
Points
293
Age
35
Gender
Male
Any one know what address he looking for Mailing or Physical? Since he got the Physical in the HIT I guessing Mailing?
Title: Copy & Paste name and address | PANDA
Requester: john [A1KA3C8X1P464C] (TO)
TO Ratings:

☢☢☢☢☢ 0.00 Communicativity
☢☢☢☢☢ 1.00 Generosity
☢☢☢☢☢ 0.00 Fairness
☢☢☢☢☢ 0.00 Promptness
Number of Reviews: 2
(Submit a new TO rating for this requester)

Description: Go to county assessor site (provided) search provided address, then copy and paste homeowner name and mailing address.
Time: 20 minutes
Hits Available: 1121
Reward: $0.03
Qualifications: None
 

Blue

Unlikeable Ass
Contributor
Joined
Jan 11, 2016
Messages
4,183
Reaction score
13,272
Points
838
Gender
Male
I have no doubt, but pretty much all my scripts are just kludges that mimic simple keyboard commands cause that's about as far as my understanding goes :p I'll go look those up though, thanks.
An iterative counter basically just counts each time you press that hotkey.
Code:
foo = 1

3::
Send Hello World
foo += 1
return
So every time you press three it will send Hello World and add a value of 1 to the variable %foo%. This is useful if you want to do something like copy multiple items using the same hotkey.... in case you have a limited number of buttons you want to use and consolidating hotkeys that have a like function in a predictable way works for your needs.

Code:
4::
send ^c
name%foo% = Clipboard
foo += 1
So now I've created an array the size of the variable %foo% (name%foo%) and each time I press 4 I'll copy whatever is highlighted and store it in the next cell of the array.

Then if I want to print it out... something along these lines
Code:
5::
Loop, %foo%
{
hoo := name%A_Index%
send %hoo%
}
return
So now... I've got a loop that is the size of the array I created... %A_Index% contains the value of the number of cycles the loop has gone through... so i'm stepping through my %name% array... pulling the content of that cell out, saving it to a variable and sending that variable. You could also just send each cell to the clipboard. This part is a little wonky but thats just because of the way ahk handles send commands and variables.
 

Business Cat

Catipalist
Contributor
Joined
Jan 12, 2016
Messages
1,578
Reaction score
6,222
Points
838
Location
Saint Louis
Gender
Female
Did anyone start on their Wills yet? mine are broken, when you click the 'proceed, I understand' button, it just submits the HIT.

I just sent the req a note about it but it's google so idk I'm not expecting a response.
 

Squatty

.
Contributor
Crowd Pleaser
HIT Poster
Joined
Mar 17, 2016
Messages
21,286
Reaction score
44,989
Points
2,538
Age
36
Gender
Female
An iterative counter basically just counts each time you press that hotkey.
Code:
foo = 1

3::
Send Hello World
foo += 1
return
So every time you press three it will send Hello World and add a value of 1 to the variable %foo%. This is useful if you want to do something like copy multiple items using the same hotkey.... in case you have a limited number of buttons you want to use and consolidating hotkeys that have a like function in a predictable way works for your needs.

Code:
4::
send ^c
name%foo% = Clipboard
foo += 1
So now I've created an array the size of the variable %foo% (name%foo%) and each time I press 4 I'll copy whatever is highlighted and store it in the next cell of the array.

Then if I want to print it out... something along these lines
Code:
5::
Loop, %foo%
{
hoo := name%A_Index%
send %hoo%
}
return
So now... I've got a loop that is the size of the array I created... %A_Index% contains the value of the number of cycles the loop has gone through... so i'm stepping through my %name% array... pulling the content of that cell out, saving it to a variable and sending that variable. You could also just send each cell to the clipboard. This part is a little wonky but thats just because of the way ahk handles send commands and variables.
So helpful!
 

C to the J

Outlaw Turker
Contributor
Master Pleaser
Crowd Pleaser
HIT Poster
Joined
Jan 12, 2016
Messages
53,226
Reaction score
163,950
Points
3,238
Age
37
Gender
Male
They've been kicking ass. :hockey:

But I refuse to pay $150 for an NHL subscription....so I've only seen like 2 games all year. :cliff:
 
  • Like
Reactions: Kerek

Starslip

Well-Known Member
Contributor
Crowd Pleaser
Joined
Jan 19, 2016
Messages
13,351
Reaction score
35,529
Points
1,588
Age
125
Gender
Male
An iterative counter basically just counts each time you press that hotkey.
Code:
foo = 1

3::
Send Hello World
foo += 1
return
So every time you press three it will send Hello World and add a value of 1 to the variable %foo%. This is useful if you want to do something like copy multiple items using the same hotkey.... in case you have a limited number of buttons you want to use and consolidating hotkeys that have a like function in a predictable way works for your needs.

Code:
4::
send ^c
name%foo% = Clipboard
foo += 1
So now I've created an array the size of the variable %foo% (name%foo%) and each time I press 4 I'll copy whatever is highlighted and store it in the next cell of the array.

Then if I want to print it out... something along these lines
Code:
5::
Loop, %foo%
{
hoo := name%A_Index%
send %hoo%
}
return
So now... I've got a loop that is the size of the array I created... %A_Index% contains the value of the number of cycles the loop has gone through... so i'm stepping through my %name% array... pulling the content of that cell out, saving it to a variable and sending that variable. You could also just send each cell to the clipboard. This part is a little wonky but thats just because of the way ahk handles send commands and variables.
Damn. That's much neater, and wouldn't need nearly as many keys. Thanks for typing all that out.
 

C to the J

Outlaw Turker
Contributor
Master Pleaser
Crowd Pleaser
HIT Poster
Joined
Jan 12, 2016
Messages
53,226
Reaction score
163,950
Points
3,238
Age
37
Gender
Male
r/nhlstreams ?
Yea but I like to watch on the TV.

So then the stream freezes or fucks up every 15 minutes and I have to run into the office and fix it....and it just becomes frustrating when I'm trying to chill on the couch. :bode:
 
  • Like
Reactions: Kerek
Status
Not open for further replies.