Avatar

Howdy, Stranger!

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

Supported by

Daxide

About

Username
Daxide
Joined
Visits
9
Last Active
Roles
Member

Comments

  • Yes, that is what I wanted to do, and that indeed worked! Thanks! Just to answer your question: The coordinates in the smaller loops should be repeated sequentially for example ABAB, CDCD...like 2-back task. I just set order sequential and repeat ea…
  • Kate, try my version of N-back (attached) and let me know if this is what you desire. It's not auditory, but visual. However, this could easily be changed.
    in N-back Comment by Daxide November 2016
  • Great! It works
    in N-back Comment by Daxide November 2016
  • Well, I ended up adopting a much simpler (but less smart) solution. I generated a random sequence at random.org and then I created a "correct_response" variable, and inserted the correct response manually. One problem is this: How do I spe…
    in N-back Comment by Daxide November 2016
  • Let me try to see if I understood you correctly. I have two target variables. One contains the same number (e.g. 1,1,1,1,1,1,1,1,1) and the other a sequence of different numbers(e.g. 1,2,3,4,5,6,7,8,9). Then I got another variable (target_same) call…
    in N-back Comment by Daxide November 2016
  • Hi Josh, thanks for your answer. N should be fixed. I have a variable "target_digit" that displays digits 1 to 9 randomly. I just need to code the correct response, so that the user has to press a key only if the same digit was displayed …
    in N-back Comment by Daxide November 2016
  • I have a sketchpad item ("target") with a "target_digit" variable, containing digits from 1 to 9. I set an allowed response (e.g. "set allowed_responses s"). Now, I need to write a line in the keyboard_response item (se…
  • I have a sketchpad-target element, displaying a digit (variable name: target_digit)and a response_key element for correcting the right response. I need to write a line in the correct response field (set correct_response) which tells OpenSesame to pr…
  • Hey guys, has anyone in the meantime been able to implement the N-back task?
  • That works! Thanks
  • Great! Thanks a lot. Too bad nobody has yet uploaded the n back. If you have it please do it, as it is a common and widespread task.
  • I am sorry I do not see any font-selection dialog in the form text input (which is the form I am using). I see the font selection dialog only in the Sketchpad...
  • Open Sesame 3 and 3.1 (both have the same issue). I use Windows 7 (64 bit)
  • That's right. Sorry I have been using OpenSesame for only a few days. I figured it out, I just had to repeat the cycle only once.
  • Great! It provides feedback and breaks the loop as I requested. However, the message pops up asking to press any key to continue, whereas the experiment should be over once a N number of correct responses has been achieved.
  • Yes, it makes sense. How do I create a variable that keeps track of the number of correct responses? I suppose I have to add some Python command. The script now looks like this: set break_if "[no_correct]=12" setcycle 0 target_digit 11 set…