Can i put easing onto aniamation tween to make it smooth or can you only do that with mc’s? Anyone know the code for easing a mc into a set postiton in the screen. the right x y which i have figured out before.
i’d have to say its not with frame labels. More likely to be movement initiated with a button press, and then using an onEnterFrame function to move the box up/down. Its how i would do it anyway.
Yeah if you forget about resizing and just think about movement you’ll see its the same. Its possible to do with key frames and motin tween but i think its easier with actionscript, my preferred method anyway.
About the text, the section headers, where the text appears wobbly, the text is built with particles that move into place, and by displacing them you get the wobble effect, thats what i think.
Some of the text content appears from behind a mask, and some parts sort of cycle through different symbols before stopping on the correct one, i’m sure i’ve seen an example of this somewhere before, i’ll try and hunt it down - or maybe some one else knows.
Done it myself, not hard if you know about physics and kow some math. I can say i’m 100% certain it was done with a function, it you watch the box move when it gets 3/4 pixels away from the final position it slows done dramatically, definately the result of a function i’d say.
i was just thinking about it, it seems reasonable to be able to create it without any tutorial or watever. using setInterval call a function every 1/100th of a second that will replace the first character with a random symbol, do that call 3/4 more times, then move on to the second character of the word, the first character remains the same while the second one changes between the random characters, then after 3/4 calls stop at the correct character and move ontot the third character and do the same, continue for as many characters as you got. Makes sense in my head even if ive worded it badly.