Wouter
About
- Username
- Wouter
- Joined
- Visits
- 11
- Last Active
- Roles
- Member
Comments
-
Hiya! Had the same problem. Just to check (and add a solution for whoever also lands here) the best interim solution I could come up with was to just draw a big rectangle upon creating the canv persistent.c=Canvas() let c =persistent.c c.rect({x:-va…
-
Sounds like a perfect solution :)
-
I don't have a direct solution for @pinarke and it seems their problem is fixed -- but ran into a similar issue; failing to transfer and eventual incomplete data files... For me the solution was in this: Then about the amount of result data. Again I…
-
Hi @kri ! Thanks for fixing this. Both the mwe and my experiment now seem to upload just fine. (I still get the duplicate folder warning/renaming though, but by generating a new file with a new internal ID I should be able to prevent that.) Thanks!…
-
I can turn the server back on for today until you exported your data. Please notify me when you are done. Awesome! Thanks so much, I just pulled my data, so I'm done with it :) And in the near future there will be another JATOS server, similar to ex…
-
Since the seed seems to be reset to the same value whenever opensesame runs, it would seem that something that is either imported or run at startup sets it. But since the process repeats within and not between processes, it can't be a hard-coded se…
-
From your screenshot it seems you are setting whattext in the run phase. However, opensesame will already have prepared the sketchpad earlier -- every item in a sequence is prepared before the first item in the sequence is run. Try placing your cod…
-
By the way -- I found I can resolve the issue in terms of its outcome, simply by calling np.random.seed() at the start of my experiment. -- but I have very little understanding as to why/where this is happening, and it seems that it shouldn't hap…
-
Hey, The Neurodebian page still lists 0.27.2-4~nd13.04+1 as their version. Will it still be updated, or is it advised to use ppa:smathot/cogscinl ?
-
Jon's replied; He's fixed all of these imports and it seems a new psychopy release will be out next week, including these changes! https://github.com/psychopy/psychopy/commit/b294c5395574f7fdcfce28ea9258a5284a2fe1e4
-
I could, but I have no insight so far as to how many files would need such a fix -- I'd have to dive into the psychopy source way deeper than I'd like to right now ;) (Quote) yep, that too
-
Hey airenos, Learning python scripting is certainly a good idea, but if you feel very insecure about this, you can avoid scripting altogether in this case. It sounds like you've set up your experiment pretty much like the gaze_cueing tutorial, so …
-
After some work in OS over the past couple weeks, I came across another list of small things ( admitted, some of these are more wish-list like than others, which are more mild annoyances ). * I had a '\' character in my script, developing on a linu…
-
I'm terribly late with this, but there seem to be no new deb packages for .27 in http://files.cogsci.nl/software/opensesame/ Upgrading from a deb was hilariously simple last time; did you drop those?
-
Hi Kiri, (Quote) By declaring/defining a variable within an inline script the way you have done above, i.e. within a python inline script, it is only visible/accessible within that particular inline script. To make it visible to other inline scrip…
-
Hey Kiri, I'm afraid we're going to need a lot more information! In particular, We need to know where the error occurs (is it in this inline script item? this piece of code? If so, what does it currently look like? If not, where does the error come…
-
Hi boris, variables in your loop tables, or feedback variables like response_time are set in self.experiment. They are not immediately accessible within your inline_script items, but you can 'get' and 'set' them using the experiment object rt = se…
-
(Quote) Tried that already ;) .. then I ran into the realization that eyelink_graphics is constructed before experiment.eyelink is fully constructed (i.e. exists). We could probably make it work, but we have to be sure that the eyelink initializati…
-
Hey Sebastiaan, I'm pretty sure I fixed it! libeyelink.py diff for libeyelink.py eyelink_drift_correction.py diff for eyelink_drift_correction.py Quick summary of the changes I made, primarily in libeyelink.py * in the libeyelink init: expe…
-
Just a quick response until I get to some more testing today (hopefully I will) : W.R.T. threading and your comments: When I enabled fix_triggered_drift_correction and threw an exception within eyelink_graphics.get_input_key() I got both: I got a s…
-
Hey Sebastiaan, Your last lines suggested it would be a quick fix, but unfortunately I'm running into some issues. I wrote a little function (http://pastebin.com/gb0dmy9M), and added to get_input_key(): try: _key, time = self.my_keyboard.g…
-
One thing I tend to forget but find extremely annoying is the way the detection of 'unsaved changes' works. Whenever I change tabs within an inline script item, or make some other minor change that isn't really a change (,gui mostly), opensesame mar…
-
(Quote) Quick intermediate result: I just implemented it, and I don't notice any lag when get_clock_async() calls getTrackerTime() instead of returning a variable. (I also called get_clock_async() from within wait_for_event(), instead of using said …
-
Hey Sebastiaan, Yeah, it almost seems too good to be true. Let's hear what they say. In the meantime, I've run into yet ANOTHER issue when analyzing my gaze-contingent experiment that got me involved in this. I think this needs to be addressed bef…
-
Hey Sebastiaan, First off, happy new year! I saw today that you committed the suggested changes, aside from the potential version issue. Well, It seems the SR guys are back to work, and I just got a reply from Nabil, the SR-guy who helped Daniel (…
-
Hi Sebastiaan, (Quote) The simple reason was that the current version has pylink.version.vernum = (1,0,0,27) and the fixed versions I got yield (1,0,0,28) or higher. I concluded version numbers must go up, and a simple check for vernum == 1,0,0,28 …
-
Hey Sebastiaan, I've suggested some changes to libeyelink.py which are now being committed by Daniel. I went for the conditional function definition I outlined above, simply because it seemed easiest. In short, the changes are: ->in __init__()…
-
Hi Cumhur, (Quote) Do you mean that you have a sketchpad-item, and have set the duration to keypress ? If so, then that's probably your problem: your first keypress is used to continue from this sketchpad, and your 2nd keypress is then caught by th…
-
(Quote) Thanks, and no problem! It's definitely one of those issues that I got determined to get to the root of and get it fixed! Anyway, new progress! It turns out actually we should be able to get gaze data from SSACC, and that this IS garbled u…
-
Alright, here it is: it seems the pylink library does something weird with the SSACC event link data, and my SR-guy seems reluctant to admit it. I just ran a test after my latest post in that thread, printing every field in SSACC float_data and com…