sameold
sameold

Reputation: 19242

Making pieces of text Stylable (e.g. for urls)

It's possible in plain HTML to wrap pieces of text in spans or tags that can make it easy to style them later. For example, if I wrap "part can be styled" in a span wit class stylable, I could define my own style later for it.

This <span class="stylable">part can be styled</span> later if needed

I'm new to actionscript, and I'm wondering if something similar exists for actionscript/flex?

I actually need it specifically for urls, but in general too.

Upvotes: 0

Views: 34

Answers (1)

PatrickS
PatrickS

Reputation: 9572

It's actually possible to do a similar formatting in AS3 , read the docs about Applying CSS to a TextField.

Upvotes: 2

Related Questions