PDA

View Full Version : Take a Look at my files Please -- Adding LInks to Dynamic Text


jchiesa
12-22-2005, 10:09 PM
I have a dynamic text field (scrolling ticker)that loads text from an asp page which loads the text from an access database! I would like to add a link to the text I am loading into flash.

For example:
In flash I load from the database:

Holiday Events | Birthday Parties | Latest News //this is my scrolling ticker

I would like each of these events to have a specific link

Holiday Events (link to HolidayEvents.asp)
Birthday Parties (link to BirthdayParties.asp)
Latest News (link to LatestNews.asp)

what would it be the best way to approach this?

Is this something that it can be done thru the asp code, flash, access, or a combination of all?

Please Advise!

cmbarsotti
12-22-2005, 10:41 PM
flash will do htmlText and you could just use a regular old a href tag

jchiesa
12-22-2005, 10:47 PM
Thanks for your input...
I have tried that but it is not working... any other alternative?
Did you looked at my files?

cmbarsotti
12-22-2005, 10:49 PM
I'm sorry, I didn't look at your file. I supposed I should have before speaking. I'm sorry, I'll do that now.

cmbarsotti
12-22-2005, 10:54 PM
I can't run the asp file to see it in action, but looking at the AS I notice one thing.

You need to set html to true on the text field and set the .htmlText, not .text, on the text field for html text to work. or hit the "Render as HTML" button.

jchiesa
12-22-2005, 11:48 PM
Thanks, I will try that!

jchiesa
12-22-2005, 11:56 PM
I can't run the asp file to see it in action, but looking at the AS I notice one thing.

You need to set html to true on the text field and set the .htmlText, not .text, on the text field for html text to work. or hit the "Render as HTML" button.
That works! Thanks!!!