sebastiaan
About
- Username
- sebastiaan
- Joined
- Visits
- 7,260
- Last Active
- Roles
- Administrator
Comments
-
Hi @_nina_ , There is no fundamental difference between writing classes in inline_scripts or in regular Python scripts: it is possible, but whether it makes depends on what you need to implement, and your preferred coding style. Personally, I tend …
-
Hi @Luigi96 , The function is now simply available as copy_sketchpad() , so without the self. prefix. See also: https://osdoc.cogsci.nl/4.0/manual/python/common/#copy_sketchpadname Hope this helps! — Sebastiaan
-
Hi @Ornella , Ok, I see. The Circle() class in OpenSesame is not the same as the psycho.visual.Circle() class, hence the confusion. (The first is to draw on an OpenSesame Canvas object, the second to draw on a PsychoPy window object. They are conc…
-
Hi @Ornella , Is your question about what kind of units psychopy (by default and in the context of OpenSesame) uses for color specifications? These are on a -1 (black) to 1 (white) scale, so if you have values on a 0 (black) to 255 (white) scale you…
-
Hi @jens_s20 , Yes, absolutely! In that case, you would use the lmer_crossvalidation_test() purely as a non-circular way to localize the interaction in the time series and then use your own test to actually test for significance. — Sebastiaan
-
Hi @Jakob_ , I don't have access to an SMI Red 500 myself, so this reply is based on my general understanding and not on direct experience. But tentatively I'd say that, no, using the SMI Red 500 without the iView X SDK isn't possible. Your descript…
-
Hi @MM@mmalikovic , You're free to ask questions about any kind of software here! As it happens, the lab.js developer @mezzopiano is also on this forum, so maybe he can help out. — Sebastiaan
-
Hi @Xin , It sounds like you have (possibly by accident) changed the runner (under Preferences → Common settings → Running experiments) to 'Run experiment in opensesamerun (external)'. This is a somewhat technical options that means that the experim…
-
Hi @Jonas_S , This error is unrelated to pillow and comes from the tobii-research package. Beyond that, it's difficult for me to say anything about it, because the error message isn't very descriptive and I don't have a Tobii tracker myself. Mayb…
-
Hi @gerhono , I misunderstood your initial question, but I see now that you are trying to update conda itself (rather than use conda to update other packages as suggested by the automatic updater). I'm not sure why this gives the error that you see,…
-
Hi @Varsoviaa , The tobii-research package is only available for Python 3.10. Presumably, your Python environment is based on a different version of Python, such as 3.11, which OpenSesame uses by default. Is that it? — Sebastiaan
-
Hi @gerhono , Anaconda (with the command line tool conda ) is a package management system for Python that OpenSesame uses. It has some advantages but it can also be fragile such that, for no obvious reason, the packages end up in a state where you c…
-
Thanks @janedeboer ! I'm very excited about this! To give a sense of what Sigmund is good at, here is a screenshot of a pretty challenging question: https://forum.cogsci.nl/uploads/389/Z5HH4Z3WB05O.png
-
Hi @labsupport , This is very odd, but almost certainly unrelated to this update. It seems like some kind of corruption of the user interface, specifically the web-browser component that is used for some things. Does simply restarting the program or…
-
Hi @Silk , Thanks for pointing this out. I have to look into what causes this. Can you confirm that this happens on Windows only? For now, you can use HTML character codes instead. For example, é corresponds to 'é'. For a full list, see…
-
Hi @robbertmijn , Thanks for looking into this! but it has not started actually updating after 45 minutes. So you just to clarify: when the update notification appeared, you opened it and clicked on the 'Run update script' button. And then the conda…
-
Hi @labsupport , Unfortunately, the cleanup does not behave as you described. When code execution fails because of (for example) a non-existing variable, or when we abort the experiment by pressing Escape, the clean up function is not executed. Than…
-
Hi @labsupport / Iris, In the OpenSesame 3 version of the plugin I saved several variables in var (self.experiment.var), so that the extension could access them. However, in OpenSesame 4 it seems that I can only save 'simple' variable types in var, …
-
Hi @m.vel , What happens if you try to update with pip instead of conda ? %pip instal opensesame-extension-osweb --upgrade — Sebastiaan
-
Hi @m.vel , Yes, 4.0.13 is the latest version that you can download as a package. Updates should still appear though, and not after a few hours but say after a few minutes, and I'm not sure why they don't. You can also update manually though by runn…
-
Hi @schuetzin , This is an interesting scenario. You cannot directly constrain the value of the first row, so you need some kind of workaround. What I would do is add an inline_script just before the loop that needs to be constrained. In the prepa…
-
Yes if you could do that, that would be helpful. And could you then also provide more information about when it happens (because I don't see it myself)? Is there a particular series of actions that triggers it? Or is it random, and if so how often d…
-
@m.vel I was initially confused by your version issues, but it turns out the download link to the Mac OS package pointed towards an outdated version. (I must have accidentally done that with the last update.) You can now download the latest Mac OS v…
-
Hi @SpacePenguins , I've never seen this, but it's clearly a bug of some sort. Could you share an experiment that shows this issue? And what browser(s) and platform(s) show this? And does this happen with the most recent version of OSWeb? — Sebastia…
-
Hi @DVdB , The experiment is quite complex so it's difficult to see in one glance how everything works. But one thing that is certainly related to these issues is that you've inserted the logger item into the coroutines with a start time of 0. Thi…
-
@robbertmijn Can you help @m.vel with this?
-
You mentioned an automatic updater, but I do not seem to have that. I have been through all the menus in the new version, and there does not seem to be an automatic updater. I am a Mac user. I remember at some point there being a button in the menu …
-
Hi @m.vel , Ah, there was actually an OSWeb-specific bug in the repeat_cycle item. I just fixed it and pushed an update to OSWeb (2.1.0.2), which should appear through the automatic updater. This should fix this issue. — Sebastiaan
-
Hi @vaishtables , The issue is simply that you're putting parentheses around image . The following should work: <img id = 'stim'/> <script> document.getElementById('stim').src = pool[image].data.src </script> Hope this helps! — Seb…
-
However the experiment does not run because "It has not been configured to use OSWeb". I am puzzled by this since it was exported for JATOS. As of OpenSesame 4, you need to explicitly change the back-end to OSWeb under General properties. …