Does visul effects work on IOS only on stack?

Got a LiveCode personal license? Are you a beginner, hobbyist or educator that's new to LiveCode? This forum is the place to go for help getting started. Welcome!

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller

Post Reply
et_phone_home
Posts: 13
Joined: Wed Jun 08, 2011 10:54 pm

Does visul effects work on IOS only on stack?

Post by et_phone_home » Sat Jun 25, 2011 3:58 pm

I'm trying to put some visual effects when an image appears.

It works well on the run, but when i compile it and test it with the iphone emulator the visual effect doesn't work...


on aparecerpedacos
repeat with c=1 to 9
set the loc of image ("pedaco" & c) to (left of image ("pedaco" & c)+(width of image ("pedaco" & c)/2)), random (150)+50
show image ("pedaco"&c) with visual effect dissolve very fast
end repeat
end aparecerpedacos


Whats the problem?

Mark
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 5150
Joined: Thu Feb 23, 2006 9:24 pm
Contact:

Re: Does visul effects work on IOS only on stack?

Post by Mark » Sun Jun 26, 2011 3:09 pm

Hi,

Maybe visual effect doesn't work with images on iPhone. It is also possible that "very fast" is too fast to notice. Try this:

Code: Select all

lock screen
 // show/hide/move stuff here
unlock screen with visual effect dissolve
Best,

Mark
The biggest LiveCode group on Facebook: https://www.facebook.com/groups/livecode.developers
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode

et_phone_home
Posts: 13
Joined: Wed Jun 08, 2011 10:54 pm

Re: Does visul effects work on IOS only on stack?

Post by et_phone_home » Mon Jun 27, 2011 3:01 pm

ThX
i already get it to work:)

Klaus
Posts: 14177
Joined: Sat Apr 08, 2006 8:41 am
Contact:

Re: Does visul effects work on IOS only on stack?

Post by Klaus » Mon Jun 27, 2011 4:02 pm

Could you please describe what did not work and how you made it work?
This may be useful to others, too! Thanks!


Best

Klaus

Post Reply