hike
About
- Username
- hike
- Joined
- Visits
- 28
- Last Active
- Roles
- Member
Comments
-
@DahmSF Solution to this issue is to comment line 55 in logger.py file in libopensesame folder (location varies depending on your operating system) which says self._logvars.sort() https://github.com/smathot/OpenSesame/blob/koffka/libopensesame/logg…
-
Auditory timing is a problem on opensesame. Look here for some explanation --> http://forum.cogsci.nl/index.php?p=/discussion/2007/auditory-timing-accuracy-on-mac You might want to play around with PyAudio or Pyo
-
I haven't used this myself, but as far as I know you need the open source python libs for xid. You can get them here --> https://github.com/cedrus-opensource/pyxid
-
How are you trying to install it? Like so? sudo add-apt-repository ppa:smathot/cogscinl sudo apt-get update sudo apt-get install opensesame Maybe ubuntu 17 has newer packages, while opensesame asks for older ones. Try "pip install…
-
Just an update, the same mac keyboard used on a dell laptop running ubuntu, works as it should -- both enter keys on the main keyboard and the numeric keypad advance the experiment. Openseasme version is the same, so this is defiantly an issue with …
-
We need to see some code. Please provide the code for your text_input item and the error message. Hike
-
I assume this is your computer and you've installed the operating system on it, created a user and set a password, right? The link explains how to find out your user's permissions. I am not around a mac at the moment, but you and I can type command…
-
No other ideas! It seems that the problem is with your computer not with opensesame. I ran it on a mac and it worked. You need to fix your computer. Try fresh install or something. Btw, enabling root on unix systems in not a good idea.
-
About using Enter key for next line, I think it is design feature, so there is nothing you can do. Instruct participants to keep typing without going to next line (text wraps by itself.) Next button is not working as you have some extra features th…
-
I just tested on a mac. I don't have any data folder in Contents\Resources, and got the same error about listAll NameError: name 'listAll' is not defined I think you have permissions error as I said earlier.
-
Forgot to mention. * Sorting, or rather not sorting the log file (this was mentioned before, I think). It is annoying that all variables are sorted alphabetically. I want my specified order. Solution to this issue is to uncomment line 54 in logger.…
-
Hi Daniel, Thanks for helping. I just tested on a macmini to make sure that the script is not involved in the first issue. I pulled a text_input into the default template and got the same weird character. The second issue is due to the script. H…
-
* Trial number wouldn't hurt (although it is easy to implement with an inline script). * Sane linux (not only ubuntu) installer is desirable, but I am not sure if it's possible. * My biggest issue is that form items do not have built in solution tha…
-
I think you need a data folder in folder where your experiment file is located. (I didn't find any data folder on windows machine.) The line 169 and 170 from _files.py check if the path where you are running from is a directory and creates one (perh…
-
You need to enter something and then click Next. I just tested it on a windows 10 system and it works. Do you have something coming after it? Try testing only this form in a new experiment.
-
Sebastiaan, do you think AnyQt ( https://pypi.python.org/pypi/AnyQt/0.0.6 ) might be helpful here? I'm using Orange ( http://orange.biolab.si/ ), and they recently implemented this to fight the PyQt4 vs PyQt5 issue.
-
It looks like you are trying to create a folder, while your user has no write permissions (I'm assuming you are on a unix like system. Mac, right?). Just create a folder called 'data' if that's where your log will be saved (I didn't see this in your…
-
I must say that this doesn't always work. I have a mac mini with Core 2 Due and 4GB ram with a builtin intel gpu. Legacy back-end with Double buffering set to 'no' doesn't help - you still have to wait 1-2 sec between entering each letter or digit.…
-
It gives me pyqt5 both in OpenSesame and in python interpreter. Both use Python 2.7.13, which is the latest. Thanks for looking into this!
-
Well, android should have a terminal (I don't have tablet, nor a phone with android), type there this --> opensesame --debug This should start the program in the debug mode and print all messages in the terminal, once it crashes, it will also pri…
-
I am not sure you need a keyboard response item. You are using a form_text_input, you just need to add an OK or Next button (I use Next), set return_accepts=no so if they type something and press enter wanting to go to next line of text the experim…
-
At this point, it is hard to say what's happening. Can you try launching opensesame with --debug option from terminal/command line?
-
What's in the crash report? Maybe you are missing libraries or something.
-
I've got the same issue. You can use Ok button only after you press Enter after entering a text in the text_input field. I just instruct my participants to do just that. You can avoid using Ok button, if you return_accepts=yes. Note, however, that p…
-
I've got python-pyqt4 4.12-4 installed as well as python2-pyqt5 5.7.1-3 , which are the latest on https://riverbankcomputing.com/software/pyqt/download Arch linux is a rolling disto, so it usually has the latest (more or less stable) packages.
-
Hi Josh, I thought of that, but isn't that tedious? I thought there might be more elegant way. Perhaps this can go to the whishlist? Hike
-
Use text display to present the text and sampler for audio, put a button that says "Listen to the audio". Once participant clicks on it, the program will advance and play the audio. This is a pretty simple stuff. Did you look at the tutor…
-
Sebastiaan, thanks for getting back and for developing such a great software! Yes, I get a segmentation fault. I guess, if the issue is not so terrible, I'll live with it. Can you explain (if you have time) what do you mean by "OpenSesame its…
-
I found this discussion --> http://forum.cogsci.nl/index.php?p=/discussion/447/open-form-enter-button It seems to be a workaround to get what we need. I'll try using it for my 4 text_inputs, but for you this will be a pain!
-
Hi there, why don't you start implementing your experiment and post specific questions if you have trouble doing something? Also, I think once you start doing it, you will be able to implement your difficult part with a loop object.