Problems with Importing multiple images

Chipp Walters chipp at chipp.com
Thu May 12 00:14:15 EDT 2005


Hi Kathy,

The problem is probably with image ID's. You can change them using the 
inspector. Try starting with a high 6 digit number for the first image 
you import, then add 1 to it and set the next image's ID to it.

I think this should solve your problem.

OR create a button after you've loaded all your images and set the 
script of it to:

on mouseUp
   --> CREATE A RANDOM HIGH STARTING ID
   put 123456 into tID
   repeat with y = 1 to the number of cards in this stack
     go cd y
     repeat with x = 1 to the number of images on this card
       set the id of img x to tID
       add 1 to tID
     end repeat
   end repeat
end mouseUp

then save your stack


best,

Chipp


More information about the use-livecode mailing list