Aurélien
About
- Username
- Aurélien
- Joined
- Visits
- 3
- Last Active
- Roles
- Member
Comments
-
@tocb you are right, It does work on xpyriment, thank you ! So there is something wrong with psycho, which is annoying because It has some interesting features.
-
Hi Fab, Thank you for you response and advises. Unfortunately, this poor quality font is found on different screens of different sizes. I tried to fix it using the link you provide but it does not work. I will eventually try playing with differe…
-
Also, I use the backend Psycho.
-
Hi @lvanderlinden , Thank you so much ! It solved my problem 😀. I am not very familiar with Python objects... In case anyone has the same kind of problem, here is a code that I found at https://stackoverflow.com/questions/952914/how-to-make-a-fla…
-
Here I am with more info ! So, if you want to play sounds as variable and randomly picking them from a file, here is one way to do it (I picked some lines of the script in this forum so thanks to everybody ! ) import os import random #set path a…
-
Hi Sebastiaan, Thank you for your advices, I solved the problem! I generated random value and assign them to my var : import random import string I = random.sample(range(1,97),8) var.i1=I[0] var.i2=I[1] var.i3=I[2] var.i4=I[3] var.i5=I[4] var.i6=I…
-
Hi Sebastiaan, Thank you very much for your answer. I advanced a little. I had one problem with this loop : I need to play sequentially [silent] with [condition] (for example, I need to play sequentially the [sentences] of [silent]=0 and [condition…