Hey.
It has been a while since I last opened flash, and I'm a coder, not a designer, anyway.
I've been asked if it is possible, with flash, to create dynamic text similar to this:
http://yfrog.com/n2ca12j
Obviously, pretty complicated, no? What with all the gradient, bevel, etc etc? (we do own the typeface, although I think the above is modified. I'd be happy to just approach that look)
I suggested creating an image, but as the text must be displayed in a number of languages, currencies & amounts, the creative team (who do now know flash) want to know if it is possible, without creating a new image for every combination.
Alternatively, I suppose, I could suggest they create a whole typeface - but, again - we have multiple languages so would have to do complete sets, with swedish and german special characters as well.
Is it too complex to do purely with the Flash IDE and some code?
Did the design team create that effect? What was the combination of filters in photoshop that produced the effect. You may have all the filters available in the properties window in Flash.
I created a starting point for you, but you can see it's a little more poured than the old west struck look to it.

The primary trick is to nest the text in a clip. You blur the clip to give the bevel something to work with. But this wrecks the text of course, so you use some low blur glow to bring the edges back up. The smaller the text in your clip, the less blur you apply on all the filters. Also this is a simple bevel. The designer may have used a gradient bevel, which you can do in Flash as well.
the order of the application of filters in the property box is important.
The only script in this scenario would be setting the text to dynamic and defining the string to display.
Rocking thank you.
I do not need the photoshop filters in all their glory - the team who require this prefer flexibility to overly complex decoration.
I'll have to wait till I get home for CS4 or 5 - we use CS3 at work - to have a look at your example; but if something similar can be done that is great. Will give it a shot...
:worship:
Something I was playing with, it uses frames of images, you only populate what you need, fla is cs3, code haXe. http://www.justinfront.net/haxe/letters/letters.zip
But a lot of work to create your own image for each letter needed, but atleast once you set up and tweak its easy to use, (does word wrap for you).
//snipit from letter view.
_text = "put text here";
_x = 10.0;
_y = 10.0;
_width = 450;
_symbolFont = 'letterBold';//'letterRegular'
I guess its probably not useful for you but adds to the general thread topic.
Nice one JLM
did you manage to compile?