adebersole
About
- Username
- adebersole
- Joined
- Visits
- 15
- Last Active
- Roles
- Member
Comments
-
Eduard, Yes, this is perfect! Thank you so much for all your help! :) Ashley
-
Eduard, Yes, that makes sense but does not work for what I want to accomplish. In a change blindness task the objective is to quickly switch back and forth between two images with a gray mask in between. Participants are to identify the change and…
-
Okay, definitely getting closer! Thanks so much! With the above changes my experiment now runs, but with a few small hiccups. This is my current code in the "run" phase: for i in range(repetitions): my_canvas1.show() resp, position…
-
I did some reading on the forum and understand that I misinterpreted the origin for the coordinates. I now have all of my coordinates based on a (0,0) in the top left and thus all of my x y coordinates are positive integers. However, this did not s…
-
Eduard, I thought this section of code set a limit to the repetitions: frame_dur = 250repetitions = 45 When the image is clicked the window becomes unresponsive, and nothing ever prints in the debug window. It does not even respond to the escape …
-
Eduard, Yes, that solved the error. Thank you for your help. I am starting to understand what they say about writing code; fix one thing and something else breaks. My cycle is no longer working and I really cannot find a reason why. Before adding…
-
Josh, I had everything in the "run" phase. I moved everything before the loop commands to the prepare phase, but I am still getting the same error. "Error while executing inline script phase: run item: Practice_pair line: 8 exceptio…
-
Josh, Yes, I believe that I defined the x and y variables correctly. This is the complete code that I have right now: frame_dur = 250repetitions = 45start_time = self.timefrom openexp.mouse import mousefrom openexp.canvas import canvasx_min = -256…
-
Great! This makes a lot more sense. I ran into one more snag though, I am now getting this error: "Error while executing inline script phase: run item: Practice_pair line: 32 exception message: 'NoneType' object has no attribute 'getitem' ex…
-
Josh, I really appreciate your help! This did help me to make sense of recording the mouse responses. However, I am getting an "invalid syntax" error for the line "while correct_response_given = False" I inserted your suggestio…