Douglas,
If this is a true hyperlink in the HTML of the text member, you can just
use the "hyperLinkClicked" event. This is a behavior straight from the
Director help for on hyperLinkClicked:
This behavior shows a link examining the hyperlink that was clicked,
jump to a URL if needed, then output the text of the link itself to the
message window:
property spriteNum
on hyperlinkClicked me, data, range
if data starts "http://" then
goToNetPage(data)
end if
currentMember = sprite(spriteNum).member
anchorString = currentMember.char[range[1]..range[2]]
put "The hyperlink on"&&anchorString&&"was just clicked."
end
HTH
Brian Romanko
Lead Developer - Neo/SCI Corporation
Member - Greater Rochester Macromedia User Group
> -----Original Message-----
> I have a news section of text which goes on
>
> blah blah blah, see it here:
>
> www.blahblahblah.com
> can I link the www.blahblahblah.com to get the url? would like it to
open > new browser window, but target="self" is fine too....
[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/lingo-l.cgi To post messages to the list, email
[EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for
learning and helping with programming Lingo. Thanks!]