I am trying to flip cards in my solitaire game using core images.
Code: Select all
on mouseUp
    lock screen
    put image "card2" into image "card1"
    unlock screen with visual effect CIPageCurlTransition slow with angle 0.3 and backsideImage id 15444 and extent (0,0,400,300) and radius 200.00 and shadingImage id 15449
end mouseUpThe problem is that if I use lock screen/unlock screen, as in the example above, it shows card2 and then curls it. If I don't use lock screen/unlock screen, as follows ...
Code: Select all
show image "card1" with visual effect CIPageCurlTransition slow with angle 0.3 and backsideImage id 15444 and extent (0,0,400,300) and radius 200.00 and shadingImage id 15449Paul Gabel
