Silk
About
- Username
- Silk
- Joined
- Visits
- 129
- Last Active
- Roles
- Member
Comments
-
Hi @sebastiaan Sorry for the very late reply. Yes, I made some tests and it only happens on Windows. It seems like the csv file is read with the ANSI (Windows 1252) encoding, which explains why UTF-8 characters are not showing properly. Silk--
-
Hi again, I think I managed to find why audio tags are no longer functioning in OSWeb 2.1. In OSWeb 2.0.x, audio files have the audio type in the file pool. In OSWeb 2.1, audio files have the audioBuffer type, which explains why classic audio tags/m…
-
Hi, I have the same problem. Just to add more information, I found that actually no audio object methods no longer works as intended. For instance, a simple code like the one below (which check the user's sound) now returns an error: Uncaught TypeE…
-
Hi @michelescandola , The problem comes from your sketchpads. In some of them you had keypress set for duration; touching the screen won't be counted as a keypress. Just replace keypress by 0 and make sure to have a touch_response block after. https…
-
Hi @sebastiaan , Thanks, that's indeed what I was looking for. By digging a bit further into those internals, I found apply_cycle() , which is quite a handy trick to choose a specific object of the matrix. block_loop = runner._experiment.items._item…
-
I spotted a bug with the latest release (2.0.1) of OSWeb: if you double click or spam click the welcome screen, the experiment does not run as expected. I inspected the console and got errors suggesting that the whole experiment experiment is loaded…
-
New update: it seems it was a problem with OSWeb 2.0.0. I updated to version 2.0.1 and it works perfectly fine now.
-
Hi @sebastiaan , Thank you very much for the quick answer. Yes I see the logic and it works perfectly. I improved your code a bit so that it can select for specific keys and store them for future uses. In the inline_javascript item, I defined a new …