agen judi bola , sportbook, casino, togel, number game, singapore, tangkas, basket, slot, poker, dominoqq,
agen bola. Semua permainan bisa dimainkan hanya dengan 1 ID. minimal deposit 50.000 ,- bonus cashback hingga 10% , diskon togel hingga 66% bisa bermain di android dan IOS kapanpun dan dimana pun. poker , bandarq , aduq, domino qq ,
dominobet. Semua permainan bisa dimainkan hanya dengan 1 ID. minimal deposit 10.000 ,- bonus turnover 0.5% dan bonus referral 20%. Bonus - bonus yang dihadirkan bisa terbilang cukup tinggi dan memuaskan, anda hanya perlu memasang pada situs yang memberikan bursa pasaran terbaik yaitu
http://45.77.173.118/ Bola168. Situs penyedia segala jenis permainan poker online kini semakin banyak ditemukan di Internet, salah satunya TahunQQ merupakan situs Agen Judi Domino66 Dan
BandarQ Terpercaya yang mampu memberikan banyak provit bagi bettornya. Permainan Yang Di Sediakan Dewi365 Juga sangat banyak Dan menarik dan Peluang untuk memenangkan Taruhan Judi online ini juga sangat mudah . Mainkan Segera Taruhan Sportbook anda bersama
Agen Judi Bola Bersama Dewi365 Kemenangan Anda Berapa pun akan Terbayarkan. Tersedia 9 macam permainan seru yang bisa kamu mainkan hanya di dalam 1 ID saja. Permainan seru yang tersedia seperti Poker, Domino QQ Dan juga
BandarQ Online. Semuanya tersedia lengkap hanya di ABGQQ. Situs ABGQQ sangat mudah dimenangkan, kamu juga akan mendapatkan mega bonus dan setiap pemain berhak mendapatkan cashback mingguan. ABGQQ juga telah diakui sebagai
Bandar Domino Online yang menjamin sistem FAIR PLAY disetiap permainan yang bisa dimainkan dengan deposit minimal hanya Rp.25.000. DEWI365 adalah
Bandar Judi Bola Terpercaya & resmi dan terpercaya di indonesia. Situs judi bola ini menyediakan fasilitas bagi anda untuk dapat bermain memainkan permainan judi bola. Didalam situs ini memiliki berbagai permainan taruhan bola terlengkap seperti Sbobet, yang membuat DEWI365 menjadi situs judi bola terbaik dan terpercaya di Indonesia. Tentunya sebagai situs yang bertugas sebagai
Bandar Poker Online pastinya akan berusaha untuk menjaga semua informasi dan keamanan yang terdapat di POKERQQ13. Kotakqq adalah situs
Judi Poker Online Terpercayayang menyediakan 9 jenis permainan sakong online, dominoqq, domino99, bandarq, bandar ceme, aduq, poker online, bandar poker, balak66, perang baccarat, dan capsa susun. Dengan minimal deposit withdraw 15.000 Anda sudah bisa memainkan semua permaina pkv games di situs kami. Jackpot besar,Win rate tinggi, Fair play, PKV Games
Comments
Hi,
First off, there is an IAT on the standard-tasks page, so you might be able to use this as a starting point:
Regarding your specific question. You could create a variable
stim_type
(say), and give this the value 'word' for trials on which you want to present a word, and the value 'picture' for trials on which you want to present a picture. You can then use show-if statements in yoursketchpad
to determine which elements are shown, depending on the value ofstim_type
.So:
... for the text element of the sketchpad, and
... for the picture element.
Does that help at all?
Cheers,
Sebastiaan
Check out SigmundAI.eu for our OpenSesame AI assistant!
Hi!
Thanks for your answer, it helped and the problem is now solved!
I was actually already using the template, but thanks for that tip also! I created the stim_type variable, but the program still did not show the stimuli as pictures. Therefore I added an additional picture variable for the picture stimuli. After this I added all pictures to the sketchpad and used the show_if statements so that only the right one is showed for each variable.
I still have to figure out how to write an inline script so that the program would remember which word/picture it has shown and be able to show it again. I think I have found some answers here on the forum that will help me get started with that.
Thanks a lot for the support!
Cheers,
Heidi
Hi again!
I'm wondering about a few things regarding the inline scripts. Is it possible to combine a script with the variables defined in the loop? I noticed that you had used inline scripts for defining the variables instead of filling in them in the loop in one of your examples (http://forum.cogsci.nl/index.php?p=/discussion/11/solved-randomly-drawing-items-from-the-file-pool/p). I'm very unfamiliar with coding and would like to use as little scripts as possible. I have now tried to figure out how to write the inline script by looking at the script view of the loop and the sketchpad.
I would need the program to a) remember the last item shown (which is randomly drawn from the pool of variables) and b) present the same item again immediately after an incorrect answer until it is answered correctly. Do you have any tips on what the easiest way to solve this problem would be?
Thanks again!
Cheers, Heidi
You could use the
repeat_cycle
plug-in, and set its repeat-if statement to[correct] = 0
. This assumes, of course, that you have specified a correct response, so that thecorrect
variable is automatically set.This plug-in will repeat the to-be-repeated cycle at a random point during the remainder of the cycles. So it's basically put back and reshuffled. Is that an acceptable solution?
Alternatively, you could add the following script to the end of the trial, in the run phase of an
inline_script
item:This will keep restarting trial_sequence until a correct response was collected. Of course, you would need to change 'trial_sequence' to the name of the
sequence
that corresponds to a trial in your experiment. Does that make sense?Cheers,
Sebastiaan
Check out SigmundAI.eu for our OpenSesame AI assistant!
Hi,
I used the inline script you suggested and now everything works! Thank you so much for the help!!
Cheers,
Heidi
Hello,
I was just wondering what your script looked like Heidi as I am also struggling to re-present an incorrect stimulus straight after until the correct answer is given.
Thanks!
Hi!
For sequence Parent1Parent2_Seq the script looked like this:
if self.get('correct') == 0:
exp.items["Parent1Parent2_Seq"].prepare()
exp.items["Parent1Parent2_Seq"].run()
This repeats the stimulus that was answered incorrectly. Have you tried a similar inline script-item with your own sequence-names in the run-phase of the script? I simply put a separate error-sketchpad after the response-item, and this inline script after that. And by using "show if" statements I chose these not to be shown when the initial response was correct!
Does this help at all?
Cheers, Heidi