Advanced Layer Popup Support Product Page

This topic was archived

Mouse Over Popups

Asked 26 Dec 2007 19:50:54
1
has this question
26 Dec 2007 19:50:54 Meredith Davis posted:
Hi,
I am very interested in purchasing this extension however I had a question.
I need to know if Advanced Layer Popup can do On Mouseover On Mouseout.
I would like to place little information links on my webpages for certain products which when moused over would show a layer.
It also needs to hide the layer when the links are moused out. I was able to do this myself in dreamweaver8 but then I run into lining up for all browsers. If I do the layer inline, the layer is not close enough for the user to move his mouse from the text link to the layer without the layer closing. If you move fast enough you can do it. Its that small 1 or 2 px jump it just can make.
I then have the layer set the same with the on mouseover to stay open and on mouseout to close.
I also can't set it up so that I can do it more than one time in the same page unless I rename everything and do css for each.
I was hoping your program could be very useful for me, save me time and keep me from pulling my hair out.
Will I be able to get the kind of layer popups I have been trying to do?

Replies

Replied 28 Dec 2007 09:40:35
28 Dec 2007 09:40:35 Kiril Iliev replied:
Hi Meredith,

Yes, Advanced Layer Popup is able to open and close images onMouseOver and onMouseOut.

For more information please check the following code:
<pre id=code><font face=courier size=2 id=code>
// Preload the images
if (document.images) {
img = new Array();
img[0] = new Image;
img[0].src = "./AboutUs.jpg"
img[1] = new Image;
img[1].src = "./AboutUsRO.jpg"
}

// When rolled over, load the rollover image
function rollover(imgID) {
if (document.images) {
document.images[imgID].src = "./" + imgID + "RO.jpg";
}
}

// When mouse leaves image, revert to normal
function rollout(imgID) {
if (document.images) {
document.images[imgID].src = "./" + imgID + ".jpg";
}
}
</font id=code></pre id=code>

For more information, please check the following topic: www.dmxzone.com/forum/topic.asp?topic_id=39027

Regards,

DMX Zones Support Team
Replied 03 Jan 2008 01:01:39
03 Jan 2008 01:01:39 Meredith Davis replied:
Thank you so much Kiril <img src=../images/dmxzone/forum/icon_smile.gif border=0 align=middle>
Replied 31 Oct 2008 14:20:12
31 Oct 2008 14:20:12 Diane Sinicrope replied:
Hi this is exactly what I want to do, however, I don't know where to put the code that you proposed. We have a page of logos and the client a little info popup on mouseover that will disappear on mouseout.

You can view the page at www.ad-mkt.com/timmaron/work.html. Right now, the Arbitron logo has your Advanced Layer Popup working. Here is the code that currently appears on the image for the mouseclick popup. Can you tell me change it to make the mouseover work?

&lt;img src="logos/arbitron.jpg" width="100" height="30" style="cursor: pointer" onmouseover="dmxAdvLayerPopup('','popuplogos/arbitron.gif','Arbitron','','iPod','center','center',216,144,0,true,false,false,0,'','',0,false,'','',0,false,'',1,5,true,false,'#FFFFFF');return document.MM_returnValue" onmouseout="close_window()" /&gt;&lt;/td&gt;

Thank you very much for your help!


Replied 31 Oct 2008 15:26:31
31 Oct 2008 15:26:31 Kiril Iliev replied:
Hi Diane,

The feature that you are asking is better achieved with Advanced Tooltips extension that we have released this year. <img src=../images/dmxzone/forum/icon_smile.gif border=0 align=middle>

Please check the following online demo: dmxzone.com/demo/tooltips/demo_space/demospace.html

In addition, you can read more about the extension here: dmxzone.com/ShowDetail.asp?NewsId=15823

I took the time to prepare a very simple page with your images that could be found here: dmxzone.com/demo/tooltips/tampabay/tampabay.html

Keep in mind that you are still able to customize the Tooltip border, and style in order to make it brand aligned with your site/web application.

Should you have further questions, please do not hesitate to ask me.

Regards,


==================
DMX Zones
Support Team
==================
Replied 31 Oct 2008 15:34:02
31 Oct 2008 15:34:02 Diane Sinicrope replied:
Thanks, I will look into this. I really appreciate your help!
<img src=../images/dmxzone/forum/icon_smile.gif border=0 align=middle>

Reply to this topic