eduard
About
- Username
- eduard
- Joined
- Visits
- 1,402
- Last Active
- Roles
- Member, Moderator
Comments
-
Hi, As far as I see, you are not drawing anything to the screen, so why should it show anything? Aside from that, exp.set('studyList1', studyList1) won't work, because the method exp.setworks only with simple data types, such as numbers or strings…
-
Hi Aviv, I hope you already sorted things out by yourself, but in case not, here are a few pointers that could be helpful: 1) You can have a look at this discussion. It dealt with this problem you are describing. 3) How about separating instructi…
-
It seems that I can't reproduce the bugs. I ran the experiment 7-8 times and it went alright each time. Also your code doesn't seem to have an obvious error in it. However, if you believe that the problem has to be in that part, there is good news.…
-
If it's only about the stimuli, you could also just replace your stimuli with some random pictures you can find now. One image per condition that you repeat a few times would be enough. Eduard
-
Hey, On first inspection, I can't tell for sure what could be the reason for an occasional breaking of the experiment (I have a hunch, though). Would you mind uploading the entire experiment with a subset of all images (otherwise the file be too bi…
-
Hi Dan, You have the right idea. Before you enter the sequence, in which you select the sounds, you have to initialize two counters, for each sound one. You can do it from within an inline_script. two20 = 0four40 = 0 Later, in the sequence of sou…
-
Hey, Which "eyelink experiment" do you mean? The "Pygaze eye tracking template"? Does the error also occur, when you set the the tracking mode to one of the dummies in the pygaze_init item? Eduard
-
Hi, Unfortunately, I can't open your script in OpenSesame. It complains about missing quotation marks. Can you try to create a version that doesn't have the issue? Anyway, which part does work slowly? The updating of the "fill" state, or…
-
Hi Michael, Thanks for sharing! Eduard
-
Hi, It is certainly possible that you write the code in a way that is highly inefficient, but likewise, it should be feasible to have a very quick slider. It's hard to say anything about what could have gone wrong, without seeing your code. How abo…
-
Alright. Then, I'll mark it as solved. Btw. Your structure from your post 2nd last post is still not right. The logger item has to be still one level deeper in the hierarchy. It has to be placed in the very same sequence as the inline_script not j…
-
not entirely. It has to be in the same sequence as is the rest your trial. So, preferably right below the inline_script that holds your slider.
-
Then hopefully the last answer: Adding the logger item to the sequence. In this way, the values are written in the end of every iteration. Eduard
-
I am not entirely sure, what exactly the problem is that you are describing. I suspect you should retrieve the variables first. So do this: name = exp.get('question') From then on, name is defined in the inline_script. Furthermore, I don't think …
-
Nice to hear. You probably wanna have a look at the logger item (See here) Eduard
-
This should do the trick, but you probably need to tweak the code a bit to make it prettier. from openexp.canvas import canvasfrom openexp.mouse import mousemy_canvas = canvas(self.experiment)my_mouse = mouse(self.experiment, timeout=20)# Set slide…
-
Hi, (Quote) Without having tested it I suspect that "" is not equal to " ". Don' forget to include a character in between the quotation marks. Regarding your second question, I don't think what you'll have in your mind will s…
-
Hello, I don't think you can avoid having to program a bit yourself. However, it is not that hard, and there are many discussions dealing with this topic here in the Forum. As a starter, you could have a look on this discussion here : http://forum…
-
Hi Akshay, Depending on how many different sounds you have and how you want to combine all of these, there can be multiple solutions. In the most simple case, you should have a look on step 3 of the Step-by-step tutorial. Basically, what you do i…
-
Great to hear. Then I'll mark this discussion as solved. If you happen to have more question don't hesitate to post them again in here. Eduard
-
Hi Manu, Without having read your entire discussion with Josh, let me reply to your last question: (Quote) Basically, you have to options. Either you store those variables that you want to log in the instance of the experiment and let the logger …
-
Hi, As far as I see, there is no easy and direct way of doing this with the loop item. However, doing it with an inline_script is not much harder. I would do following. First, I'd put a small inline_script in the beginning of your sequence. Further…
-
Hi Lisa, That sounds like a fun project. (Quote) Yes! In general, you can collect as many responses and reaction times as you want. Depending on their complexity (e.g. reference events) it can be more or less straightforward to program it. In your…
-
Good to hear. Good luck with your data. acquisition Eduard
-
I was using 2 JPG images of my own. One I used for with the sequence and the other for the instruction slides. Could you maybe try to insert another element at the end of your sequence, e.g. another empty sketchpad presented for 50ms or something s…
-
I'm not sure whether this is good or bad news, but you're experiment is running just fine for me. So, also on the last trial nothing will happen until the response key is pressed. After that however, it will go right away to the next loop. If you're…
-
Hi, This discussion will lead you to a description, how this is done. http://www.cogsci.nl/forum/index.php?p=/discussion/1554/open-blocking-command-key Good luck, Eduard
-
Hi, So far I don't see an obvious mistake here. Do your initial fixation screen and waiting-for-response screen look identical? In other words, is it possible that the problem of not waiting in the very end of a trial happens always, but only after…
-
Hi Elacio, Unfortunately, I can't open your experiment and neither can I paste your code into opensesame. (Just from looking at it, I'm not able so the structure of your experiment). Not sure what exactly is wrong, but could you double check that y…
-
Hi, In order to help you, I would need more information, i.e. how did you implement the loop, the keyboard_response, the timeout and such. The problem can have many causes, it's hard to spot it at this point. Thanks, Eduard