DahmSF
For each answer i get from the forum i give an answer to the forum.
About
- Username
- DahmSF
- Joined
- Visits
- 730
- Last Active
- Roles
- Member
Comments
-
try this: var.counter=0if exp.feedbackvariable == 'green': var.counter=var.counter +1 log.write_vars I am not sure. But maybe it helps?
-
I do not exactly understand what you mean. But maybe your problem is a logging problem. If you do not want the second variable (whatever its called, maybe Circle_Blue2?) to vary, you need to log the changes in your inline script. use log.write_vars…
-
Dear Bird ;) i had the same problem just yesterday! solved it this way: format(var.yourRT/1000, '.2f') + ' sec' There you go. Greetz Stephan
-
Hi there, i was looking for the same thing. And probably it would help everyone if there was a python code (based on text_input_form) which is accessible to everyone. So everybody could just paste it into an inline_script and that's it. It should …
-
As far as i understood, you did not use a loop. (In a loop you may have repeated your block (=sequence ) also without randomization). In a loop you need to define the new variables depending on the loop repetitions. Anyway, you just copied the block…
-
Hi erwinwirne, I imagine that your blocks are randomly selected in a loop, right? You may use the standardvariables as "correct_response" in combination with the variable that counts the loop. Just count them in an inline_script for each r…
-
Dear wooyou, If you have a complicated sequence maybe this helps you: http://forum.cogsci.nl/index.php?p=/discussion/2345/serial-reaction-time-task-srt#latest If you have a simple sequence. Just put your items into a loop. And select the random fu…
-
Hi Paul, whether Excel recognizes "." or "," depends on both a) your setting on the computer (Windows language) b) the settings in Excel (decimal mark) By the way: you should really not use Excel for your data analysis. ;-) Ho…
-
Hi Irem, is this what you are looking for? http://www.cogsci.nl/forum/index.php?p=/discussion/2892/set-an-incompressible-duration-of-sketchpad-while-recording-response-time
-
Hi Irem, Hide cursor: I had the same thing once. You may look into my old forum discussions. The solution. An inline_script with this text. mouse().show_cursor(False) Just put it at the position where you want the cursor to disappear. I did not un…
-
How many keypresses do you expect during your video? You may need an inline script with a "while" loop. Just look in the forum for examples. You may search for "while = True" Cheers Stephan
-
Hey Flippy, i experienced the same when writing all in inline_scripts. I think it might have to do with the backend. I am always using xpyriment. But that's just a guess. @sebastiaan knows more about that. What worked for me was just changing the …
-
Dear alperkumcu, have you already tried to use the feedback item instead of a sketchpad item? Cheers! Stephan
-
Dear Joana, This is the OpenSesame forum: if you are using E-prime, this might not be correct forum. If you are using OpenSesame, could you specify your problem? Which part of your experiment does not work? Greetz Stephan PS: Nice task by the way…
-
Easy solutions without changing the form: * insert "_" or several to draw a line * insert "anything" and change the font color to background color
-
Hi Osmose, One option: Create two images. Both of them include both of your images. Just the position (right/left) is switched. Tell your participants to press the 's' (left) or the 'l' key (right) on the keyboard. --> You need to present only o…
-
How do i make the mouse disappear after the text_input ? from libopensesame import widgetsmy_form = widgets.form(exp, cols=1, rows=3)# add instructionlabel = widgets.label(my_form, text='Ist Ihnen während den 12 Blöcken etwas aufgefallen?')label2 =…
-
Sorry. I found it. :) http://osdoc.cogsci.nl/3.1/manual/forms/widgets/text_input/
-
When i use the text_input_form performance is very slow. Or i am typing too fast ;) Not all the letters appear in the text. So i thought to try another way.
-
Opera does this too. The result is so weird. You get some .gz data which you shall unpack. The result is an empty .osexp file.
-
Have you already tried an independent form base at point 6) ? Maybe the image is prepared at the beginning (of the loop) and just used as it is later on. But what you want is that the image is set up again at point 6).
-
Hi Micki, 1 Open Excel 2 Go to "data" 3 "open text" 4 Choose your path 5 select "separated" 6 seleft "by comma" --> your done I would recommend to open your data in a statistics program. You will need i…
-
Hi number, this is not a (python based) inline_script , but an open sesame script. When you click on e.g. your sketchpad you may click on "view" in the upper right corner. There you chose the script. Greetz Stephan
-
Hi Manuya, you do not necesarily need an inline_script for randomization. 1. Put your options into a loop. And randomize it. 2. An easy way would be to make two images with the questions and put them into the loop as well. Another easy way is to pu…
-
Hi Flippy, 1. the easiest way is to define buttons (e.g. the number buttons). In your case i would implement something in the images "press 'n' for no" or "press 'x' for yes". If you want to do it with mouse presses you need to…
-
Hi Stephanie, I experienced something very similar. I imagine that you have a loop with the sequence: auditory stim, vis stim, resp, vis stim, resp (space) As far as i know this has to do with the loop. All the stimuli are loaded each time the loo…
-
Sebastiaan asked me to try my experiment with the new 3.1.5 version. So i did now. Here is what i get on Mac. I do not know whether it is the same problem. What i know is that it does not work, so i will not update on my running computers ;) Cheers…
-
Dear rampriya, have you tried setting the duration of the blank screen to 1600ms? Keep the key response and everything equal. Should work i think. Stephan
-
Cheers Sebastiaan, i have got an experiment running on several laptops of the volunteers at the moment. Actually i was already waiting for this update problem for a long time already ;) Now that it's there, it is even a little worse. * I have got …
-
You may just ask for another keypress when they failed to inhibit using an inline_script. See here http://osdoc.cogsci.nl/3.1/manual/python/keyboard/ if # define your condition e.g. var_correct=0: kb= keyboard(keylist = ['b'], timeout=1600) …