Groups | Blog | Home
all groups > flash (macromedia) > may 2004 >

flash (macromedia) : Text effects tutorial? How'd they do that?



tony
5/17/2004 11:20:20 PM
Hi,

I came across a site that had a nice effect for it's text: www.okworks.com.
If you click on Company, I love the way the text comes in, starts of sort of
scattered and backwards then lines up everything nicely.

Has anyone seen a tutorial or something that could give me an idea of how
this effect is done? If anyone knows a good site that shows text effects in
general (besides flashkit) that would be great too.

Thanks, T

Matt
5/18/2004 9:01:13 AM
[quoted text, click to view]
It look like they took each line of the text and did a typing effect.
Some were right justified, some were left, some were center. Just make
each line a dynamic textbox, assign it an instance name, and then
dynamically write to the box.

Textbox instance mytext1 (aligned center)
Textbox instance mytext2 (aligned right)

var the_text_of_one_line = new Array();
var the_text_of_one_line[0] = "This is what I want to say.";
var the_text_of_one_line[1] = "This is something else I want to say.";

In frame1 of the movie where all this text is, do this:

this.onEnterFrame = function() {
mytext1.text = substring(the_text_of_one_line[0], 0, count);
mytext2.text = substring(the_text_of_one_line[1], 0, count);
count++;
};

Something like that ought to get you on your way to making this effect
urami_
5/18/2004 12:08:06 PM

[quoted text, click to view]

You would be surprised but this effect is actually frame by frame animation.
Random order throughout many frames making impression only like it sorting itself out.



--

Regards


urami_*



<no>
http://flashfugitive.com/
</no>

.::herman
5/18/2004 12:15:32 PM
it seems using mask.
btw, the pic distort effect is so great, how to do ???

Herman

"tony" <unplain_jane@hotmail.com> ¼¶¼g©ó¶l¥ó
news:c8bvii$i6h$1@forums.macromedia.com...
[quoted text, click to view]

urami_
5/18/2004 12:15:55 PM


[quoted text, click to view]


Hi Herman , that's again frame by frame images sequences imported to flash.
You can zoom in on right click to see the pixels while the movie loading
The author is known for using very basic flash and obtaining nice visual results.
Just like Eric Jordan from www.2advanced.com
Lots of work on tiny details , mostly very fundamental flash features and minimum
action script , just lots of images sequences and tweens across multiple layers.
It's not hard, just time consuming and not many has patience for that.
.::herman
5/18/2004 12:43:51 PM
oic, thx!!
really time consuming nice effect ^^

Herman



"urami_" <noSpam@FlashFugitive.com> ?????
news:c8c2lr$l5m$1@forums.macromedia.com...
[quoted text, click to view]

tony
5/18/2004 11:10:15 PM
Hi Matt,

Thanks for all that! I've been trying it out and I had a question, where do
I put this code:

var the_text_of_one_line = new Array();
var the_text_of_one_line[0] = "This is what I want to say.";
var the_text_of_one_line[1] = "This is something else I want to say.";

Sorry I'm still new at this.

Thanks, T




[quoted text, click to view]

Matt
5/19/2004 8:22:22 AM
[quoted text, click to view]
I'm sorry, I must have confused you with the line "In frame1 of the
movie where all this text is, do this:", all of that actionscript goes
in frame 1.

tony
5/19/2004 6:40:41 PM
sorry for the confusion. i'll try that. thanks matt!



[quoted text, click to view]

AddThis Social Bookmark Button