FORUM

Text Effect Maker (More than one phrase in a movie)

Home / Forum / Components Discussions / Text Effect Maker (More than one phrase in a movie)

Started 3 years ago by corbinsiddall

Last reply by corbinsiddall

Recent posts in this topic

  • This Works:

    import com.util.AuxBuilders;
    import com.effects.TextEffect;
    //eff
    var fx:TextEffect = new TextEffect ("First Phrase",750,200);
    var methods:Array = new Array ("SAME_TIME","ONE_BY_ONE","INTERCARLATED");
    var colorLetter:Number=0xFFFFFF;
    var sizeLetter:Number=30;
    fx.setEffectIN (1,0,methods[1]);
    fx.setEffectOUT (1,1,methods[1]);
    fx.setLetterProperties (0,{color:colorLetter,size:sizeLetter});
    //

    But This Does Not

    import com.util.AuxBuilders;
    import com.effects.TextEffect;
    //eff
    var fxa:TextEffect = new TextEffect ("First Phrase",750,200);
    var fxb:TextEffect = new TextEffect ("SecondPhrase",750,230);
    var methods:Array = new Array ("SAME_TIME","ONE_BY_ONE","INTERCARLATED");
    var colorLetter:Number=0xFFFFFF;
    var sizeLetter:Number=30;
    fxa.setEffectIN (1,0,methods[1]);
    fxa.setEffectOUT (1,1,methods[1]);
    fxb.setEffectIN (1,0,methods[1]);
    fxb.setEffectOUT (1,1,methods[1]);
    fxa.setLetterProperties (0,{color:colorLetter,size:sizeLetter});
    fxb.setLetterProperties (0,{color:colorLetter,size:sizeLetter});
    //

    Any ideas why?


    #  /  posted on Mar 01, 2009

Please login to post replies.