Trying to find a way to list all the images in one card.
Something like put the images in card x, obviously doesn't work. Any work arounds?
Scott
Listing all images in a card
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Re: Listing all images in a card
Something like this should work.
repeat with i = 1 to the number of images of cd "cardname"
put the short name of image i & return after tImages
end repeat
delete the last char of tImages
put tImages
repeat with i = 1 to the number of images of cd "cardname"
put the short name of image i & return after tImages
end repeat
delete the last char of tImages
put tImages
-
- Posts: 125
- Joined: Sat Jan 31, 2009 12:01 am
Re: Listing all images in a card
Ah, of course! needed more coffee!