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 @favdberg ,
Thanks for pointing this out! Turns out that there is a bug in the newest version of OSWeb which makes that
loop
s with only a single cycle are skipped. Sebastiaan filed an issue and there'll hopefully be an update very soon.For now, as a work-around, you can add another cycle to the relevant
loop
item (here: single_prac_repeat_if_loop), for example by adding a second row where the value of the variable "dummy" is set to "2".Next, you can use a
break-if
statement to make sure that only the first cycle is run, like so:Does that do the trick for now?
Cheers,
Lotje
Did you like my answer? Feel free to
hey favdberg,
Ive had the same problem since updating to the newest version of opensesame (which is to say a possible solution would be to just use version 3.2.8 if that is open to you). What ive found is that is isnt the repeat per se that is causing the problem but may actually be something more fundamentally tied to how loops are converted to osweb in this new version. Specifically it seems that the new version doesnt like when a loop has only one row - a somewhat unusual situation that makes perfect sense if you have a repeat function embedded in your loop, e.g. if you wanted to give your participant a chance to repeat a certain section. In this case Ive found the loops are entirely excluded from my experiment when I take it online.
Another situation where this occurs is if I just have an 'empty' loop (with no rows) with a sketchpad in it. the loop really serves no purpose here and there is absolutely no reason why anyone would ever actually program this but regardless the sketchpad appears when run on the desktop but not online, showing there is some issue with the conversion of 'empty' loops online.
Lastly I will say there is another situation where 'empty' loops do seem to run properly online and that is when there is a nested loop which does have rows within the empty loop. So for instance i have a block with allot of rows for each trial type within a loop which is empty but is set to repeat a certain number of times. This technique allows me to preserve the block makeup such that each block has the same number of each type of trial (kinda complicated, i realize sorry about that. [also, on a partly unrelated note it would be nice if in future versions of opensesame i didnt need to do this, right now if i set up a block with a certain number of trials to be randomized and say repeat this ten times then the ten blocks are first generated and then the trials randomized such that different blocks end up with different numbers of each trial type. I think this is pretty confusing and allot of people dont realize until the analysis phase that while the end trial counts are all in order, the block trial counts are totally random. I think probably some people dont even ever notice this...]). Aaaanyway in this situation for whatever reason the loops will work online... usually... not always. anyway that was maybe not helpful
so to favdberg i would say if you can downgrade to an earlier version then I would recommend doing that and holding off on the latest version until they fix some of their issues. I had no problem with loops in 3.2.8. This would mean missing out on some of the newer bug fixes in the latest version though, which unfortunately is not something I can do so I am still invested in a quick fix of this issue.
ah i see i am late to the game
But amazing that you found the issue! :)
It'll probably be fixed soon
Did you like my answer? Feel free to
I've got a bunch of single-row single-column loops in an experiment that works fine in the latest version, without any nested loops. I just made a variable called 'empty_var' with the single value 0, maybe that helps?
Hi @lvanderlinden ! Thanks for responding so quickly and for the excellent suggestion.
For those who are running into a similar issue:
By using the
break-if
statement in the repeat_if loop I had to adjust my repeat_ifloop
s somewhat (because the dummy variable is set to '2' when the cycle is repeated, and a second cycle only has to run when [repeat] = 1). To run it correctly, I added a third cycle to the repeat_if loops, set thebreak-if
statement to '[dummy] = 3 or [repeat] = 0' and making sure that the accuracyfeedback_item
only runs when [repeat] = 1 and when [dummy] <2 . Finally, I inserted a shortinline_javascript
into the single_sequence and mixed_sequence to set [repeat] = 1. This way, the practice block will always run the first time round. I added the updated script.And thanks @dockasaurusrex thanks for taking the time to respond!
I think everything works now! Thanks again for your help. I'll be looking forward to the OSWeb update :)
"I've got a bunch of single-row single-column loops in an experiment that works fine in the latest version, without any nested loops. I just made a variable called 'empty_var' with the single value 0, maybe that helps?"
Ah wait, it works because the cycles are repeated. A single-row loop that is cycled through only once is the problem.
@dockasaurusrex @favdberg @JasperdeWaard I hadn't seen this discussion, but @lvanderlinden pointed the issue out to me. It should be fixed in OSWeb 1.3.13, but for now you have to manually upgrade because this is not included with OpenSesame yet. If you could let me know whether this indeed resolves the issue, that would be very helpful!
Check out SigmundAI.eu for our OpenSesame AI assistant!