Hey Ray, I agree with adding the map/area support.
> I'm not totally conversant on the div tags yet, but I'm wondering about the > 'popup' graphic. Is it actually a pop up window as on the sample site, or > can it be done with an overlapping absolute position div (positioned by > mouse movement) with a graphic in it? Or is a pop up window and a graphic > in an absolute div one and the same thing? Yes, you can create a popup window using an absolutely positioned (and to be sure you could set a z-index that makes it hover on top of the rest, but that is not always needed it seems). > If I can get a graphic to change somewhere on the page as a mouse moves over > a master graphic, that will satisfy my initial requirements. If it takes > more effort to get a graphic to follow the mouse, I'll work my way up to > that. I think it is only slightly harder. You have to be careful that you also listen for mouse moves when the mouse pointer is on top of the popup, and not only when the mouse is on top of the chart. And it will require a little bit more JavaScript. > I gather the overall technique is different from the one used for the drag > and drop mechanism, where you drag a graphic (which in your example is a > blue or red pill) and drop it somewhere. Is that dragged graphic a pop up > window or a moving div? I could look at the code, but it was easier to > formulate the question until I have a free moment to examine the code. You're right, it is entirely the same (an absolutely positioned div). You can see the JavaScript code in src/web/skeletons/Wt.js, function dragDrag(). Regards, koen ------------------------------------------------------------------------- Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW! Studies have shown that voting for your favorite open source project, along with a healthy diet, reduces your potential for chronic lameness and boredom. Vote Now at http://www.sourceforge.net/community/cca08 _______________________________________________ witty-interest mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/witty-interest
