10/05 - Two Faced Thursday!

Status
Not open for further replies.

Shawnbks9090

Active Member
Contributor
Joined
Dec 25, 2016
Messages
967
Reaction score
1,019
Points
468
Gender
Male
anyone have a script to set rekogs on 4 auto matically
 

Jaded

The real themildone
Administrator
Joined
Jan 10, 2016
Messages
46,618
Reaction score
123,839
Points
1,414
Age
123
Gender
Female
I've been working on one of those "choose your own adventure" book-style mobile apps... maybe I'll add that in as an option.
Do they make adult choose your own adventure books?

(note: I do not mean ADULT adult.)
(but now I'm gonna google that)
 

Cara

ad space now available
Contributor
Joined
Jan 12, 2016
Messages
6,685
Reaction score
12,921
Points
1,163
Location
Mass.
Gender
Female
anyone have a script to set rekogs on 4 auto matically

// ==UserScript==
// Name @Name reks
// @description Helps you make choices
// @version 0.1.2a
// @author RicanGuy86
// @contributor Melting Glacier's 3rd rate tinkering for HIT change
// @grant none
// @include *.mturkcontent.com/*
// @include https://aitiaotu.com/*
// @include https://s3.amazonaws.com/*
// @require http://code.jquery.com/jquery-2.1.0.min.js
// ==/UserScript==

if ($('h4:contains(Playback Rate)').length){


$("a[class='btn-rate-higher']")[0].click();
$("a[class='btn-rate-higher']")[0].click();
$("a[class='btn-rate-higher']")[0].click();
$("a[class='btn-rate-higher']")[0].click();
$("a[class='btn-rate-higher']")[0].click();
$("a[class='btn-rate-higher']")[0].click();
$("a[class='btn-rate-higher']")[0].click();

$(document).ready(function(){


$(document).keydown(function(e){
if (e.which == 50){
$("a[class='btn-no']")[0].click(); // 2 no
}
if (e.which == 49){
$("a[class='btn-yes']")[0].click(); // 1 yes
}
if (e.which == 51){
$("a[class='btn-unsure']")[0].click(); // 3 unsure
}
if (e.which == 13){
$("button[id='btnSubmit']")[0].click(); // Enter submit
}
if (e.which == 66){
$("a[class='btn-back']")[0].click(); // B back
}
if (e.which == 82){
$("a[class='overlay']")[0].click(); // R replay (doesn't work consistently??)
}
});
});}
 
  • Like
Reactions: turkLion and Kerek
Status
Not open for further replies.