Show activity monitor during iphonePickPhoto?
Posted: Sun Jun 10, 2012 3:35 am
As it can take several seconds to suck in a photo with iPhonePickPhoto, I would like to display the activity monitor from the time a user selects a photo to when it appears in an image field. The following shows the indicator from when a getPhoto button is pressed, but that is too soon as there is no activity going on while the app waits for the user to pick a photo.
on mouseUp
iphoneActivityIndicatorStart "whitelarge", 900, 100
iphonePickPhoto "library"
put last image into image "pic1"
delete last image
iphoneActivityIndicatorStop
end mouseUp
Putting the activity command immediately after iPhonePickPhoto means it does not appear at all. So is there a way to start the indicator as soon as the user picks a photo?
Cheers
Don
on mouseUp
iphoneActivityIndicatorStart "whitelarge", 900, 100
iphonePickPhoto "library"
put last image into image "pic1"
delete last image
iphoneActivityIndicatorStop
end mouseUp
Putting the activity command immediately after iPhonePickPhoto means it does not appear at all. So is there a way to start the indicator as soon as the user picks a photo?
Cheers
Don