Hello. I am working on a movie clip symbol composed solely of text.
Is it possible to create a for loop, that looks at the number ofcharacters in the symbol, take the current character and raise its size by 2pt, and the previous and next characters by 1 point? And as it continuess to put the original size of each character back?
I’d only started working on this, but (a) I’m new to ActionScript, and (b) it may not be possible to create such a routine.
I started with this before posting:
for (L=0; L<pageTitle.letters.length; L++)
{
}
The syntax to increase the specified letters’ sizes (and decrease accordingly) would be easy, but I don’t know the appropriate property to adjust.
Am I on the right with the existing statement, and is my train of thought even possible to accomplish via AS3?
Any help/hints would be much appreciated.
Thanks much!