agen judi bola , sportbook, casino, togel, number game, singapore, tangkas, basket, slot, poker, dominoqq,
agen bola. Semua permainan bisa dimainkan hanya dengan 1 ID. minimal deposit 50.000 ,- bonus cashback hingga 10% , diskon togel hingga 66% bisa bermain di android dan IOS kapanpun dan dimana pun. poker , bandarq , aduq, domino qq ,
dominobet. Semua permainan bisa dimainkan hanya dengan 1 ID. minimal deposit 10.000 ,- bonus turnover 0.5% dan bonus referral 20%. Bonus - bonus yang dihadirkan bisa terbilang cukup tinggi dan memuaskan, anda hanya perlu memasang pada situs yang memberikan bursa pasaran terbaik yaitu
http://45.77.173.118/ Bola168. Situs penyedia segala jenis permainan poker online kini semakin banyak ditemukan di Internet, salah satunya TahunQQ merupakan situs Agen Judi Domino66 Dan
BandarQ Terpercaya yang mampu memberikan banyak provit bagi bettornya. Permainan Yang Di Sediakan Dewi365 Juga sangat banyak Dan menarik dan Peluang untuk memenangkan Taruhan Judi online ini juga sangat mudah . Mainkan Segera Taruhan Sportbook anda bersama
Agen Judi Bola Bersama Dewi365 Kemenangan Anda Berapa pun akan Terbayarkan. Tersedia 9 macam permainan seru yang bisa kamu mainkan hanya di dalam 1 ID saja. Permainan seru yang tersedia seperti Poker, Domino QQ Dan juga
BandarQ Online. Semuanya tersedia lengkap hanya di ABGQQ. Situs ABGQQ sangat mudah dimenangkan, kamu juga akan mendapatkan mega bonus dan setiap pemain berhak mendapatkan cashback mingguan. ABGQQ juga telah diakui sebagai
Bandar Domino Online yang menjamin sistem FAIR PLAY disetiap permainan yang bisa dimainkan dengan deposit minimal hanya Rp.25.000. DEWI365 adalah
Bandar Judi Bola Terpercaya & resmi dan terpercaya di indonesia. Situs judi bola ini menyediakan fasilitas bagi anda untuk dapat bermain memainkan permainan judi bola. Didalam situs ini memiliki berbagai permainan taruhan bola terlengkap seperti Sbobet, yang membuat DEWI365 menjadi situs judi bola terbaik dan terpercaya di Indonesia. Tentunya sebagai situs yang bertugas sebagai
Bandar Poker Online pastinya akan berusaha untuk menjaga semua informasi dan keamanan yang terdapat di POKERQQ13. Kotakqq adalah situs
Judi Poker Online Terpercayayang menyediakan 9 jenis permainan sakong online, dominoqq, domino99, bandarq, bandar ceme, aduq, poker online, bandar poker, balak66, perang baccarat, dan capsa susun. Dengan minimal deposit withdraw 15.000 Anda sudah bisa memainkan semua permaina pkv games di situs kami. Jackpot besar,Win rate tinggi, Fair play, PKV Games
Comments
Hi Tommaso,
maybe first a general comment: if participants should move the mouse for a prespecified physical distance on the table, I don't know of a way that would exactly implement this procedure in OpenSesame.
The easiest implementation I could think of that would come somewhat close is the following: define a screen with a start button participants need to click on. Afterwards, reset the mouse cursor to the center of the mouse button. Then, define two buttons that cover the complete area either x pixel to the left or x pixel to the right of the start button. This x pixel distance should be set so that if you move the mouse across the desired physical distance on the table, these amounts of pixel are traveled by the cursor on the screen (for this, I would probably reduce the cursor speed and disable acceleration in the system settings - this has to be done outside of OpenSesame). I have implemented a sketch of such an experiment and attached it to my post.
In order to only consider movements above the threshold, you will probably want to specify a timeout until participants must cover the distance (timeout is 2000ms in the example experiment). If participants do not reach one of the button areas in time their response is recorded as None. I included a script that would set a new variable current_response that contains the response ("left"/"right") or is set to "timeout" if no area is reached (this is easier to work with than None in Python, as None is handled differently than a simple character).
Hope this is a good starting point for your experiment.
Best,
Pascal
Hi Pascal,
I'm working on a similar project.
I want to check whether the participant did not move at all the mouse after the presentation of a stimulus, or he tried to move the mouse to responde and stopped the movement before reaching the 'response button area'. We wanted to save these in a variable called 'current_response' which will have 3 level:"No_response" if he doesn't move the mouse at all, "attempt" and "left" or "right" depending on the direction of the movement.
Here I attach 2 kind of solutions that I tried but none of them works.
Can you please check them?
Is there another smarter way to do that?
Thank you very much,
Best!
Viola
Hi Viola,
if you want to define "attempt" as any movement (even a single pixel) that did not reach one of the buttons within the time limit you can use the initiation_time variable (which will be
None
if there was no movement in the trial). You can modify your inline script from version_1 in the following way (I also fixed the incorrect variable names):Hope this helps!
Best,
Pascal
Thank you for the reply.
It works correctly this way, but I need to have a small range of pixels that are considered as "No_Response" around the 0 coordinate on the X axis, where the mouse is set at the beginning of each trial. This is for a modified go/no-go task, so very small and unintentional mouse movements should not be considered.
Can you help me?
Thanks a lot
Viola
Hi Viola,
how would you like to define this range? e.g., a rectangular area around the start position?
Best,
Pascal
Yes exactly,
a rectangle or square which at its center is in a coordinate of 0,0 (start position) and extends for a few pixels around it. I still do not know how many pixels in particular, let's say 30 pixels for example.
This script would classify everything as no response that is within a rectangle of +/- 30 pixel around the screen center (0,0):