Help with Image Display

Got a LiveCode personal license? Are you a beginner, hobbyist or educator that's new to LiveCode? This forum is the place to go for help getting started. Welcome!

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller

Post Reply
NilsM
Posts: 1
Joined: Wed Sep 05, 2007 1:14 pm

Help with Image Display

Post by NilsM » Wed Sep 05, 2007 1:26 pm

Hi,

I'll start off by saying that I v.v. little experience of programming, so please be patient. I'm trying to make a memory program that shows four images and asks the user to select the one they've seen before. I've uploaded the BMP files and have buttons which display the images. Here it is:

on mouseUp
hideallimages
put field "TestStim2" into thepics
put the number of lines in thepics into npic
put 0 into nimage
repeat with n=1 to 6
add 1 to nimage
put line nimage of thepics into thepic
show image thepic
wait 2 seconds
hide image thepic
end repeat

end mouseUp

What I need now is to be able to create a data file (maybe asking for ID, before the images are presented?) and record responses.

If anyone has some script already or can help that would be MASSIVELY appreciated.

Thanks,

Nils

Klaus
Posts: 14192
Joined: Sat Apr 08, 2006 8:41 am
Contact:

Post by Klaus » Thu Sep 06, 2007 6:23 pm

Hi Nils,

I don't think that I understand your problem, except that you actually do not have a problem with displaying images, right?

Could you please give a bit more info about what you want to do?


Regards

Klaus

Post Reply