Is It Possible To Capture Hiperlink Clicks In Textfields?
Hi,
I have a few text fields rendering HTML content. I already figured out that regular hiperlinks (using the <a> tag) launch a web browser and open the link there. Nevertheless I'm trying to figure out if it is possible to use this hiperlink feature to navigate inside the application itself, that is, to capture the click in a hiperlink and then redirect the application playback head to a specific frame.
So, is this possible? I mean, can I use html links in TextFields in order to control the application navigation?
Hiperlink Asigned Dinamically To A Text Field
Hello,
sorry for bothering again, but this is getting me crazy
I have made a script that loads external data and arranges it on several textfields that generates dinamically, everything works ok till i want to add an hiperlink to a textfield (when the script does it that text field is not visible or no text is draw). The script adds a line cotaininig something like this:
address=www.hello.com;
textvar=someString + "<A href=http://"+address+">"+"<U>"+address + "</U> </A>"
when it detects "www".
(is not always the same string since it changes depending on the address detected but always starts with "www")
I´m sure the problem is that HTML tag <A href=http://.... > </A>
note:
when I check the render as HTML the text containing that string is not draw but if not it´s draw as normal text.
How can I do to add this hiperlink dinamically?
I would really appreciate any suggestions.