Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
tigerstrikes #1
Problem formatting dynamic text
I'm using ASP (VB) to display copy from a Microsoft Access DB. My problem is
that the copy loses it formatting and all runs together. I've tried using PRE
tags, but I often get very long line strings which won't wrap to fit my page
layout even though the text is in a table cell or layer. Putting HTML into the
text while creating the copy won't work since the copy is used to create non
web reports. I know I'm not the first to run into this problem, so if anyone
can tell me what I can do either in the DB, style sheet or server behaviors to
correct, I will be most thankfu
tigerstrikes Guest
-
Problem Character % in Dynamic Text
Hi folks, I'm using a MySQL database to load text into Flash, it works perfect even when characters like ????? since System.useCodepage = true;... -
Dynamic text Formatting
Hey guys, I'm linking some text through XML to dynamic text boxes and I need to know if there's any way (other than directly editing the font) to... -
problem with dynamic text :-(
well, I got it to scroll and all I want to do now is use a font that people won't have. I know you can link a font to dynamic text, i've tried but i... -
problem when loading dynamic text
Problems, problems, problems! I have a mainstage with a mask. Underneath the mask there is movie that moves. In that underlying movie there is... -
strange problem with dynamic text
Why don't you simply write Scott Hathaway without the +? Should work just the same. If you do like to play round with variables froma text file... -
tigerstrikes #2
Problem formatting dynamic text
I'm using ASP (VB) to display copy from a Microsoft Access DB. My problem is
that the copy loses it formatting and all runs together. I've tried using PRE
tags, but I often get very long line strings which won't wrap to fit my page
layout even though the text is in a table cell or layer. Putting HTML into the
text while creating the copy won't work since the copy is used to create non
web reports. I know I'm not the first to run into this problem, so if anyone
can tell me what I can do either in the DB, style sheet or server behaviors to
correct, I will be most thankfu
tigerstrikes Guest
-
tigerstrikes #3
Problem formatting dynamic text
I'm using ASP (VB) to display copy from a Microsoft Access DB. My problem is
that the copy loses it formatting and all runs together. I've tried using PRE
tags, but I often get very long line strings which won't wrap to fit my page
layout even though the text is in a table cell or layer. Putting HTML into the
text while creating the copy won't work since the copy is used to create non
web reports. I know I'm not the first to run into this problem, so if anyone
can tell me what I can do either in the DB, style sheet or server behaviors to
correct, I will be most thankfu
tigerstrikes Guest
-
rob :: digitalburn #4
Re: Problem formatting dynamic text
Just put the formatting in when you're reading from the database and writing
to the page. So, in the case of wanting linebreaks to happen properly, for
example, just seach the string for linebreaks and replace them with <br />
tags before writing it to the page.
In PHP it looks like:
$content=preg_replace('/(\r\n|\n|\r)/i', '<br />', $content);
but I'm afraid I don't know ASP so I can't help you with the specific code.
tigerstrikes wrote:> I'm using ASP (VB) to display copy from a Microsoft Access DB. My
> problem is that the copy loses it formatting and all runs together.
> I've tried using PRE tags, but I often get very long line strings
> which won't wrap to fit my page layout even though the text is in a
> table cell or layer. Putting HTML into the text while creating the
> copy won't work since the copy is used to create non web reports.
> I know I'm not the first to run into this problem, so if anyone can
> tell me what I can do either in the DB, style sheet or server
> behaviors to correct, I will be most thankfu
rob :: digitalburn Guest



Reply With Quote

