elaci0
About
- Username
- elaci0
- Joined
- Visits
- 30
- Last Active
- Roles
- Member
Comments
-
Thank you Elisa for moving the request into the correct place. Do you have an advice for this problem?
-
hmmm.. that was an option I also though, but after I tried these lines the "mycopycanvas" is empty (if I add another exp.mycopycanvas.show() at the moment the "copy" works only if I add other object to the copied canvas (now…
-
I found out that: mycanvas= canvas(exp)mycanvas.copy(exp.items["mySketchpad"].canvas)mycanvas.line(0,0,0,0) # --- draw a simple dotmycanvas.show() do works, in the meaning that I can see my sketchpad copied. If I don't draw someth…
-
I don't object at all.. I'm only shy because of errors on programming, which is not my main job in my life :P So I extracted a piece (loop) from my whole experiment. The piece of code includes some of the possible solutions to my problem. Inside I …
-
hmmmm.. changing to psychopy or plegacy backend seems to work, but I'm not willing to switch to those backeds after coding 90% of my LARGE experiment for 'expyriment' :(
-
@Josh I tried your suggestion of drawing all my RECTs and TEXTs into a canvas one by one (into a PRE section) but this part takes 20 seconds so it's not good at all for my purposes (also because I have three parts likes this). I tried moving a…
-
Ehm no, it was 25! all possible combinations. it's a kind of form but I needed I timeout, so I had to draw everything on a sketchpad. The sketchpad is kind of static, same text but with updated selections. then I have 25 text divided in categor…
-
Yes, but many vars are assigned at runtime, such those inside a Block (for the running trial) or in my case when the user clicks into a sketchpad and unfortunately I cannot prepare all the cavnas in the PRE stage because I have 25! combinations. t…
-
Ok, Sebastian seems to have found the solution: going to Control Panel--> display --> "let me choose ONE scaling level for all my displays (with Larger 125% -default)" seems to solve the problem: all the applications will run at…
-
Little update: I'm trying to debug but I have no clue where to look exactly, so after running 'opensesamerun' from the sources with a debugger: * without any options the GUI pops up, I fill the blanks and everything works * passing ALL the requir…
-
Hmmm.. I don't know if is the correct behavior but in this case, when I run the experiment windowed I see a window bigger twice my resolution (or at least it doesn't fit the screen) Following your link and the Sebastian's hack the experiment run a…
-
holy sh*t.. I thought that running opensesamerun.exe within a batch file could have saved me from not recognizing the 1920x1200 resolution, but I was wrong :( from its GUI opensesamerun works perfectly from inside a batch it does not and sw…
-
E.g., which is my problem now. I have a sketchpad (duration 0) with a lots of items (texts and rects) defined in a way that they should appear upon a user response. So each item has a show_if="['var1'] =='yes'" condition. The way I fo…
-
Ehm.. yes and no. In the meaning that I am already trying that way. I thought that from InlineScript it would be possible to access the internals and working directly with the objects themselves without doing a lot of variable declarations and goi…
-
Yes, using an external list is what I am doing now but.. this seems to me a waste of resources, duplicating and keeping updated all the vars I need. Thanks for your help
-
Sorry, it seems I was not clear enough with my problem. Let's say I have this: Loop (with var1, var2, myNewVar)----sequence-------sketchpad-------inlineScript-------loggerouter_inline inside inLineScript I can write/get vars defined inside …
-
Hi Josh, thanks for your kind answer. Because my experiment depends a lot on icon positioning I cannot play too much with the resolution, so my question was more about if runnig opensesamerun.exe has some side-effects or it's the same. thanks!
-
little update: if I run my script with opensesamrun.exe in full screen mode seems working fine. is that adviceable or should I run it at a fixed resolution setting? thanks
-
Hi there, sorry to resume this thread. Let's say I have a sequence like: mySequence---sketchpad---touch_response---[item1]---[script]---[your script that checks the 'touch_response' ] Using you script the "touch_response" item is ru…
-
I see, it's quite difficult. last I was looking for a way to use python script to invoke something on the tablet (java command?) to print. thanks Sebastian!
-
about the printing support I later discovered that "if python can do it, not all OpenSesame version can" :-) I guess that the android runtime does not contain the wx module so I don't know how to print from android. gosh..
-
I see touch_response works with cells of screen decided upon row/column. Given that it's quite difficult to guess if my "Image" is in that cell, could be possible to add a sort of superimposed grid which shows how the screen would be divi…
-
Thanks, I should have searched a little bit more before asking.. What about the "endless" experiemtns? Do you think it is possible? I was thinking something managing the Subject's number variable at runtime, if it would work. Thanks,…
-
Josh, thanks for your answer I'm afraid your solution is not suitable for my purposes, I want to run this experiment on an android device in kiosk mode. I will put a more general question. My main doubt is if to go with opensesame or to a web-exper…