sebastiaan
About
- Username
- sebastiaan
- Joined
- Visits
- 7,303
- Last Active
- Roles
- Administrator
Comments
-
Hi, Does this error occur for all experiments with the xpyriment backend (such as the default template)? Cheers, Sebastiaan
-
Hi guys, The problem here is that accented characters can be created in many different ways. For example, on a French keyboard the é is present as a physical key, and therefore (I assume?) you'll be able to enter it. But other accented characters …
-
Ah, ok, so your browser doesn't start the download. There can be any number of reasons for this, but it's probably some security measure that blocks the download. Another browser?
-
With 'exactly', I mean a description along these lines: * I downloaded this-and-this package (i.e. the .exe installer or the .zip, the Python 2 or Python 3 version) * Then I double-clicked on it * And then: I received an error message such-as-and-s…
-
(Quote) Why not? Please explain what exactly tried and why it doesn't work!
-
Hi Céline, This bug is triggered now, because I just released 3.1.5, and OpenSesame chokes when trying to inform you of the update. If you just download 3.1.5, the problem will go away. And because this is one of the bugs fixed in 3.1.5, it won't …
-
The missing file (iViewXAPI.dll) is part of the iViewX SDK, the software-development kit provided by SMI. You probably received the SDK with your SMI device, but if you can request it from here: * http://www.smivision.com/en/gaze-and-eye-tracking-s…
-
Hi Jessica, I'm closing this because you posted the exact same question twice! (Image) Cheers, Sebastiaan
-
Hi Carine, You could take a look at this discussion, which seems relevant: * http://forum.cogsci.nl/discussion/2743 Also, in the future, please don't post the exact same question twice! (Image) Cheers, Sebastiaan
-
And the keyboard layout? Sometimes Windows automatically switches layout from application to application.
-
Hi Marios, Is the capslock on while uppercase keys are not allowed? ;) Cheers, Sebastiaan
-
And could you provide some more details? * What version of OpenSesame are you using? * And what operating system? * Also, please attach the corrupt experiment file to this post, so that we can diagnose the issue. Don't worry though. Corrupt experi…
-
@MichaelPi Thanks. It does indeed look very good! Fyi. It's currently a bit inconvenient to open public repositories directly in OpenSesame, through the OSF extension. To do so, you need to fork the project. We'll try to make this more user-friendl…
-
I'm afraid not. The alignment is handled by the text-rendering module, so it works the same regardless of how you render text. For now, the only way that I can think of to right-align text, is to write your own inline_script. To get you started, th…
-
Hi, Right-alignment is not supported for now. I realize that's probably very annoying—if I picture how odd right-aligned text looks to my left-aligned mind. I'll give this some thought. In principle, right-alignment would be a new feature, and new…
-
Thanks for sharing!
-
Hi Hanna, Here's my take on this: Inconclusive evidence is a perfectly valid outcome of an experiment, even though perhaps not very satisfying; sometimes life is such that you try to find out something but don't succeed. There is certainly nothing …
-
Thanks for sharing!
-
Hi Neon, That seems like a perfectly sensible way to do it! Cheers, Sebastiaan
-
That's a good point.
-
Hi, The number -32768 is used internally by the EyeLink software to indicate missing data. This makes sense, because the SFIX event doesn't have coordinates! Only the EFIX event (end fixation) does. You can see this in the EyeLink data file: SFIX …
-
Hi guys, I just tested my own Eye Tribe, and (fortunately) I don't experience the problem. I attached the full data file and experiment. Basically, I let a fixation dot jump from left to right and back, three times with a 2000 ms delay. With every …
-
Hi Bruno, I think I know what the problem is. Could you check the discussion below, and see if this is indeed the same problem that you're having, and, if so, whether it's resolved in the latest 3.1.5 prerelease? * http://forum.cogsci.nl/index.php…
-
Right, that's actually the same Python-3 specific bug, but then in OpenSesame itself. Would you mind trying if the problem is solved with the latest prerelease. On Windows, you cannot upgrade OpenSesame from within OpenSesame (because Windows locks …
-
(Quote) Indeed. Could you try the latest installer (…-2.exe)? I think it should clean start-menu entries up now. (Only those that are created by the installer though, not any shortcuts created manually afterwards.)
-
Hi, Would you mind upgrading datamatrix (the Python package used by the loop item) to see if the issue is fixed now? That is, if you can now read utf-8 encoded csv files. You can upgrade by entering the following in the debug window: import pippi…
-
Hi, Thanks for pointing this out. This appears to be a Python-3 specific issue, in which the Python csv.reader tries to decode the file using the default system encoding. In your case this is cp1257, a Windows encoding for Baltic script. For now, …
-
Hi, To register a response, you can use the responses.add() function (no need to do item.responses.add()) as described here: * http://osdoc.cogsci.nl/3.1/manual/python/responses/ You have the response (inputchar), but not the response time:the ti…
-
Hi, Thanks for pointing that out. Would you mind trying if out the installer of the latest prerelease (currently 3.1.5a3) works as expected? * http://files.cogsci.nl/software/opensesame/pre-releases/ Cheers, Sebastiaan
-
Hi, The error is because you're mixing the old (≤ 2.9) and new (≥ 3.0) ways of creating a keyboard object. The old way is to import the keyboard function (from openexp.keyboard import keyboard), and pass exp as the first argument. You're doing the…