Animate when text label changes...

Ask a Question related to Macromedia Flex General Discussion, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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
    2. 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
    3. 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...
    4. 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: ...
    5. 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...
  3. #2

    Default Re: Animate when text label changes...

    Hello... is there any one to help... please ?
    sripos Guest

  4. #3

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139