sebastiaan
About
- Username
- sebastiaan
- Joined
- Visits
- 7,296
- Last Active
- Roles
- Administrator
Comments
-
Hi @plex84 , I got the same error. A proposed solution is already in the error message, namely to call the following somewhere at the start of the experiment: from psychopy.voicekey import pyo_init pyo_init() You can try that. However, this didn't w…
-
Hi @Jessica Bourgin , If you pass the -d command line argument (opensesame -d), then OpenSesame will write debugging output to a log file, the location of which will be indicated in the terminal. You should be able to tell where the delay comes fro…
-
Hi @jonas , Can you also post the output from the console? The error message (Traceback) only contains a description of the direct cause of the crash. However, I suspect that before this happens, at the point where the script tries to install the mi…
-
Hi @Jessica Bourgin , Since you mention launching 'offline' and 'online', I'm guessing that you don't mean that OpenSesame itself takes this long to start, but that the freeze happens when you start an experiment. Is that correct? There are many rea…
-
Hi @plex84 , It seems that you're trying to implement your own OnsetVoiceKey class by inheriting from BaseVoiceKey . Unless you have a good reason to do that (?), this isn't necessary because this class already exists. So in theory it should be as …
-
Hi @jonas , My guess is that mongoengine fails to install (and therefore later fails to be imported), but that can happen for any number of reasons. Could you post the actual script and the full output from the console? There's probably another err…
-
@ChrIm Coincidentally I literally fixed this bug right before I read this post. If you upgrade python-opensesame to 3.3.10a13 or later, then this should work again.
-
Hi @Fab , Good to hear that you made it so far. The way that the loop table constructs the matrix is a bit messy, but here's an attempt at getting it straight (also for myself): orig_matrix is, as you assumed, a regular array where each element co…
-
Hi @ChrIm , It seems that the tobii-research package is a binary package that is built for specific architectures and versions of Python. And, indeed, it seems that they have only built packages for Python 3.6. The best way to get up and running is…
-
Hi @Fab , You could inspect the matrix object from a loop item in the browser debugger. https://forum.cogsci.nl/uploads/163/H6FRBDRAJDWU.png And there's also the _cycles array, which indicates which cycles from the matrix are still on the to-do…
-
@HenkvanSteenbergen Yes, you can. The [var_name] notation also works for loop sources (if it appears not to, then that must be because of something different), so you can specify the loop source by setting a variable in an inline_javascript item.
-
Good to hear the new functionality is finding an immediate use!
-
@Fab Not at all! Just an interest to help out on at a least a semi-regular basis.
-
Hi @Fab , This functionality is only available as of OSWeb 1.4. I suspect that you're using OSWeb 1.3. Is that correct? You can get OSWeb 1.4. either by downloading the latest prerelease of OpenSesame 3.3.10 (which is what I would do), or by updatin…
-
Hi @Pallavi , I think you're confusing the correct and acc variables. correct always refers to the correctness of the last response, and is either 1 (correct) or 0 (incorrect). acc refers to the running accuracy since the last time that the fee…
-
Hi @Fab , Not really, no, or at least beyond the options offered by editor. A picture with a link would actually be possible that way. as some contributors use to insert a buymeacoffee picture+link) The people who have that are all moderators, and t…
-
Hi @boyao , glad to hear it works for you! There is some limited documentation for pool and persistent on this page: https://osdoc.cogsci.nl/3.3/manual/javascript/about/
-
Hi @mattm , These arguments are simply additional keywords, like so: my_canvas['text'] = Text( 'Verdana?', y=instruction_start_y, font_family='verdana', font_size=30 ) Hope this helps! — Sebastiaan
-
Hi @boyao , I'm not familiar with Linux Mint directly, but I mainly use Ubuntu myself and installing from a PPA there generally works flawlessly. I suspect (but it's just a suspicion) that there is an issue with different installations of OpenSesame…
-
Hi @byos , I would start by deciding for yourself how you would like to organize the data. Basically, you have data from questionnaires and data from a trial-based experiment. These are fundamentally different forms of data, and so you have to decid…
-
@zohar I just released a test version of OSWeb 1.4. This provides much better support for text input (including non-Latin characters). This should allow you to simplify your experiment considerably, thus hopefully also resolving this issue. https://…
-
Can you try OSWeb 1.4 to see if this makes the issue go away? https://forum.cogsci.nl/discussion/7376/
-
Hi @Divyanshi9 , It sounds like it might be related to this issue, which was introduced with recent updates to Chrome (and maybe other browsers as well): https://github.com/open-cogsci/osweb/issues/69 What kind of error message do you see in the bro…
-
Hi @myangpsych , It sounds like the experiment crashes, but you don't always see this in the browser without opening the debugger console. So the first step is to reproduce the issue yourself (or ask participants to help with this) and then inspecti…
-
@zohar Right, I see. I don't fully understand the structure of the experiment, i.e. what the two nested loops correspond to. But I suspect that the logger should be part of now_word_seq (and not recall_seq_1_2) so that it's executed after each time…
-
@mattm Yes, exactly. You'd need to override __init__() as well. (It might be an idea to implement a more general solution for this, i.e. a way to easily create custom Canvas elements in a non-hacky way. I'll give that some thought.) from openexp._…
-
Hi @popely , Thanks for reporting this. I can replicate this as well, and I'm going to look into it. For now, maybe you can use a simple inline_javascript to play the sample? Say that your sound file is called my_sound.ogg and is in the file pool,…
-
Hi @boyao , I'm guessing you installed OpenSesame from source then, right? In that case, the icon theme is not included. (It is included if you, for example, install it from a repository.) I quickly uploaded a .zip file with the icons below. You ne…
-
Hi @zohar , Could you upload the experiment here (or a simplified that illustrates the issue) so that I can take a look? — Sebastiaan
-
Hi @plex84 , I suspect that you pip-installed pyo using the --user flag. Is that correct? If so, does the problem go away if you start OpenSesame as administrator and re-install it regularly? You'd have to pass --force --reinstall flags to trigger…