From: Leif W <war...@us...> - 2003-08-05 14:59:08
|
Hello, I tried this example unmodified on DynAPI 3 beta 1 and it seemed to work ok, unless the functionality I observed doesn't match the functionality you expect. I'm not sure what to expect, that's why I say it seems to work. ;-) What I did was make three icon files, a red block with a white 1 (eicon1.gif), and a green block with a white 2 (eicon2.gif) and a blue block with a white 3 (eicon3.gif). What I observerd was that both behave exactly the same. Maybe this is the error? Both start with the red-1, mouseover to the blue-3, and click to the green-2. From the code, myImage2 should mouseover to green-2, and click to blue-3. I'm not too familiar with the Image functions, but I can reproduce the error so maybe it's a bug in DynAPI 3 beta 1. Same thing happens in the updated CVS code, so it may be a new bug. Will have to look into this some more. Leif ----- Original Message ----- From: Kevin Breynck To: dyn...@li... Sent: Tuesday, August 05, 2003 9:08 AM Subject: [Dynapi-Help] Mouseover Bug? - 3.0.0 (Beta 1) - dynapi.functions.getimage.html Hi everyone, i have a problem with the example "Other Demonstrations" / "- Image rollovers" The shown example is very easy, but if i try to create a second image object with the same image path like the first image object, it doesn't work. I only changed the downsrc with the oversrc for the second image object but it doesn't work. Am i doing something wrong or is this a bug? And if it is a bug, how can i fix it? ============================================================ <html> <head> <title>DynAPI - Image Rollover</title> <script language="JavaScript" src="../src/dynapi.js"></script> <script language="Javascript"> dynapi.library.setPath('../src/'); dynapi.library.include('dynapi.functions.Image'); </script> <script language="Javascript"> var p = { oversrc:'images/eicon3.gif', downsrc:'images/eicon2.gif' } var p2 = { oversrc:'images/eicon2.gif', downsrc:'images/eicon3.gif' } var myImage = dynapi.functions.getImage('images/eicon1.gif',32,32,p); var myImage2 = dynapi.functions.getImage('images/eicon1.gif',32,32,p2); </script> </head> <body> Press move your mouse over the image below and click on it<br><br> <script> document.write(myImage.getHTML()); document.write(myImage2.getHTML()); </script> </body> </html> ============================================================ |