Is there any way to fade in/out animations created with movieclip library?
Thanks [import]uid: 89239 topic_id: 29048 reply_id: 329048[/import]
Is there any way to fade in/out animations created with movieclip library?
Thanks [import]uid: 89239 topic_id: 29048 reply_id: 329048[/import]
Sure. they are just display objects, like an image. You can do a transition.to on them using the alpha property to fade them in out.
player = movieclip.newAnim({"image1.png", "image2.png", "image3.png"), 128, 128)
transition.to(player, {time=500, alpha = 0})
[import]uid: 19626 topic_id: 29048 reply_id: 116889[/import]
Well, I tried this and it’s not working…
It’s just making the animation alpha= 0 and suddenly appears with alpha =1
Do you have any other suggestions?
[import]uid: 89239 topic_id: 29048 reply_id: 116894[/import]