Ask a Question related to Macromedia Flex General Discussion, Design and Development.
-
sripos #1
Animate when text label changes...
I'm a new bee and I appriciate if anyone can help me on this..
Is is possible to 'animate' or apply some kind of effect (blur or fade or
something like that) when the text label changes?
For Example, I have "JOHN" in the the text lable, but this can change to
"STEVE" under certain situation... and I would like to animate when it
changes...
Please someone tell me how do I do that...
Thanks...
sripos Guest
-
Changing text on asp-label
Is it possible to change the text in a label from english to german like cultureinfo in Visual studio? regards reidarT -
Animate Text into a circle?
Is there a way to animate a string of text so that it moves from a straight line in to a circle? If so, please give me a clue! Thanks Geoff -
http://www.westelm.com/ - How did they animate their text?
Hello, all! A client of mine fell in love with the animated text at the following website: http://www.westelm.com/ I've been struggling for... -
Animate text around object
Can't get this turorial to work. I see examples everywhere, but my final outcome does not work. Here is the example: ... -
animate text in an arc
Hi there Can someone please help? I want to make an animation where text, letter by letter, comes in an arc starting at the left and flows... -
sripos #2
Re: Animate when text label changes...
Hello... is there any one to help... please ?
sripos Guest
-
atta707 #3
Re: Animate when text label changes...
Topics you can find helpful in FB help:
Effects, events
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
layout="vertical" width="600" height="392">
<mx:Script>
<![CDATA[
private function changeJohnToSteve() : void {
if (this.label1.text == "STEVE") {
this.label1.text = "JOHN";
}
else {
this.label1.text = "STEVE";
}
glower.play([this.label1]);
}
]]>
</mx:Script>
<mx:Label id="label1" text="JOHN" />
<mx:Button label="Toggle John and Steve" click="changeJohnToSteve()"/>
<mx:Glow id="glower"/>
</mx:Application>
atta707 Guest



Reply With Quote

