- Joined
- May 1, 2017
- Messages
- 3,426
- Reaction score
- 8,150
- Points
- 888
- Gender
- Male
Are you using a scrapper? How many HITs have you completed? Are you looking for surveys as well?I'm crust not finding anything at all beyond those John Doe hits. I'm going to be in trouble soon. I just need to make about 4.00...
Do you know which script it was? I think I saw someone post an AHK earlier and if that's what you're trying to use, it's a bit different from normal JS scripts.You know I've tried to find out to search on how to use a script like someone mentioned today for John Doe hits. I'm puzzled how to use the script. I've searched Turk Scripts and just get the big programs. I tried keybind scripting in Turk, didn't work. Can someone point me in a direction to figuring out how to use the John Doe HIT script?
I'm crust not finding anything
Actually wheat a minute
Have you actually "made" the script in Tampermonkey? Aka, opened a blank script, then copied and pasted, named, and saved the script?You know I've tried to find out to search on how to use a script like someone mentioned today for John Doe hits. I'm puzzled how to use the script. I've searched Turk Scripts and just get the big programs. I tried keybind scripting in Turk, didn't work. Can someone point me in a direction to figuring out how to use the John Doe HIT script?
this one...Do you know which script it was? I think I saw someone post an AHK earlier and if that's what you're trying to use, it's a bit different from normal JS scripts.
nope..no idea what to do with it...I'll see if I can do that...thanks!Have you actually "made" the script in Tampermonkey? Aka, opened a blank script, then copied and pasted, named, and saved the script?
If you haven't done them already, here are a couple to help get you to your $4 mark.Actually wheat a minute I just found: https://worker.mturk.com/projects/3...?assignment_id=3IX2EGZR7BJDZVGYDVP7L4U9U3UJRT
I need to learn more about these terms and tools. I have over 20 or so of the old and new stuff on tamper including TurkMaster but as I'm still a novice with it I'm crust not likely using as effectively as I could. I don't have accept and preview on anything at the moment and none usual stuff I have saved are turning up. So I'm just looking manually.
Yeah, that's an autohotkey script. You'll actually have to download and install the AHK software from here. After that, you would copy that text and paste it into a new text file, then name it filename.ahk. Then you would be able to run that script by opening that file. I should add that AHK only works on Windows, so if you're on something different you're kinda out of luck.this one...
If anyone needs an AHK for John Does, here's what I'm using.
Code:
1:: send {tab}{down}{tab}{down 3}{tab}{down}{Tab 2}
2:: send {tab}{down}{tab}{down}{tab}{down}{Tab 2}
3:: send {tab}{down 3}{tab}{down}{tab}{down}{Tab 2}
4:: send {tab}{space}{tab}{down 3}{tab}{down}{Tab 2}
5:: send {tab}{space}{tab}{space}{tab}{down}{Tab 2}
6:: send {tab}{down 3}{tab}{space}{tab}{down}{Tab 2}
7:: send {tab}{down 3}{tab}{down 3}{tab}{down}{Tab 2}
8:: send {tab}{down}{tab}{space}{tab}{down}{Tab 2}
9:: send {tab}{space}{tab}{down}{tab}{down}{Tab 2}
Click yes first then press a number.
1 = foreign speech, no text.
2 = foreign speeh and text
3 = foreign text, no speech.
4 = english speech, no text
5 = english speech and text
6 = english text, no speech
7 = no speech or text
8 = foreign speech, English text
9 = English Speech, foreign text
All of them set objectionable content to No and then highlight the submit button. If no objectional content, hit space to submit. Otherwise, go back, change that to yes, and pick whatever content you saw.
SWEET...thanks so much!Yeah, that's an autohotkey script. You'll actually have to download and install the AHK software from here. After that, you would copy that text and paste it into a new text file, then name it filename.ahk. Then you would be able to run that script by opening that file. I should add that AHK only works on Windows, so if you're on something different you're kinda out of luck.
Just an FYI about ahk, since you're new to it: Script performance can sometimes vary from computer to computer, depending on how the script is written and the speed of your computer. I would make sure that it's actually doing what you're expecting it to do before you start submitting stuff. Also, don't forget to turn the script off after you're done using it, otherwise it could cause issues with other things.SWEET...thanks so much!
Good stuff, I owe you a coke.Just an FYI about ahk, since you're new to it: Script performance can sometimes vary from computer to computer, depending on how the script is written and the speed of your computer. I would make sure that it's actually doing what you're expecting it to do before you start submitting stuff. Also, don't forget to turn the script off after you're done using it, otherwise it could cause issues with other things.
// ==UserScript==
// @name john doe
// @version 1.0
// @description autoselect
// @author SarahAshlee90
// @include https://www.google.com/*
// @grant none
// @require https://code.jquery.com/jquery-3.1.1.min.js
// ==/UserScript==
setTimeout(function(){
$('div[id="video-placeholder"]').click();
$('input[value="PLAYABLE"]').eq(0).click();
$('input[value="ENGLISH"]').eq(0).click();
$('input[value="ENGLISH"]').eq(1).click();
$('input[value="NOT_SENSITIVE"]').click();
}, 888);
If you want to use your keypad, just add numpad before each number, like so:this one...
If anyone needs an AHK for John Does, here's what I'm using.
Code:
1:: send {tab}{down}{tab}{down 3}{tab}{down}{Tab 2}
2:: send {tab}{down}{tab}{down}{tab}{down}{Tab 2}
3:: send {tab}{down 3}{tab}{down}{tab}{down}{Tab 2}
4:: send {tab}{space}{tab}{down 3}{tab}{down}{Tab 2}
5:: send {tab}{space}{tab}{space}{tab}{down}{Tab 2}
6:: send {tab}{down 3}{tab}{space}{tab}{down}{Tab 2}
7:: send {tab}{down 3}{tab}{down 3}{tab}{down}{Tab 2}
8:: send {tab}{down}{tab}{space}{tab}{down}{Tab 2}
9:: send {tab}{space}{tab}{down}{tab}{down}{Tab 2}
Click yes first then press a number.
1 = foreign speech, no text.
2 = foreign speeh and text
3 = foreign text, no speech.
4 = english speech, no text
5 = english speech and text
6 = english text, no speech
7 = no speech or text
8 = foreign speech, English text
9 = English Speech, foreign text
All of them set objectionable content to No and then highlight the submit button. If no objectional content, hit space to submit. Otherwise, go back, change that to yes, and pick whatever content you saw.
numpad1:: send {tab}{down}{tab}{down 3}{tab}{down}{Tab 2}
Copy everything in the code boxWhile I just got the AHK script working I'm curious how to run the userscript that sarahashlee made since it appears to be on a different sort of platform.