Link to home
Start Free TrialLog in
Avatar of kikisu
kikisuFlag for United Kingdom of Great Britain and Northern Ireland

asked on

AS3 alpha tween using tweener on text in flash - please help!

Hi,

I was given an answer to a previous question here: https://www.experts-exchange.com/questions/24340770/Flash-as3-fade-text-in-and-out-using-script-not-tweening.html

i thought i could get it to work but for some reason i cant...

the caurina file is in the right place and my dynamic text is named but nothing is working - not even the alpha.

please see my example here: http://www.kiraaskaroff.com/fade_text_test/

im basically trying to fade out one piece of text and then fade in another using as3

please help - im really stuck!

thank you


import caurina.transitions.*
text1.alpha = 0;
text2.alpha = 0;
Tweener.addTween(text1, {alpha:1, time:1});
Tweener.addTween(text1, {alpha:0, time:1, delay:10});
Tweener.addTween(text2, {alpha:1, time:1, delay:12}); ...

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of kikisu
kikisu
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial