egryan1
Active Member
- Joined
- Jan 12, 2016
- Messages
- 861
- Reaction score
- 1,179
- Points
- 393
- Age
- 44
- Gender
- Male
Not if its distant backgroundare you marking the same option if there’s other people in the distant background?
Not if its distant backgroundare you marking the same option if there’s other people in the distant background?
Don't stop. If I miss one, you'll be right there. Plus, I usually only post stuff that I'd do, hence qualify for. I am in a different demographic so, we need you.Naw! I am just trying to contribute more than I was.
He's still doing Indy at least.I miss Helio.
Hey thats not nice they have feelings tooIf the people in the background are blurry I ignore them.
Make sure you have a glass of wine or two before you figure out how much you are going to have to pay. It helps ease the sense of shock and horror.Thank you. Just trying to figure out this wacky and wonderful world of turking.
If I see others in the background then I mark that as more than one top.are you marking the same option if there’s other people in the distant background?
Well, their emotions/facial expressions are blurry too.Hey thats not nice they have feelings too
that’s what i’ve been doing. i hate second guessing myself after having done hundreds of them thoughIf I see others in the background then I mark that as more than one top.
It helps to put some pay in a saving accounts that way you at least make a little interest before giving it to the government. I never save enoughMake sure you have a glass of wine or two before you figure out how much you are going to have to pay. It helps ease the sense of shock and horror.
I would just stick with what your doing I would imagine it more important to be consistent in your markingsthat’s what i’ve been doing. i hate second guessing myself after having done hundreds of them though
I have done thousands and they put that more than one top option in there and gave me a few rejects and now I,m trying to figure out what I did wrong. Too bad there are no instructions on the hit.that’s what i’ve been doing. i hate second guessing myself after having done hundreds of them though
I use the radio keybind scriptany working scripts for these a9s?
Yea, give me a minuteany working scripts for these a9s?
// ==UserScript==
// @name A9 tops -- 3SI493PTTXCN8RR0YUKNNXB87T7ZDP
// @version 2.0
// @description change the word 'false' on line 11 to 'true' without the quotes for autosubmit
// @author SarahAshlee90
// @include /^https://(www|s3)\.(mturkcontent|amazonaws)\.com/
// @grant none
// @require https://code.jquery.com/jquery-3.1.1.min.js
// ==/UserScript==
var autosubmit = false;
function autoSub() {
if (autosubmit === true) {
$('#submitButton').click();
} else {
return
}
}
window.onkeydown = function (event) {
if(event.which == 97){
$('input[value="Crop"]').click();
autoSub();
}
if(event.which == 98){
$('input[value="Regular"]').click();
autoSub();
}
if(event.which == 99){
$('input[value="Long"]').click();
autoSub();
}
if(event.which == 100){
$('input[value="MoreThanOne"]').click();
autoSub();
}
if(event.which == 101){
$('input[value="CannotSee"]').click();
autoSub();
}
if(event.which == 102){
$('input[value="NotTop"]').click();
autoSub();
}
if(event.which == 103){
$('input[value="NoLoad"]').click();
autoSub();
}
}