Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Supported by

Is the second response unavailable in the latest version?

Hi, I'm modifying a self-pacing reading task in this attached OpenSesame script. My goal is to run this experiment on JATOS server. This task require the participants respond to the probe between sentences. The design is like the below clip photo. I could run this script in the local machine. However, when I tested this script on OSWEB, the script was stuck at probe_response . Is this the limitation for the current OSWEB?


Comments

  • Hi @CSC ,

    There's an issue with OSWeb that causes experiments to freeze when multiple linked copies of the same item are in a single sequence . In your case this is logger. You don't really need the second linked copy of logger though. Instead, you could insert an inline_javascript after passage_response to assign the response variables to different names. (This will avoid them from being overwritten by probe_response.)

    vars.passage_response = vars.response
    vars.passage_response_time = vars.response_time
    vars.passage_correct = vars.correct
    

    And then you can simply have a single logger at the end of passage_sequence, as you normally would.

    Cheers!

    Sebastiaan

  • Thank you @sebastiaan

    Your tip erased our first block we run the study on the internet.

  • Your tip erased our first block we run the study on the internet.

    What do you mean exactly? What block, and in what sense was it erased by my suggestion?

Sign In or Register to comment.