|
|
I get a "Error! Skin Load!" popup when my onmouseover popup window loads..
Return to Recent Questions
Q:
Two questions. First I get a "Error! Skin Load!" popup when my onmouseover popup window loads.
I see references to "skin.js". Is this supposed to be generated?
Secondly.
I am being really dense. I would like to use Deluxe Popup Windows in
response to a mouse click on a picture. So far with deluxe Menu, I just put
a statement like this:
<script type="text/javascript" src="rvmonitor.js"></script>
where I wanted the menu to show up. The web page loads and the
Deluxe Menu displays.
I have managed to make the onmouseover popup window appear by using that code, the web
page loads and the popup loads (with the skin error).
I know how to get a larger picture from a smaller one like this:
<a href="../images/Tige/CabinetMod/Tige_CabinetMod04.JPG">
<img class="border0" src="../images/Tige/CabinetMod/Tige_CabinetMod04_small.JPG" alt="Gasketmount">></a>
I just don't know how to put the rvmonitor.js into the <a href...></a>
function. Could I have a simple example?
A:
See, to install Deluxe Popup Window you should call two .js files on
your page:
<head>
...
<script type="text/javascript" src="deluxe-popup-window.files/dpopupwindow.js"></script> //engine file
</head>
<body>
...
<script type="text/javascript" src="deluxe-popup-window.js"></script> //data file
...
</body>
Copy deluxe-popup-window.files folder and deluxe-popup-window.js file
into the same folder with your html page.
To open your window on mouse click you should do the following things:
<a title="Click to open the window" href="javascript:;"
onclick="deluxePopupWindow.open('win', '<img class=\'border0\'
src=\'../images/Tige/CabinetMod/Tige_CabinetMod04.JPG\' alt=\'Gasket
mount\'>', 'Full Image', 'width=180,height=270,resizable,scrollbars=no,middle,right,fade-effect', 'windowsvista_graphite')"><img
mount\'>class="border0" src="../images/Tige/CabinetMod/Tige_CabinetMod04_small.JPG" alt="Gasket mount"></a>.
Return to Recent Questions
Related:
- Feb 16, 2007 - I get a window with an error message "dmObjectsCheck is undefined" in menu scripts
- June 28, 2007 - When I roll my mouse over my cool java menu, it appears halfway down the page
- July 03, 2007 - I've downloaded the trail version of java menu source, and I'm getting script error
- Jan 21, 2009 - I�m getting the error "dmObjectsCheck is undefined" in my javascript popup menu.
- April 22, 2009 - I downloaded the new version of dhtml menu source code copied the files over to my folder and now I get an error.
- Sep 07, 2009 - When I converted javascript menu codes to a popup window, dm_ext_changeItem does not seem to work.
- Oct 03, 2009 - How can we prevent the pre-loading of window open javascript so that the pop-ups only load onclick?
- Oct 04, 2009 - When I put main as target in the simple javascript drop down menu, it loads as a new windows..
- Oct 18, 2009 - I am still requiring a long delay to keep the pop-up window open from loading as the page loads.
- Oct 31, 2009 - ..when the subframe has not finished loading a javascript error occurs and then the javascript vertical menu breaks..
- Dec 03, 2009 - I would like to open some javascript menu drop items in a JavaScript popup window of a certain size.
|