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 @sdewitt ,
Your script opens a PDF file in a browser window, which is separate application. At that point, you're no simply longer in OpenSesame--you've left the experiment and need to switch back to it in order to continue.
If you want to have a scrollable image, then there are various ways to do so within OpenSesame. One way is to use a short
inline_script
that modifies the y coordinate of an image element, a file calledimage.png
taken from the file pool, on aCanvas
based on mouse input, like so:You will probably need to modify this script a bit, but hopefully it will get you started!
-- Sebastiaan
Check out SigmundAI.eu for our OpenSesame AI assistant!
Hi @sebastiaan
Thank you so much for your quick response! I suspected my code was navigating outside of opensesame, based on how the image was being presented. Editing and using the script you have above, I'm still having a few issues. See my code after the description of my issue and my error message.
Namely, it seems my opensesame backend does not have the canvas, image, or pool modules (the backend right now is expyriment, I don't actually know how to change that to something like psychopy). As such, I start the script out by importing multiple modules (which I think is not ideal). Even If I just do this in the prepare, not run (or if I do it in both), I get the subsequent error message on line 4 (note: 1. if I don't import the modules, the script breaks on each line the modules are called. 2. my_canvas = canvas() breaks without an input for canvas(), hence why I have canvas(exp), I'm not sure if this is accurate.
phase: prepare
item: ___inline_script
line: 4
exception message: name 'pool' is not defined
exception type: NameError
from openexp.canvas import canvas
from PIL import Image
my_canvas = canvas(exp)
my_canvas['img'] = Image(pool['image.png'])
my_mouse = Mouse()
while True:
my_canvas.show()
button, pos, timestamp = my_mouse.get_click()
# Break loop on left click
if button == 1:
break
# Scroll up
if button == 4:
my_canvas['img'].y -= 10
# Scroll down
elif button == 5:
my_canvas['img'].y += 10
Hi @sebastiaan,
I was actually able to work through the errors in the comment I made above (it wouldn't let me edit the unnecessary comment). I had to use a work around with exp to get the image from my file pool, but I've successfully done so (see below), and it responds to the break with a mouse response (1, left button click). The struggle I now have is,
from openexp.canvas import canvas
from PIL import Image
from openexp.mouse import mouse
my_canvas = canvas(exp)
my_canvas.image(exp.get_file('gaze_left.png'))
my_mouse = mouse(exp)
while True:
my_canvas.show()
button, pos, timestamp = my_mouse.get_click()
# Break loop on left click
if button == 1:
break
# Scroll up
if button == 4:
my_canvas.y -= 10
# Scroll down
elif button == 5:
my_canvas.y += 10
Thank you for any help!
Best,
Sam
Hi Sam,
1
Replace
my_canvas.image(exp.get_file('gaze_left.png'))
withmy_canvas['img'] = Image(exp.get_file('gaze_left.png'))
That should do the trick. If not, rather than doing
my_canvas.y+=10
you have to draw the image to the canvas every time you want to update the position new (with adjusted x and y coordinates)2
Have you seen that part of the documentation:
Note: In most cases, you will want to use the visible keyword, which changes the visibility during response collection, that is, while mouse.get_click() is called. Calling show_cursor() will not implicitly change the value of visible, which can lead to the somewhat unintuitive behavior that the cursor is hidden as soon as get_click() is called.
So
button,pos,timestamp=my_mouse.get_click(visible=True)
should do the trick.Eduard
Thank you so much Eduard! (bought you a coffee). That solved my second issue, the mouse problem. For my first issue, When I replaced my code: my_canvas.image(exp.get_file('gaze_left.png')) with what you suggest: my_canvas['img'] = Image(exp.get_file('gaze_left.png')) I get the following error
phase: prepare
item: inline_script
line: 9
exception message: 'module' object is not callable
exception type: TypeError
I worry that I cannot redraw the image with new x,y coordinates every time I need it to shift, as I need it to shift in response to the mouse scroll response. I'm not sure I know how to redraw the image with new coordinates in response to a mouse scroll response.
Thank you again!
Best,
Sam
Hi @eduard ,
Nevermind! I was able to use your suggestion to draw lower/higher version of the image, combined with a "run if" condition based on a scrolling response. EXTREMELY helpful, thank you and @sebastiaan so much!
HI Sam,
Thanks! Glad it worked out :)
Eduard