8/7/2016 Super Stacks Sunday!

Discussion in 'Great HITs' started by tehapollo, Aug 6, 2016.

?

Fox: how long have you been on the internet since what age . . .

  1. 0-3

    3 vote(s)
    8.6%
  2. 4-8

    5 vote(s)
    14.3%
  3. 8+

    27 vote(s)
    77.1%
Thread Status:
Not open for further replies.
  1. Lori1985

    Lori1985 User

    Joined:
    Nov 6, 2012
    Messages:
    14,058
    Likes Received:
    0
    I had to report the post. No excuse for posting such horror this far before Halloween.
     
  2. Pucca

    Pucca User

    Joined:
    Sep 15, 2015
    Messages:
    1,895
    Likes Received:
    17
    Or not...

    [video=youtube;HL1UzIK-flA]https://www.youtube.com/watch?v=HL1UzIK-flA[/video]
     
    #22 Pucca, Aug 7, 2016
    Last edited by a moderator: Aug 7, 2016
  3. Lori1985

    Lori1985 User

    Joined:
    Nov 6, 2012
    Messages:
    14,058
    Likes Received:
    0
    That Rihanna video suggested I watch this. Seth Rogen can dance just like Drake. It must be a Canadian thing. Hotline Bling is last.
    [video=youtube;n-14eyaJg4M]https://www.youtube.com/watch?v=n-14eyaJg4M[/video]
     
  4. Bertha

    Bertha User

    Joined:
    May 15, 2012
    Messages:
    1,463
    Likes Received:
    21
    Good morning everyone. I have a quick question. I've had 2 HITs from different requesters that automatically submit when I input a number, say for age/date, etc.

    Does it have to do with the Bark script or is there something wrong with the HIT itself?
     
  5. plicky

    plicky User

    Joined:
    Jul 30, 2014
    Messages:
    1,932
    Likes Received:
    1
    I had the same thing happen with the Samuel Gershman HIT. I don't think it's related to the Bark script because I didn't enter the values on a NumPad.

    edit: I guess others are saying it's due to the script.
     
    #25 plicky, Aug 7, 2016
    Last edited by a moderator: Aug 7, 2016
  6. TurkinPigeon

    Joined:
    Jan 11, 2016
    Messages:
    5,526
    Likes Received:
    0
    Faithers and someone else had this happen for some other hit and said it was due to the bark script. I'm not sure how that works but it was previously posted that this problem affected others while using that script.
     
  7. gman42

    gman42 User

    Joined:
    Aug 22, 2013
    Messages:
    5,727
    Likes Received:
    0
    It might be, if it's an AHK script you shouldn't leave it running when you're not using it. It's not like a Tampermonkey script that only applies on certain pages. (If it is a TM script, then maybe it's just a bug...you can try disabling it in the TM dashboard.)
     
  8. Morrisa

    Morrisa User

    Joined:
    Apr 17, 2014
    Messages:
    27,516
    Likes Received:
    0
    Bark is a regular js script that runs in GM/TM.

    I'm running a fixed/modified version of it and haven't noticed any issues, but I still try and remember to turn it off just to prevent general wonkiness.

    If you've still got auto-submit enabled Bertha, that might be it.
     
  9. Bertha

    Bertha User

    Joined:
    May 15, 2012
    Messages:
    1,463
    Likes Received:
    21
    Thanks everyone.

    I had sent an email to a requester saying his HIT was broken, got a rejection, deserved since I didn't complete the HIT.

    Didn't think much of it yesterday till today when it happened again.

    Won't have it running till I need it.
     
  10. D1G1TALFOX

    D1G1TALFOX Banned

    Joined:
    Aug 7, 2014
    Messages:
    7,231
    Likes Received:
    0
    Watched the Mechanic Resurrection work print copy Today, Great Movie Highly Recommend when it comes out later this month . . .

    [​IMG]
     
  11. Bertha

    Bertha User

    Joined:
    May 15, 2012
    Messages:
    1,463
    Likes Received:
    21
    Yeah, I should have disabled the auto-submit. I'm so not savvy with this stuff, but do I just change the auto-submit True to False?
     
  12. Morrisa

    Morrisa User

    Joined:
    Apr 17, 2014
    Messages:
    27,516
    Likes Received:
    0
    Yeah, if you're going to use the script with the auto turned on, definitely disable it when not working on Barks just in case.

    Just also know that with that batch, you can't select multiple options with auto turned on - which is another reason why I had to modify it.
     
  13. Morrisa

    Morrisa User

    Joined:
    Apr 17, 2014
    Messages:
    27,516
    Likes Received:
    0
    Actually, there are a few minor issues with that script I had to fix.

    But yes, change true to false to disable the auto, but you also might run into a window focus issue like that. I had that problem when I altered it. Pressing the # key would select the correct option, but the Enter button wouldn't submit. If you run into that, add this line right below "window.focus();" at the top of the script:

    $( "input[value='cyberbullying']" ).focus();
     
  14. Bertha

    Bertha User

    Joined:
    May 15, 2012
    Messages:
    1,463
    Likes Received:
    21
    I should have modified it then but I thought I'd just make sure to click on the answers instead of using number pad when there was more than one option or when selecting Depression (2) so that it wouldn't also select None.

    Lesson learned....Morrisa is always right :)
     
  15. Morrisa

    Morrisa User

    Joined:
    Apr 17, 2014
    Messages:
    27,516
    Likes Received:
    0
    Oh damn yeah I forgot about that part too. The 2 key is messed up because of the last few lines of that script which actually pertain to the other version of Barks. The Yes/No batch. So in essence, the 2 key is running both scripts at once, which is why it's selecting both options. You can fix that, too.

    Once you disable the auto and add your focus line, comment out the last lines until you need them. For me, it's lines 57 and 62. Just add /* (very beginning of line 57) and */ (after the } on line 62).

    It should look like this (bolded for emphasis):

    /* if ((event.keyCode === 98)) { // 2 No
    $("input[value='none']").click();
    if (autosubmit) {
    $("#submitButton").click();
    }
    } */
    };

    Just remember that you'll need to de-comment that out to use the script in the Yes/No batch. Not sure what glitch *that* will cause with the other one running, so you'll probably want to comment out the first part at that point, lol. Honestly, I'd just break that up into two different scripts.
     
  16. Jamie

    Jamie User

    Joined:
    Jul 17, 2010
    Messages:
    1,050
    Likes Received:
    0
    Someone put an auto submit on a publicly available script? Yikes. I'd love to see the kind of results bark got.
     
  17. Morrisa

    Morrisa User

    Joined:
    Apr 17, 2014
    Messages:
    27,516
    Likes Received:
    0
    Yup. First thing I did was disable the hell out of that.
     
  18. D1G1TALFOX

    D1G1TALFOX Banned

    Joined:
    Aug 7, 2014
    Messages:
    7,231
    Likes Received:
    0
    I mean it only auto submits after you have made your choice, same as venue auto script, I haven't had any problems with either . . .
     
  19. Jamie

    Jamie User

    Joined:
    Jul 17, 2010
    Messages:
    1,050
    Likes Received:
    0
    Yeah but it's not a yes or no question on the barks, its got multiple boxes you can tick. If you choose one selection and it submits when there are multiple labels that apply, you're doing it incorrectly. I know a lot of people probably watched out for things like that and did those ones manually but certainly not everyone.
     
  20. Morrisa

    Morrisa User

    Joined:
    Apr 17, 2014
    Messages:
    27,516
    Likes Received:
    0
    This, plus selecting 2 also selects 6. If you're letting it auto, you might not even see that in time.
     
Thread Status:
Not open for further replies.

Share This Page