12/25 - Christmas Monday!

Status
Not open for further replies.

klyde

No, I don't want to see your pog collection
Contributor
Joined
Mar 24, 2016
Messages
3,302
Reaction score
5,497
Points
838
Gender
Male
okay, now I have to change one of the selections in order for enter to submit to work
I'd like to watch the vid and click enter (assuming all checked are correct) what am I missing?
For JD? Mine works just find after my own edits this morning. Some ofthe backgrounds wont work properly. Click one of the bubbles you have already clicked and then try Enter again.
 

lsutiger25

Well-Known Member
Contributor
Joined
Sep 16, 2016
Messages
4,999
Reaction score
8,116
Points
888
Gender
Female
Title: Create 1 short video using your mobile device | Accept
Requester: Eileen [A38L7Q1NV6RPM2] Contact
TV: [Hrly: $33.14] [Pay: 5.00] [Fast: null] [Comm: null] [Rej: 0] [ToS: 0] [Blk: 0]
TO: [Pay: 5.00] [Fast: 5.00] [Comm: 5.00] [Fair: 5.00] [Reviews: 3] [ToS: 0]
TO2:
No Reviews
Reward: $3.89
Duration: 1 day
Available: 1
Description: Create a 10-15 second video using your mobile device sharing a Holiday drawing
Requirements: Gender - Female EqualTo 1; Location EqualTo US
[tr][td]
HIT exported from Mturk Suite v2.0.6
[/td][/tr]
[tr][td][/td][/tr]
 

klyde

No, I don't want to see your pog collection
Contributor
Joined
Mar 24, 2016
Messages
3,302
Reaction score
5,497
Points
838
Gender
Male
For JD? Mine works just find after my own edits this morning. Some ofthe backgrounds wont work properly. Click one of the bubbles you have already clicked and then try Enter again.
left shift lol. Righty here so having my lefty over there was so much better.
 

lsutiger25

Well-Known Member
Contributor
Joined
Sep 16, 2016
Messages
4,999
Reaction score
8,116
Points
888
Gender
Female
Title: Create 1 short video using your mobile device | AcceptA
Requester: Eileen [A38L7Q1NV6RPM2] Contact
TV: [Hrly: $33.14] [Pay: 5.00] [Fast: null] [Comm: null] [Rej: 0] [ToS: 0] [Blk: 0]
TO: [Pay: 5.00] [Fast: 5.00] [Comm: 5.00] [Fair: 5.00] [Reviews: 3] [ToS: 0]
TO2:
No Reviews
Reward: $3.89
Duration: 1 day
Available: 1
Description: Create a 10-15 second video using your mobile device sharing a Holiday drawing
Requirements: Gender - Female EqualTo 1; Location EqualTo US
 

klyde

No, I don't want to see your pog collection
Contributor
Joined
Mar 24, 2016
Messages
3,302
Reaction score
5,497
Points
838
Gender
Male
Title: Create 1 short video using your mobile device | AcceptA
Requester: Eileen [A38L7Q1NV6RPM2] Contact
TV: [Hrly: $33.14] [Pay: 5.00] [Fast: null] [Comm: null] [Rej: 0] [ToS: 0] [Blk: 0]
TO: [Pay: 5.00] [Fast: 5.00] [Comm: 5.00] [Fair: 5.00] [Reviews: 3] [ToS: 0]
TO2:
No Reviews
Reward: $3.89
Duration: 1 day
Available: 1
Description: Create a 10-15 second video using your mobile device sharing a Holiday drawing
Requirements: Gender - Female EqualTo 1; Location EqualTo US
Wow Eileen I would have loved been paid almost 4 dollars for the 250 video from a few months ago.
 

El Pablo

ಠ_ಠ
Contributor
Joined
Jan 12, 2016
Messages
6,831
Reaction score
13,459
Points
1,063
Location
The Upside Down
Gender
Male
Title: Usability Testing $10 / 15 minutes - Living USA - Android and Desktop | Accept
Requester: Alberto [A2OBNJP08E9AYC] Contact
TV: No Reviews
TO: [Pay: 5.00] [Fast: 5.00] [Comm: 5.00] [Fair: 5.00] [Reviews: 3] [ToS: 0]
TO2:
No Reviews
Reward: $10.00
Duration: 50 minutes
Available: 1
Description: Record your Android smartphone and/or Desktop (mac, win, linux) screen and your voice while you spend 15 minutes max testing a prototype. Then upload the recording.
Requirements: None
[tr][td]
HIT exported from Mturk Suite v2.0.6
[/td][/tr]
[tr][td][/td][/tr]
 

SarahAshlee90

Well-Known Member
Crowd Pleaser
Joined
Mar 4, 2016
Messages
2,781
Reaction score
5,294
Points
963
Age
33
Gender
Female
Wasn't planning on doing this again but what the hell. This is version 2. Note at the top the @version 2. This replaces the original script. You should only have one script, make sure you dont have two scripts running or it will interfere. English answers are selected by default, pressing 1 on the numpad changes questions 2 and 3 to foreign.

If you want the enter button to submit for you change the word false on line 11 to true. I am not allowed to do it by default.
 
  • Like
Reactions: El Pablo

SarahAshlee90

Well-Known Member
Crowd Pleaser
Joined
Mar 4, 2016
Messages
2,781
Reaction score
5,294
Points
963
Age
33
Gender
Female
Code:
// ==UserScript==
// @name         john doe
// @version      2
// @description  autoselect
// @author       SarahAshlee90
// @include     https://www.google.com/*
// @grant        none
// @require     https://code.jquery.com/jquery-3.1.1.min.js
// ==/UserScript==

var submit_Hotkey = false;
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();

window.onkeydown = function (event) {
        if(event.which == 97){                          //numpad 1 hotkey
            $('input[value="PLAYABLE"]').eq(0).click();
            $('input[value="FOREIGN"]').eq(0).click();
            $('input[value="FOREIGN"]').eq(1).click();
            $('input[value="NOT_SENSITIVE"]').click();
        }

        if(event.which == 13){                //numpad enter hotkey
            console.log('enter was pressed');
            if (submit_Hotkey === true){
                $("#submit").click();
            }
        }
};


}, 888);
 
  • Like
Reactions: JHkerriokey

262

Active Member
Contributor
Joined
Feb 15, 2017
Messages
544
Reaction score
702
Points
368
Age
41
Gender
Male
Screener that I didn't qualify for:

Title: Understanding Reactions to Social Media Posts | PANDA
Requester: IU Kap Lab [A13Y9TN4ZANH4Q] (TO)
TO Ratings:
★★★★ 4.67 Communicativity
★★★★★ 3.04 Generosity
★★★★ 4.11 Fairness
★★★★★ 5.00 Promptness
Number of Reviews: 32 | TOS Flags: 2
Submit a new TO review
Description: The purpose of this research is to understand how social media posts are perceived by the sender and the receivers.
Time: 18000
HITs Available: 2
Reward: $1.00
Qualifications: Total approved HITs GreaterThanOrEqualTo 100;HIT approval rate (%) GreaterThanOrEqualTo 98;Location EqualTo US
 
  • Like
Reactions: Pacis Amans

262

Active Member
Contributor
Joined
Feb 15, 2017
Messages
544
Reaction score
702
Points
368
Age
41
Gender
Male
2 mins, cool completion code:

Title: 5-min Study: Rate a person on their traits(~ 5 minutes) | PANDA
Requester: Adam B. Cohen [A21PEIJS1K78KP] (TO)
TO Ratings:
★★★★ 4.20 Communicativity
★★★★★ 3.87 Generosity
★★★★ 4.91 Fairness
★★★★ 4.67 Promptness
Number of Reviews: 32 | TOS Flags: 0
Submit a new TO review
Description: 5-min Study: Read a short story about a character, then rate that person on some traits
Time: 3600
HITs Available: 1
Reward: $0.35
Qualifications: Exc: [-36285073-68722] DoesNotExist ;Location In US
 
Status
Not open for further replies.