turn off the hyperlink in the text member when you place the LDM on top of it?

At 11:28 AM -0400 7/26/04, you wrote:
Situation:

Text member on stage with a hyperlink which opens an LDM with a hyperlink
text member.

Once the LDM is overtop of the stage text member, the stage's hyperlink
bleed's through the LDM (shows the hand cursor)AND the LDM hyperlink fails
to show the bloody cursor.

The relevant code:

on mouseWithin me

-- find if word pointed to is part of a link
-- get word number
tWord = pSprite.pointToWord(the mouseLoc)
-- Kick out if invalid number
if tWord < 1 then exit
-- get hyperlink
tLink = pSprite.member.word[ tWord ].hyperlink
-- Kick out if not a link
if tLink = "" then
-- Set to pointer
if pSprite.cursor <> 0 then
pSprite.cursor = 0
end if
exit
end if
-- Set to finger cursor
if pSprite.cursor <> 280 then
pSprite.cursor = 280
end if


end

My goal is to have both text members play nice and show the finger cursor
when over a valid hyperlink and not get confused as to which hyperlink has
focus. Note that the actual hyperlinks work just fine. It's the cursor's
that are not behaving.

In the LDM I've tried putting a dontpassevent in the background graphic for
mouseEnter, leave, within etc.

Does anyone have the mojo workaround in order to make hyperlinks work in
LDM's?

___________________________________
Geoffrey S. Baker
Programmer
Accelera
300 E. Lombard Street
Baltimore, MD 21202
__________________________________
[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>
tel:  443-451-3800
fax: 443-451-3810

CONFIDENTIALITY NOTICE: The information contained in this email message
(including any attachments) may be confidential, proprietary, copyrighted
and/or legally privileged, and is intended only for the named addressee(s).
If you are not the intended recipient, or the person responsible for
delivering email to the intended recipient, be advised that you have
received this email in error, and that any use, dissemination, forwarding,
printing or copying of this email is strictly prohibited. If you have
received this communication in error, please immediately notify the sender
and delete the original message in its entirety.
[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!]

[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!]

Reply via email to