Simple Problem
Simple Problem
Out of context: Reply #6
- Started
- Last post
- 10 Responses
- TedUmptious0
The problem doesn't occur if I don't change the size of the text. The text will just naturally go to the next line (the dynamic box is set to Mutliline Wrap).
Here's a sample of the Flash CSS:
with (mainMenuStyle) {
setStyle("generalText", {
color: '#AFB1B3',
fontSize: '16'
});setStyle("largeHeadline", {
color: '#AFB1B3',
fontSize: '56'
});
}And heres the text file:
myHTMLdata=<largeHeadline>Urban Design,<largeHeadline><generalText>Commercial, Mixed Use, Studies.</generalText>In the text above it'll appear like this:
Urban Design,
Commercial, Mixed Use, Studies.When it should be like this(with Urban Design larger):
Urban Design, Commercial, Mixed Use, Studies.Thanks for help so-far.
- something funny here, do you need to close the large headline tag? </largeHeadline>ian
- Sorry I have. Still doesn't work though!
TedUmptious