-1

How to read images in a preset folder and display it on an image area using Livecode?

I have read through many Livecode sites but could not find an example.

Bakr
  • 1
  • 1

1 Answers1

0

create a button "butn" and image area "imag" then put this code in that button.

repeat with i =0 to the number of images in url "~/your/folder/path"
put it into image "imag"
wait 2 sec
end repeat

I should work, but i don't checked. if not, keep this logic in your mind and try it yourself.

all the best.

Zam
  • 367
  • 2
  • 17