HighDots Forums  

pointed finger when you mouse over

Macromedia Dreamweaver Macromedia Dreamweaver Discussions (macromedia.dreamweaver)


Discuss pointed finger when you mouse over in the Macromedia Dreamweaver forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
JFK
 
Posts: n/a

Default pointed finger when you mouse over - 11-29-2004 , 10:40 AM






I have set up a open new browser window behavior which works fine, but what
I would like is to have the link that opens the new browser window appear
like the standard pointed finger when you mouse over it, now it just an
arrow so it is hard to tell it is a link. How do I do this?



Reply With Quote
  #2  
Old   
Pablo
 
Posts: n/a

Default Re: pointed finger when you mouse over - 11-29-2004 , 10:55 AM






Hi

Use:

javascript:;

As the link, in other words put javascript:; as the link in the properties
panel.

Pablo


"JFK" <123 (AT) microsoft (DOT) com> a écrit dans le message de news:
coffsf$ekc$1 (AT) forums (DOT) macromedia.com...
Quote:
I have set up a open new browser window behavior which works fine, but
what
I would like is to have the link that opens the new browser window appear
like the standard pointed finger when you mouse over it, now it just an
arrow so it is hard to tell it is a link. How do I do this?





Reply With Quote
  #3  
Old   
darrel
 
Posts: n/a

Default Re: pointed finger when you mouse over - 11-29-2004 , 11:02 AM



Quote:
As the link, in other words put javascript:; as the link in the
properties
panel.
No. As the link (href), put in the actual URL of the page you are opening
with the javascript function put in the onClick attribute.

That way your page will still be accessible to anyone not using javascript
or anyone that prefers to manage their own browser windows.

-Darrel




Reply With Quote
  #4  
Old   
JFK
 
Posts: n/a

Default Re: pointed finger when you mouse over - 11-29-2004 , 11:07 AM



here is the page http://www.dinette-world.com/galleries/dinettes1.htm

click any image... see how it stays an arrow


"Murray *TMM*" <forums (AT) HAHAgreat-web-sights (DOT) com> wrote

Quote:
This usually means that you have not applied the link properly - can you
show me the code?

--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================

"JFK" <123 (AT) microsoft (DOT) com> wrote in message
news:coffsf$ekc$1 (AT) forums (DOT) macromedia.com...
I have set up a open new browser window behavior which works fine, but
what
I would like is to have the link that opens the new browser window
appear
like the standard pointed finger when you mouse over it, now it just an
arrow so it is hard to tell it is a link. How do I do this?







Reply With Quote
  #5  
Old   
darrel
 
Posts: n/a

Default Re: pointed finger when you mouse over - 11-29-2004 , 11:16 AM



Quote:
click any image... see how it stays an arrow
None of those are links, as they should be. Right now, this only works IF a
person has javascript.

The best fix for this is to take this:

<img onClick="MM_openBrWindow('../images/dinettepics/dinette1large.jpg',
'dinette1',
'location=yes,status=yes,menubar=yes,scrollbars=ye s,resizable=yes,width=400,
height=350')">

and change it to this:

<a href="../images/dinettepics/dinette1large.jpg"
onClick="MM_openBrWindow('../images/dinettepics/dinette1large.jpg',
'dinette1',
'location=yes,status=yes,menubar=yes,scrollbars=ye s,resizable=yes,width=400,
height=350')">
<img>
</a>

-Darrel




Reply With Quote
  #6  
Old   
Murray *TMM*
 
Posts: n/a

Default Re: pointed finger when you mouse over - 11-29-2004 , 11:31 AM



That's the right way to do it.

--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================

"darrel" <notreal (AT) hotmail (DOT) com> wrote

Quote:
click any image... see how it stays an arrow

None of those are links, as they should be. Right now, this only works IF
a
person has javascript.

The best fix for this is to take this:

img onClick="MM_openBrWindow('../images/dinettepics/dinette1large.jpg',
'dinette1',
'location=yes,status=yes,menubar=yes,scrollbars=ye s,resizable=yes,width=400,
height=350')"

and change it to this:

a href="../images/dinettepics/dinette1large.jpg"
onClick="MM_openBrWindow('../images/dinettepics/dinette1large.jpg',
'dinette1',
'location=yes,status=yes,menubar=yes,scrollbars=ye s,resizable=yes,width=400,
height=350')"
img
/a

-Darrel





Reply With Quote
  #7  
Old   
Gary White
 
Posts: n/a

Default Re: pointed finger when you mouse over - 11-29-2004 , 12:19 PM



darrel wrote:

Quote:
and change it to this:

a href="../images/dinettepics/dinette1large.jpg"
onClick="MM_openBrWindow('../images/dinettepics/dinette1large.jpg',
'dinette1',
'location=yes,status=yes,menubar=yes,scrollbars=ye s,resizable=yes,width=400,
height=350')"
img
/a
Not exactly. :-) That will result in the image being opened in both the
original window AND the popup window. Try it this way:


<a href="../images/dinettepics/dinette1large.jpg" target="_blank"
onClick="MM_openBrWindow('../images/dinettepics/dinette1large.jpg',
'dinette1',
'location=yes,status=yes,menubar=yes,scrollbars=ye s,resizable=yes,width=400,
height=350');return false">
<img>
</a>


Gary


Reply With Quote
  #8  
Old   
darrel
 
Posts: n/a

Default Re: pointed finger when you mouse over - 11-29-2004 , 12:32 PM



Quote:
Not exactly. :-) That will result in the image being opened in both the
original window AND the popup window.
Aw crap. Good catch...you need the 'return false' in there as you have
shown.

I suppose you could put the target="_blank" in there too, but again, I
prefer to let the end-user decide that action.

-Darrel




Reply With Quote
  #9  
Old   
Gary White
 
Posts: n/a

Default Re: pointed finger when you mouse over - 11-29-2004 , 03:07 PM



darrel wrote:

Quote:
Aw crap. Good catch...you need the 'return false' in there as you have
shown.
;-)


Quote:
I suppose you could put the target="_blank" in there too, but again, I
prefer to let the end-user decide that action.
Since, if the user has JS enabled, you've already taken that choice
away, I assumed you'd want to keep it away. ;-)


Gary


Reply With Quote
  #10  
Old   
darrel
 
Posts: n/a

Default Re: pointed finger when you mouse over - 11-29-2004 , 05:39 PM



Quote:
Since, if the user has JS enabled, you've already taken that choice
away, I assumed you'd want to keep it away. ;-)
Actually, no, with the RETURN FALSE, I can now choose to drag the link to a
new window, or open in a new tab without the pop-up launching.

-Darrel




Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.