I have an Image container that I use for a slide show and a transition
that I apply to it so I can cycle through a series of images. 
Interesting thing is that when the series has only one image, it
should just loop over and over again but it does not.  It fails to
load after the first pass.
If the URL for the current image is the same as the previous image
then the image does not load so the flow stops.

Here is my flow of events (previewImage):

load current Image [previewImage.source =  .....]
on Image Load call Transition in
on Transition in finish call a Timer (exec in 3 second)
on Timer exec call Transition out
on Transition out finish call load current Image

When I added a null reference to the source before I repeat the load
process it works like it should, without it I got nothing.

Working fix:
on Transition out finish
    [previewImage.source =  null]
    call load current Image

Did I miss something?  Is this loading of an image with the same URL
or any other content cause an issue with anyone else?  Thanks.


Reply via email to