i’m hoping that there’s an wasy way around this…i’ve been trying to link my dynamic text to an email link for anyone visitng my website to email me. CAN ANYONE PLEASE HELP!!! THANK YOU!!
getURL("mailto:you@yourhost.com");
Not sure, never tried that before …
thats exactly it, i use it on my website all the time.
You can html enable the TextField and simply use <A></A> tags:
[AS]this.createTextField(“mailto_txt”, 0, 0, 0, 0, 0);
mailto_txt.autoSize = true;
mailto_txt.html = true;
mailto_txt.htmlText = “<A href=‘mailto:me@me.com’>me@me.com</A>”[/AS]
kax, you need a width at least:
this.createTextField("mailto_txt", 0, 0, 100, 0);
mailto_txt.autosize = true;
mailto_txt.html = true;
mailto_txt.htmlText = "...";
No, you don’t. :sigh:
[AS]mailto_txt.autoSize = true;[/AS]
i know, just tried it, it comes out as a line otherwise.