Matanel Weissman
About
- Username
- Matanel Weissman
- Joined
- Visits
- 13
- Last Active
- Roles
- Member
Comments
-
Hello, I have done what sebastiaan said and it worked, but I need an extra thing. I need please the experiment to end if the participant didn't reach to 80% accuracy. How can I do that? I need the exp to end after two tries to reach 80% acc - I kn…
-
Not working. show_cursor(show=True) - works as for about a second that I press the mouse and then disappears. I am thinking about drawing a sketchpad in the inline script. Do you think it may solve this? Do you have some recommendation for how to …
-
Thanks a lot Eduard now I realy need only one click. But now I am stuck - can't make the cursor visible - I tried this code: mouse.show_cursor(show=True) and also this : my_mouse.show_cursor(show=True) but still the cursor doesn't appear on the …
-
Thanks Eduard for your reply and answers. I didn't define my self the var.cursor_x I think that ones you use the item: mouse_response. I challenge you to check it out - put the item mouse_response and then go to variable inspector - and you will fi…
-
Thanks guys, but I didn't set any sketchpad durations to 'mouselick', or insert a mouse_response item somewhere. I attach my experiment file - can you open it ?
-
ignore the previous comment. . 1)In short I don't understand what is the output of Cursor_x - a variable one can only find at the log item. and to what coordinates it relates to ? 2)my_mouse = mouse() (x,y), timestamp = my_mouse.get_pos() to w…
-
Thanks a lot! It was much more simple then I thoght! But I have another question if I may: I Just did this : (x,y), timestamp = my_mouse.get_pos() var.difference = var.correct_response + 1200 - x And it worked - I don't need to re-…
-
Thanks, you can close this discussion.
-
my experiment
-
Hello Eduard, I answered you on this discussion http://forum.cogsci.nl/index.php?p=/discussion/3491/scales-in-sketch-pad-reset-to-zero-in-a-different-place#latest
-
Hello Eduard, I answered you on this discussion http://forum.cogsci.nl/index.php?p=/discussion/3491/scales-in-sketch-pad-reset-to-zero-in-a-different-place#latest
-
Thank you Eduard, I would like to ''log'' a variable that takes the variable ''correct_response'' and adds to it the value 600, and then takes the variable cursor_x adds to it the value 600, and then takes the new value of cursor_x and the new valu…
-
(Image) I tried this function that I treid to def but it doesn't work either. I have also tried these two options (with the right indentation): def set_mouse_pos(x): for x in pygame: if pygame.event: return pygame.mouse.set_pos(400,4…
-
(Image) Thank you very much Pascal. I am using Legasy [uses Pygame] backend. "I assuming you included a code like the following in the run phase (not the prepare phase) of inline_script_3_1?" ---------- YES I will try this: mousetrap_r…
-
Hello Pascal and Sebastiaan, I have used these lines: import pygame pygame.mouse.set_pos(xstart,ystart) and it works well on full screen (partly) and in quick run (fully) but! but it works for me on full screen for only one row from the loop. how…