Ask a Question related to Macromedia Flash Data Integration, Design and Development.
-
Alex Drinkwater, Goldsmiths College #1
UIScrollBar Breaks CSS Formatting
:confused;
Hi people. I'm trying to load some CSS-formatted HTML text into a text field
in Flash MX 2004. I've managed to assign the external stylesheet to the text
area using Actionscript, and get the text itself from an external file. The
text display fine. However, when I add a UIScrollBar component to the text
area, all the CSS text formatting disappears and the text reverts to default
settings.
Incidentally, I had to load the text into the text area, THEN use actionscript
to add the UIScrollBar in the next frame, otherwise the scrollbar wouldn't work
at all. Not sure if this has any bearing on my problem.
Anyone else come across this and know of a workaround?
Cheers,
Alex Drinkwater
Goldsmiths College London
Alex Drinkwater, Goldsmiths College Guest
-
UIScrollBar with dynamic text field
I have a dynamic text field that I want to add a UIScrollBar to. The dynamic text field has an rssreader attatched to it so it is reading from an... -
FMS breaks at over 2 GB
I'm using the latest version of FMS trying to do a basic stream of a 2+ GB file. At anything over 2 GB it plays for 1.5 seconds or so then freezes... -
mx.controls.UIScrollBar is not visible on IE 6.0.2900
Hi there, I am having a problem when I view a .swf movie that I published for flash player 7 and have deployed to a web server using IE 6.02. The... -
Page Breaks
The website that i work on has a page which is updated by several users with a CMS (not Contribute). This page is then printed off each day by a... -
css buttons - formatting text breaks alignment ?
Okay, the first thing I see is that you haven't declared a DOCTYPE in your web page. This causes modern browsers to revert to "quirks mode," meaning... -
conquerors04 #2
Re: UIScrollBar Breaks CSS Formatting
Hey Alex,
I'm not sure why you need 2 frames. I hear you saying you loaded the data
into a text area? Is that a component Text Area or just a regular text field.
Try this and see if it works,
Only thing, remember to drag a copy of the TextArea component onto your stage
and delete it.
Also, if this works, you may ant to not use the text field unless you are
looking for a transparent background for the info. And there is a way around
that also.
createObject("TextArea", "field1_ta", 100);
with(field1_ta) {
setSize(200, 50);
_x = 0;
_y = 0;
html = true;
vScrollPolicy = "auto";
styleSheet = {your stylesheet};
text = {your CSS formatted text};
}
conquerors04 Guest



Reply With Quote

