How to Make something flash?

What I mean by make something flash, is making another image appear and disappear every 3 seconds?

Thanks In advance…Love this Forum!! [import]uid: 86879 topic_id: 16818 reply_id: 316818[/import]

so you know how to do the flashing thing. so what is preventing you from doing that ? :slight_smile:
you can also use movieClips for this.
http://developer.anscamobile.com/content/movieclips
or you can just use this simple timer

[lua]timer.performWithDelay(500,function() if image.alpha == 0 then image.alpha = 1 else image.alpha=0 end end ,-1)[/lua]
[import]uid: 71210 topic_id: 16818 reply_id: 63007[/import]

This is perfect! Worked Great!! Thanks SO Much! [import]uid: 86879 topic_id: 16818 reply_id: 63011[/import]