sebastiaan
About
- Username
- sebastiaan
- Joined
- Visits
- 7,320
- Last Active
- Roles
- Administrator
Comments
-
Hi, You can use either Python 2 or 3, and the version of PyGame would then be the version that's bundled with OpenSesame, which you can check by inspecting the pygame.__version__ property in the debug window. If you're trying to run PyGame scripts i…
-
Hi Jiatian, For me, the plugins still work with OpenSesame 3.2.8 on Windows, so I suspect that you haven't placed the folders correctly. Here's how the folder structure should look like: http://forum.cogsci.nl/uploads/632/S3M0Q61LBYTK.png In general…
-
Closing as duplicate of this post. For future reference, please help us keep the forum clean by not posting the same question multiple times!
-
Hi, If you're using regular response items, such as the keyboard_response, then you need to set the correct_response variable in order for OpenSesame to keep track of accuracy and average response times. This is described for example here: https://o…
-
Hi Simona, I realize that this reply is a bit late, but I hope it's still useful. I believe that you're running into a bug with expyriment 0.9.0, in which thin lines were not properly rendered. If you upgrade to 0.9.1b2, the bug should be gone. Does…
-
Hi, The reason that the variables cantidad_sujeto_1 and cantidad_sujeto_2 are overwritten is that these are reset during the initialization of the TextInput widget in the form. And because both forms are initialized, even if only one of them is exec…
-
I'm closing this as a duplicate of this post. In the future, please help us keep the forum clean by not posting the same question multiple times!
-
Hi, I realize that this reply comes a bit late, but I hope it's still useful! The pre-yield part of the generator function is executed at the very start of the Run phase for the coroutines item. So yes, it's executed immediately, in the sense that i…
-
Yes!
-
Good to hear!
-
> Now that we are kinda talking about it: Do you plan to implement an option to choose the python environment in which you want to run Open Sesame (standalone) in? I have been thinking about something along those lines, yes, in the context of a s…
-
Hi SH, In OpenSesame (on the desktop), you can give names to individual elements on a sketchpad or a Canvas object. This is convenient if you want to refer to these elements in an inline_script or in a mouse_response (as a region of interest). https…
-
Hi Michel, My guess is that, for some reason due to the Anaconda installation/ deinstallation , numpy is broken on your system. In addition, there seems to be a bug in older versions of DataMatrix (still shipped with OpenSesame 3.2.8) that break whe…
-
Hi Alexandra, Here's a link to one of the datafiles from the semantic-pupil experiment, converted to .asc. This is done with a utility called edf2asc, which you can download for free from the SR Research forum. (But this does require you to register…
-
Hi, I've never encountered this error message before. I imagine that it's an incompatibility between Windows Vista and some Python library. If possible, I would update the operating system, or find a different laptop that runs a more recent version …
-
@chengyang I see that @eduard already answered this question here. For future reference, please help us keep the forum clean by not posting the same question multiple times. And certainly don't tag different moderators in each post in order to draw …
-
Hi, A continuous timer is not possible, for the reason I mentioned above, namely that sketchpads are static. So you could include a timestamp on each sketchpad, but that would only be updated whenever a new sketchpad is shown. So that may not be sat…
-
Hi Jackie, I think a puppy deserves more than a single chance to right a wrong ;-) But to answer your question, I would write a simple inline_script that executes the trial_sequence again, but only if the response was incorrect and the trial was not…
-
Hi Patricia, There was indeed a bug (multiple, actually) in the srbox plugin. But this should be resolved as of 3.2.8. Are you running the latest version of OpenSesame? Cheers! Sebastiaan
-
Hi @jiatian and @eduard , That's very interesting. It took me a while to pinpoint where this comes from, but it's the fastnumbers library (used by datamatrix) that takes the liberty of converting the 三 to three. I'll fix that, because it should not…
-
Hi, A sketchpad is by definition static. So if you want to show some kind of animation, then you would do this by presenting a series of sketchpads or, in an inline_script, with a series of Canvas.show() calls. What exactly do you want to do? Do you…
-
Hi Captain Cool, > 1) I want to upload the study to JATOS to be used online. When checking it in OSWeb, it says that the form_base function is not supported BUT it works when I've tried it on the test server! Is it going to randomly stop working …
-
Hi Simona, When the Escape key is pressed, the exp.pause() function is called. By default, this function shows a pause screen, waits for a key press, aborts the experiment if the user presses Q, and resumes otherwise. But you can override this behav…
-
Thanks. I'll get back to you on the issue tracker!
-
> The github tracker is at: https://github.com/jasp-stats/jasp-issues/issues Ah right, you have a separate repo for the issues! That wasn't clear to me, maybe that could be indicated better in the other repos. > I've taken a look at the logfil…
-
I suppose it's possible, but there is currently no API to for example retrieve files from the file pool, or interact with OpenSesame in any other way than accessing experimental variables through the vars object (the JavaScript variation of the var …
-
> Also, as OSweb supports inline_scripts (though with javascript), you can implement reading files yourself, e.g. through Python Pandas. No, that's not correct! OSWeb supports basic JavaScript through the inline_javascript item, but this does not…
-
I think what happened here is that the file started with a so-called BOM (byte order mark). This is not a visible character, and hence you don't see it (which is confusing). But the BOM does become part of the column name, rendering the column name …
-
@Daniel Is this issue still current? If not, let's un-announce it then.
-
Hi Anne, I think the problem is the variable slider_fill. When the slider is at 0, this variable also has the value zero. And then the width of the rectangle is actually negative (-2) as you can see here: my_canvas.rect(slider_x+1, slider_y+1, slide…