From: Michael H. <mi...@m2...> - 2004-05-24 16:13:00
|
Can anyone help me with a bug in OSX Safari? Drag events do not work if you create a layer in opposite frames. see sample .. http://66.80.162.29:8543/safari/testframe30.html |
From: Kevin B. <Kev...@bb...> - 2004-05-25 09:21:19
|
Hello, when the user rolls over an image i want to display a tool tip. I use the attributes ALT and TITLE inside of an image tag. The Problem: When i include the dynapi library "dynapi.api" [... dynapi.library.include('dynapi.api'); ...] the tool tip does not appear in Mozilla Clients (Firefox, Mozilla 1.5, 1.6 etc. on W2k) CODE-EXAMPLE: <html> <head> <title>Tooltip</title> <script type="text/javascript" src="/js/_dynapi/dynapi.js"></script> <script type="text/javascript"> dynapi.library.setPath('/js/_dynapi/'); dynapi.library.include('dynapi.api'); </script> <style type="text/css"> #testElementLayer {position:absolute; left:100px; top:10px; z-index:10;} </style> </head> <body> <div id="testElementLayer" name="testElementLayer"> <img src="img/image.gif" border="0" name="tafIcon" id="tafIcon" alt="Lorem Ipsum" title="Lorem Ipsum" /> </div> </body> </html> Can someone help me? And one more question: Is the dynapy 3.x project still alive? I ask because the latest snapshot is "dynapi3x_2003_11_03.zip 03-Nov-2003 11:11" :( Best regards, Kevin |
From: Leif W <war...@us...> - 2004-05-25 10:52:11
|
Not sure about the first question. Have you triedthe CVS version? I didn't know of the technique you're using. :o But, would any other alternative be possible, like actually creating a "floating" layer, and making it visible on mouse overs? The advantage would be it works over an image or over another layer (I think). Haven't tried this... Maybe be other quirks or disadvantages I am not aware of. About the second, I'm still alive, but was only ever a minor contributor. I plan on doing some more work to make the IO Element stuff work better with Perl & PHP. Eventually. I just can't nail down a time frame. Not sure where the main contributors have gone. Don't want to stress them out or anything. Hope they're all alive and well at least. But a heads-up for the users would be nice if you are still with the project, silently working on things, or have disgarded the project for another API or your own custom one, had major surgery (like a lobotomy), etc.. :-D Leif ----- Original Message ----- From: Kevin Breynck To: dyn...@li... Sent: Tuesday, May 25, 2004 5:21 AM Subject: [Dynapi-Help] dynAPI 3.x Beta - tool tip BUG in Mozilla? Hello, when the user rolls over an image i want to display a tool tip. I use the attributes ALT and TITLE inside of an image tag. The Problem: When i include the dynapi library "dynapi.api" [... dynapi.library.include('dynapi.api'); ...] the tool tip does not appear in Mozilla Clients (Firefox, Mozilla 1.5, 1.6 etc. on W2k) CODE-EXAMPLE: <html> <head> <title>Tooltip</title> <script type="text/javascript" src="/js/_dynapi/dynapi.js"></script> <script type="text/javascript"> dynapi.library.setPath('/js/_dynapi/'); dynapi.library.include('dynapi.api'); </script> <style type="text/css"> #testElementLayer {position:absolute; left:100px; top:10px; z-index:10;} </style> </head> <body> <div id="testElementLayer" name="testElementLayer"> <img src="img/image.gif" border="0" name="tafIcon" id="tafIcon" alt="Lorem Ipsum" title="Lorem Ipsum" /> </div> </body> </html> Can someone help me? And one more question: Is the dynapy 3.x project still alive? I ask because the latest snapshot is "dynapi3x_2003_11_03.zip 03-Nov-2003 11:11" :( Best regards, Kevin |
From: Adeola A. <awo...@ya...> - 2004-05-26 04:36:38
|
I seemed to have the same problem a while ago when developing a site=20 using dynapi 2.5.7 but I just ended up using overlib for the tooltips=20 instead. but I guess I could have used the method Leif mentioned by=20 creating a layer and having that displayed onmouseover and hidden=20 onmouseout. Adeola. On 25 May 2004, at 10:21, Kevin Breynck wrote: > > Hello, > > when the user rolls over an image i want to display a tool tip. > I use the attributes ALT and TITLE inside of an image tag. > > The Problem: > When i include the dynapi library "dynapi.api" [...=20 > dynapi.library.include('dynapi.api'); ...] the tool tip does not=20 > appear in Mozilla Clients (Firefox, Mozilla 1.5, 1.6 etc. on W2k) > > CODE-EXAMPLE: > > <html> > > <head> > > =A0 <title>Tooltip</title> > > =A0 <script type=3D"text/javascript" = src=3D"/js/_dynapi/dynapi.js"></script> > =A0 <script type=3D"text/javascript"> > =A0 =A0 dynapi.library.setPath('/js/_dynapi/'); > =A0 =A0 dynapi.library.include('dynapi.api'); > =A0 </script> > > =A0 <style type=3D"text/css"> > =A0 =A0 #testElementLayer {position:absolute; left:100px; top:10px;=20 > z-index:10;} > =A0 </style> > > </head> > > <body> > > <div id=3D"testElementLayer" name=3D"testElementLayer"> > =A0 <img src=3D"img/image.gif" border=3D"0" name=3D"tafIcon" = id=3D"tafIcon"=20 > alt=3D"Lorem Ipsum" title=3D"Lorem Ipsum" /> > </div> > > </body> > > </html> > > Can someone help me? > > And one more question: > Is the dynapy 3.x project still alive? I ask because the latest=20 > snapshot is "dynapi3x_2003_11_03.zip 03-Nov-2003 11:11" :( > > > Best regards, > Kevin --=20 "Pride only breeds quarrels, but wisdom is found in those who take=20 advice" (Proverbs 13:10). |
From: Doug M. <do...@cr...> - 2004-05-26 14:23:02
|
--- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.690 / Virus Database: 451 - Release Date: 5/22/2004 |
From: Kevin B. <Kev...@bb...> - 2004-05-28 09:24:09
|
Hello, how to simulate a tool tip is not the problem. I need system tool tips because we use multi contents like flash, movies=20 and DHTML mixed on one site. I need all the features of a system tooltip. For example: A layer is not=20 able to be displayed in front of a flash application. A title or alt=20 attribute is much simpler. It would be nice if this bug is getting fixed. :\ Thanks Kevin Adeola Awoyemi <awo...@ya...>=20 Sent by: dyn...@li... 26.05.2004 06:35 Please respond to dyn...@li... To dyn...@li... cc Subject Re: [Dynapi-Help] dynAPI 3.x Beta - tool tip BUG in Mozilla? I seemed to have the same problem a while ago when developing a site=20 using dynapi 2.5.7 but I just ended up using overlib for the tooltips=20 instead. but I guess I could have used the method Leif mentioned by=20 creating a layer and having that displayed onmouseover and hidden=20 onmouseout. Adeola. On 25 May 2004, at 10:21, Kevin Breynck wrote: > > Hello, > > when the user rolls over an image i want to display a tool tip. > I use the attributes ALT and TITLE inside of an image tag. > > The Problem: > When i include the dynapi library "dynapi.api" [...=20 > dynapi.library.include('dynapi.api'); ...] the tool tip does not=20 > appear in Mozilla Clients (Firefox, Mozilla 1.5, 1.6 etc. on W2k) > > CODE-EXAMPLE: > > <html> > > <head> > > <title>Tooltip</title> > > <script type=3D"text/javascript" src=3D"/js/=5Fdynapi/dynapi.js"></scri= pt> > <script type=3D"text/javascript"> > dynapi.library.setPath('/js/=5Fdynapi/'); > dynapi.library.include('dynapi.api'); > </script> > > <style type=3D"text/css"> > #testElementLayer {position:absolute; left:100px; top:10px;=20 > z-index:10;} > </style> > > </head> > > <body> > > <div id=3D"testElementLayer" name=3D"testElementLayer"> > <img src=3D"img/image.gif" border=3D"0" name=3D"tafIcon" id=3D"tafIcon"= =20 > alt=3D"Lorem Ipsum" title=3D"Lorem Ipsum" /> > </div> > > </body> > > </html> > > Can someone help me? > > And one more question: > Is the dynapy 3.x project still alive? I ask because the latest=20 > snapshot is "dynapi3x=5F2003=5F11=5F03.zip 03-Nov-2003 11:11" :( > > > Best regards, > Kevin --=20 "Pride only breeds quarrels, but wisdom is found in those who take=20 advice" (Proverbs 13:10). ------------------------------------------------------- This SF.Net email is sponsored by: Oracle 10g Get certified on the hottest thing ever to hit the market... Oracle 10g.=20 Take an Oracle 10g class now, and we'll give you the exam FREE. http://ads.osdn.com/?ad=5Fid149&alloc=5Fid=8166&op=3Dclick =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F Dynapi-Help mailing list Dyn...@li... https://lists.sourceforge.net/lists/listinfo/dynapi-help |