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 mouseUpthen save your stack
best,
Chipp _______________________________________________ use-revolution mailing list [email protected] http://lists.runrev.com/mailman/listinfo/use-revolution
