You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(83) |
Nov
(319) |
Dec
(441) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(617) |
Feb
(784) |
Mar
(426) |
Apr
(363) |
May
(489) |
Jun
(396) |
Jul
(405) |
Aug
(146) |
Sep
(97) |
Oct
(146) |
Nov
(348) |
Dec
(99) |
2002 |
Jan
(69) |
Feb
(92) |
Mar
(58) |
Apr
(33) |
May
(29) |
Jun
(45) |
Jul
(72) |
Aug
(71) |
Sep
(47) |
Oct
(19) |
Nov
(48) |
Dec
(55) |
2003 |
Jan
(23) |
Feb
(73) |
Mar
(42) |
Apr
(52) |
May
(64) |
Jun
(155) |
Jul
(169) |
Aug
(103) |
Sep
(113) |
Oct
(118) |
Nov
(46) |
Dec
(30) |
2004 |
Jan
(19) |
Feb
(24) |
Mar
(40) |
Apr
(13) |
May
(35) |
Jun
(1) |
Jul
(23) |
Aug
(3) |
Sep
(31) |
Oct
(31) |
Nov
(26) |
Dec
|
2005 |
Jan
(5) |
Feb
(4) |
Mar
(3) |
Apr
(2) |
May
(2) |
Jun
|
Jul
|
Aug
(23) |
Sep
(9) |
Oct
(5) |
Nov
(2) |
Dec
(1) |
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(3) |
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Raymond I. <xw...@ya...> - 2003-08-08 19:03:34
|
The only thing you need to be carefull about is the pareent-child relationship of inline layers. See also: examples/dynapi.api.ext.inline.html examples/dynapi.api.ext.inline-widget.html -- Raymond Irving --- Kevin Breynck <Kev...@bb...> wrote: > Hello again, > > is it possible to manipulate layers and images > (resp. a standard nonDynApi > HTML Site ;-) , that are written in a conventionally > way? > like this... > > . > .. > ... > <style> > #layer1 {position:absolute; left:176px; top:19px; > width:278px; > height:94px; z-index:3; visibility:visible; > clip:rect(0px 278px 94px > 0px);} > </style> > > <div id="layer1" name="layer1"><img src="img1.gif" > name="img1" id="img1" > width="50" height="30" /></div> > ... > .. > . > > The "dynapi.api.ext.DynLayerInline" extension is > there to handle this, i > guess. > > But are there any restrictions or traps i need to > care about? > Or is it possible to manipulate these elements like > the DynLayer or > "DynImages" for example? > > > Thanks for feedback > -k- __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |
From: Raymond I. <xw...@ya...> - 2003-08-08 18:58:46
|
You can use two layers. One to store the first image and the second for storing the second image. The next step is to listen for onclick event on layer2 -- Raymond Irving --- Kevin Breynck <Kev...@bb...> wrote: > Hi everyone, > > i have a little question. > I want to highlight an Image (Img1) by clicking on > an other one (Img2). > But i am not able to find the right syntax. :-\ > > Can someone help me out please? > > > Thanks > -k- __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |
From: Kevin B. <Kev...@bb...> - 2003-08-08 15:21:59
|
Hello again, is it possible to manipulate layers and images (resp. a standard nonDynApi HTML Site ;-) , that are written in a conventionally way? like this... . .. ... <style> #layer1 {position:absolute; left:176px; top:19px; width:278px; height:94px; z-index:3; visibility:visible; clip:rect(0px 278px 94px 0px);} </style> <div id="layer1" name="layer1"><img src="img1.gif" name="img1" id="img1" width="50" height="30" /></div> ... .. . The "dynapi.api.ext.DynLayerInline" extension is there to handle this, i guess. But are there any restrictions or traps i need to care about? Or is it possible to manipulate these elements like the DynLayer or "DynImages" for example? Thanks for feedback -k- |
From: Kevin B. <Kev...@bb...> - 2003-08-08 14:56:10
|
Hi everyone, i have a little question. I want to highlight an Image (Img1) by clicking on an other one (Img2). But i am not able to find the right syntax. :-\ Can someone help me out please? Thanks -k- |
From: Daniel T. <de...@ti...> - 2003-08-08 14:48:08
|
Hi Jesse! I have made it like this, 'nav(\'/default.ns?strItemID=index\')' and in this case you should be able to add more arguments. /Daniel -----Original Message----- From: dyn...@li... [mailto:dyn...@li...] On Behalf Of Jesse Vitrone Sent: den 8 augusti 2003 16:00 To: dynapi help Subject: [Dynapi-Help] yet another menu question I love the DynAPI menus, so far, everything is working great.....but.... I have something like this: mbar.addItem(null, 'Save', 'save', savePage); And that works fine, but I'd like to have multiple save menu items, all calling the same method, but with different arguments. Is there a way to pass args to that savePage callback? Doing something like this: mbar.addItem(null, 'Save', 'save', savePage(arg1, arg2) ); Just results in savePage being call right then, when the menu is being created. Is it possible to pass params, or do I need a different function for each menu item? Thanks, Jesse ------------------------------------------------------- This SF.Net email sponsored by: Free pre-built ASP.NET sites including Data Reports, E-commerce, Portals, and Forums are available now. Download today and enter to win an XBOX or Visual Studio .NET. http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01 /01 _______________________________________________ Dynapi-Help mailing list Dyn...@li... https://lists.sourceforge.net/lists/listinfo/dynapi-help |
From: Jesse V. <je...@6t...> - 2003-08-08 14:43:13
|
Ahh...I was thinking of trying that, and then thought....no, that'll never work! I should've tried it before posting! Thanks Raymond. Jesse Raymond Irving wrote: >Hi Jesse, > >The trick is to pass you function to the callback as a >string: > >mbar.addItem(null, 'Save', 'save', >'savePage(arg1,arg2)'); > >That's it! > >-- >Raymond Irving > > >--- Jesse Vitrone <je...@6t...> wrote: > > >>I love the DynAPI menus, so far, everything is >>working great.....but.... >> >>I have something like this: >> >> mbar.addItem(null, 'Save', 'save', savePage); >> >>And that works fine, but I'd like to have multiple >>save menu items, all >>calling the same method, but with different >>arguments. Is there a way >>to pass args to that savePage callback? Doing >>something like this: >> >> mbar.addItem(null, 'Save', 'save', >>savePage(arg1, arg2) ); >> >>Just results in savePage being call right then, when >>the menu is being >>created. >> >>Is it possible to pass params, or do I need a >>different function for >>each menu item? >> >>Thanks, >> Jesse >> >> >> >> >> >> >> >> >------------------------------------------------------- > > >>This SF.Net email sponsored by: Free pre-built >>ASP.NET sites including >>Data Reports, E-commerce, Portals, and Forums are >>available now. >>Download today and enter to win an XBOX or Visual >>Studio .NET. >> >> >> >http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > > >>_______________________________________________ >>Dynapi-Help mailing list >>Dyn...@li... >> >> >> >https://lists.sourceforge.net/lists/listinfo/dynapi-help > > >__________________________________ >Do you Yahoo!? >Yahoo! SiteBuilder - Free, easy-to-use web site design software >http://sitebuilder.yahoo.com > > >------------------------------------------------------- >This SF.Net email sponsored by: Free pre-built ASP.NET sites including >Data Reports, E-commerce, Portals, and Forums are available now. >Download today and enter to win an XBOX or Visual Studio .NET. >http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 >_______________________________________________ >Dynapi-Help mailing list >Dyn...@li... >https://lists.sourceforge.net/lists/listinfo/dynapi-help > > |
From: Raymond I. <xw...@ya...> - 2003-08-08 14:05:18
|
Hi Jesse, The trick is to pass you function to the callback as a string: mbar.addItem(null, 'Save', 'save', 'savePage(arg1,arg2)'); That's it! -- Raymond Irving --- Jesse Vitrone <je...@6t...> wrote: > I love the DynAPI menus, so far, everything is > working great.....but.... > > I have something like this: > > mbar.addItem(null, 'Save', 'save', savePage); > > And that works fine, but I'd like to have multiple > save menu items, all > calling the same method, but with different > arguments. Is there a way > to pass args to that savePage callback? Doing > something like this: > > mbar.addItem(null, 'Save', 'save', > savePage(arg1, arg2) ); > > Just results in savePage being call right then, when > the menu is being > created. > > Is it possible to pass params, or do I need a > different function for > each menu item? > > Thanks, > Jesse > > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built > ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are > available now. > Download today and enter to win an XBOX or Visual > Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |
From: Jesse V. <je...@6t...> - 2003-08-08 13:59:50
|
I love the DynAPI menus, so far, everything is working great.....but.... I have something like this: mbar.addItem(null, 'Save', 'save', savePage); And that works fine, but I'd like to have multiple save menu items, all calling the same method, but with different arguments. Is there a way to pass args to that savePage callback? Doing something like this: mbar.addItem(null, 'Save', 'save', savePage(arg1, arg2) ); Just results in savePage being call right then, when the menu is being created. Is it possible to pass params, or do I need a different function for each menu item? Thanks, Jesse |
From: Daniel T. <de...@ti...> - 2003-08-08 09:54:06
|
Hi Kevin! I have made a scroll, and i am testing the last things on it right now and then we can see how it works out, but right now there is no scrollbars in dynAPI. Regards Daniel -----Original Message----- From: dyn...@li... [mailto:dyn...@li...] On Behalf Of Kevin Breynck Sent: den 8 augusti 2003 11:47 To: dyn...@li... Subject: [Dynapi-Help] 3.0.0 (Beta 1) - Scrollbars Hello everyone, is there already an example for a scrollbar in 3.0.0 (Beta 1)? -k- |
From: Kevin B. <Kev...@bb...> - 2003-08-08 09:46:59
|
Hello everyone, is there already an example for a scrollbar in 3.0.0 (Beta 1)? -k- |
From: Daniel T. <de...@ti...> - 2003-08-07 18:59:59
|
I think I missed this email while i was on vacation :/ However I can do whatever you need me to do, i am a ASP programmer in first case but can deal with graphics aswell. I am not very good on JS yet but planning to get better, and i dont understand DynAPI at 100% either... But you could place me wherever you wish either as a programmer or to help out with some other parts. Btw what is a content provider? Regards Daniel -----Original Message----- From: dyn...@li... [mailto:dyn...@li...] On Behalf Of Raymond Irving Sent: den 31 juli 2003 14:21 To: dyn...@li...; dyn...@li... Subject: [Dynapi-Help] Re: [Dynapi-Dev] The DynAPI Web Team Hi Everyone So far we have the following volunteers: 1) Project manager Joy Ride (Juhu) 2) Consept designer 3) Graphic designer Diane Tomlins 4) Programmer(s) Leif W C Kissinger 5) Content provider(s) We need more persons to help out with this part of the project. It doesn't matter how small or how great a role you can play. Your time and effort is well appreciated. Besides that it's just pure fun! We need to get this part of the project started as we're planning to have DynAPI 3.0 stable (or fully launched) by November. Are we in agreement here? -- Raymond Irving __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com ------------------------------------------------------- This SF.Net email sponsored by: Free pre-built ASP.NET sites including Data Reports, E-commerce, Portals, and Forums are available now. Download today and enter to win an XBOX or Visual Studio .NET. http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01 /01 _______________________________________________ Dynapi-Help mailing list Dyn...@li... https://lists.sourceforge.net/lists/listinfo/dynapi-help |
From: Raymond I. <xw...@ya...> - 2003-08-07 15:02:23
|
Hi, See the dynapi.gui.htmlmenu-startmenu.html example for how to change text colors. -- Raymond Irving --- Jonathan Patton <Jon...@ch...> wrote: > I have been working with the menu bar code and am > wondering how you change the text color of a menu > bar item. I've added a css attribute at the end of > the syntax named "menuBarText" which is : > > .menuBarText > { > FONT-SIZE: 10pt; > COLOR: white; > FONT-FAMILY: Arial > } > > > mbar.addItem("menuBarText",'Test > Item','test','goTo("test.htm")',20,0,"blue","green","menuBarText"); > > > However, the color of the font does not change. The > size changes with the stylesheet, but the color > remains the same. Is there some way to pass a > stylesheet reference to the menu bar for the entire > bar and all its subitems? How do you control the > color? > > > > > > > > -----Original Message----- > > From: Leif W [mailto:war...@us...] > > Sent: Wednesday, August 06, 2003 4:18 PM > > To: dyn...@li... > > Subject: Re: [Dynapi-Help] menu bar examples > > > > > > menu bar examplesHello, > > > > Can you tell us which version of the DynAPI you're > using, and > > which browser > > you're using? You might want to try the nightly > CVS snapshot > > of the DynAPI > > ( http://dynapi.sourceforge.net/snapshot/?N=D ). > Also, which > > example page > > isn't working. What are you trying to do (give us > a URL to a > > page or attach > > the HTML you're using). > > > > Leif > > > > ----- Original Message ----- > > From: Jonathan Patton > > To: dyn...@li... > > Sent: Wednesday, August 06, 2003 10:09 AM > > Subject: [Dynapi-Help] menu bar examples > > > > > > I'm looking for some examples of a horizontal drop > down menu > > bar using the > > dynapi. Do you all know of any good ones. I tried > the > > example on the site, > > but it did not work. > > Jonathan > > > > > > > > > > > ------------------------------------------------------- > > This SF.Net email sponsored by: Free pre-built > ASP.NET sites including > > Data Reports, E-commerce, Portals, and Forums are > available now. > > Download today and enter to win an XBOX or Visual > Studio .NET. > > > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet > > _072303_01/01 > > _______________________________________________ > > Dynapi-Help mailing list > > Dyn...@li... > > > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built > ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are > available now. > Download today and enter to win an XBOX or Visual > Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |
From: Raymond I. <xw...@ya...> - 2003-08-07 14:40:41
|
Hello Everyone, Please note the following changes/fixes to API [+] Add setItems() function to HTMLListBox [-] Fix HTMLMenu bug with submenus by setting submenus to -x and -y [-] Fix getImage() bug when using different params You can check out the lastest updates inside the cvs -- Raymond Irving __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |
From: Jonathan P. <Jon...@ch...> - 2003-08-07 14:39:58
|
I have been working with the menu bar code and am wondering how you = change the text color of a menu bar item. I've added a css attribute at = the end of the syntax named "menuBarText" which is :=20 .menuBarText { FONT-SIZE: 10pt; COLOR: white; FONT-FAMILY: Arial } mbar.addItem("menuBarText",'Test = Item','test','goTo("test.htm")',20,0,"blue","green","menuBarText"); However, the color of the font does not change. The size changes with = the stylesheet, but the color remains the same. Is there some way to = pass a stylesheet reference to the menu bar for the entire bar and all = its subitems? How do you control the color? > -----Original Message----- > From: Leif W [mailto:war...@us...] > Sent: Wednesday, August 06, 2003 4:18 PM > To: dyn...@li... > Subject: Re: [Dynapi-Help] menu bar examples >=20 >=20 > menu bar examplesHello, >=20 > Can you tell us which version of the DynAPI you're using, and=20 > which browser > you're using? You might want to try the nightly CVS snapshot=20 > of the DynAPI > ( http://dynapi.sourceforge.net/snapshot/?N=3DD ). Also, which=20 > example page > isn't working. What are you trying to do (give us a URL to a=20 > page or attach > the HTML you're using). >=20 > Leif >=20 > ----- Original Message -----=20 > From: Jonathan Patton > To: dyn...@li... > Sent: Wednesday, August 06, 2003 10:09 AM > Subject: [Dynapi-Help] menu bar examples >=20 >=20 > I'm looking for some examples of a horizontal drop down menu=20 > bar using the > dynapi. Do you all know of any good ones. I tried the=20 > example on the site, > but it did not work. > Jonathan >=20 >=20 >=20 >=20 > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet > _072303_01/01 > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help >=20 |
From: Jonathan P. <Jon...@ch...> - 2003-08-06 20:23:20
|
The nightly snapshot had just what I was looking for. Thanks,=20 > -----Original Message----- > From: Leif W [mailto:war...@us...] > Sent: Wednesday, August 06, 2003 4:18 PM > To: dyn...@li... > Subject: Re: [Dynapi-Help] menu bar examples >=20 >=20 > menu bar examplesHello, >=20 > Can you tell us which version of the DynAPI you're using, and=20 > which browser > you're using? You might want to try the nightly CVS snapshot=20 > of the DynAPI > ( http://dynapi.sourceforge.net/snapshot/?N=3DD ). Also, which=20 > example page > isn't working. What are you trying to do (give us a URL to a=20 > page or attach > the HTML you're using). >=20 > Leif >=20 > ----- Original Message -----=20 > From: Jonathan Patton > To: dyn...@li... > Sent: Wednesday, August 06, 2003 10:09 AM > Subject: [Dynapi-Help] menu bar examples >=20 >=20 > I'm looking for some examples of a horizontal drop down menu=20 > bar using the > dynapi. Do you all know of any good ones. I tried the=20 > example on the site, > but it did not work. > Jonathan >=20 >=20 >=20 >=20 > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet > _072303_01/01 > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help >=20 |
From: Leif W <war...@us...> - 2003-08-06 20:15:46
|
menu bar examplesHello, Can you tell us which version of the DynAPI you're using, and which browser you're using? You might want to try the nightly CVS snapshot of the DynAPI ( http://dynapi.sourceforge.net/snapshot/?N=D ). Also, which example page isn't working. What are you trying to do (give us a URL to a page or attach the HTML you're using). Leif ----- Original Message ----- From: Jonathan Patton To: dyn...@li... Sent: Wednesday, August 06, 2003 10:09 AM Subject: [Dynapi-Help] menu bar examples I'm looking for some examples of a horizontal drop down menu bar using the dynapi. Do you all know of any good ones. I tried the example on the site, but it did not work. Jonathan |
From: Dan W. <dy...@da...> - 2003-08-06 15:33:03
|
It might not be available from microsoft, but it is in the evolt.org Browser Archives: http://browsers.evolt.org/?ie/32bit/4.01_SP1 (warning... even on my broadband connection i get horrible speeds downloading) Dan Willemsen On Wed, 2003-08-06 at 09:51, Daniel Tiru wrote: > Hello! > > Is there anyone out there that have ie4 sp1a installed on some old > computer that can try out http://195.178.179.45 and see if they get a > error on line 318 in the menu, i have just ie4 on nt and ie4 sp1a is not > availible anymore it seams. > > Regards > Daniel > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help -- Dan Willemsen <dy...@da...> |
From: Daniel T. <de...@ti...> - 2003-08-06 14:51:28
|
Hello! Is there anyone out there that have ie4 sp1a installed on some old computer that can try out http://195.178.179.45 and see if they get a error on line 318 in the menu, i have just ie4 on nt and ie4 sp1a is not availible anymore it seams. Regards Daniel |
From: Jonathan P. <Jon...@ch...> - 2003-08-06 14:09:50
|
I'm looking for some examples of a horizontal drop down menu bar using = the dynapi. Do you all know of any good ones. I tried the example on = the site, but it did not work.=20 Jonathan |
From: Jesse V. <je...@6t...> - 2003-08-06 13:54:33
|
Raymond, Did you get a chance to look at the menu thing? If not, no hurry. Jesse Raymond Irving wrote: >Hi, > >Seems like this has something to do with the submenus. >Will look at it later > >-- >Raymond Irving >--- Jesse Vitrone <je...@6t...> wrote: > > >>Hmmm...in playing around, I found that as I roll >>over the menus, the >>extra white space on the bottom goes away, and the >>page is rendered as I >>would expect. I still don't know what's going on >>though. >> >>Jesse >> >>Jesse Vitrone wrote: >> >> >> >>>I think I'm using the menu wrong, but I'm not sure >>> >>> >>where. I think >> >> >>>it's a template thing. >>> >>>I made a very simple example: >>> >>>I want my page to have a table, with 2 tr's. >>>The first tr will just be a spacer, where menubar >>> >>> >>and progress bar >> >> >>>layers will be hardcoded into place. >>>The second tr I need to spread out over the rest >>> >>> >>of the page. >> >> >>>The table stuff looks fine, but when I add on the >>> >>> >>menu layer, I get a >> >> >>>white space on the bottom of the page, under my >>> >>> >>table, which is giving >> >> >>>me a scroll bar. >>> >>>This is only happenning on Mozilla, not IE. >>> >>>here's it with a menu, and a white space on the >>> >>> >>bottom: >> >> >>> http://6thgearsoftware.com/test/menuTest1.html >>> >>>here's it with no menu, and no white space. >>> http://6thgearsoftware.com/test/menuTest2.html >>> >>>The only code difference is that I'm not calling >>> >>> >>the method that >> >> >>>creates my menu. >>> >>>Any idea what's going on? Am I doing something >>> >>> >>wrong with the >> >> >>>templates? Is it a Mozilla rendering bug? >>> >>>Thanks, >>> Jesse >>> >>> >>> >>> >>> >>> >------------------------------------------------------- > > >>>This SF.Net email sponsored by: Free pre-built >>> >>> >>ASP.NET sites including >> >> >>>Data Reports, E-commerce, Portals, and Forums are >>> >>> >>available now. >> >> >>>Download today and enter to win an XBOX or Visual >>> >>> >>Studio .NET. >> >> >http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > > >>>_______________________________________________ >>>Dynapi-Help mailing list >>>Dyn...@li... >>> >>> >>> >https://lists.sourceforge.net/lists/listinfo/dynapi-help > > >> >> >> >> >> >------------------------------------------------------- > > >>This SF.Net email sponsored by: Free pre-built >>ASP.NET sites including >>Data Reports, E-commerce, Portals, and Forums are >>available now. >>Download today and enter to win an XBOX or Visual >>Studio .NET. >> >> >> >http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > > >>_______________________________________________ >>Dynapi-Help mailing list >>Dyn...@li... >> >> >> >https://lists.sourceforge.net/lists/listinfo/dynapi-help > > >__________________________________ >Do you Yahoo!? >Yahoo! SiteBuilder - Free, easy-to-use web site design software >http://sitebuilder.yahoo.com > > >------------------------------------------------------- >This SF.Net email sponsored by: Free pre-built ASP.NET sites including >Data Reports, E-commerce, Portals, and Forums are available now. >Download today and enter to win an XBOX or Visual Studio .NET. >http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 >_______________________________________________ >Dynapi-Help mailing list >Dyn...@li... >https://lists.sourceforge.net/lists/listinfo/dynapi-help > > |
From: Leif W <war...@us...> - 2003-08-05 16:11:26
|
That seems to do the trick and works in IE6 and Mozilla 1.4 on Win2k. Leif ----- Original Message ----- From: "Raymond Irving" <xw...@ya...> To: <dyn...@li...> Sent: Tuesday, August 05, 2003 11:57 AM Subject: Re: [Dynapi-Help] Mouseover Bug? - 3.0.0 (Beta 1) - dynapi.functions.getimage.html > Hi, > > Yes you are correct. I didn't see the problem at first > but after looking at the code that's when I realized > the error. > > Please see the attached file for a fix to this > problem. All should work now. > > Let me know if this works for you so I can then commit > to cvs. > > -- > Raymond Irving > > --- Kevin Breynck <Kev...@bb...> > wrote: > > Yes it all "seems" to work, but it doesn't. > > > > The problem: > > The parameters of the second imageobject are > > complete ignored. > > You can write into the parameter "p2" whatever you > > want. > > On mouseover, the second image uses the parameters > > ("p") of the first > > imageobject. > > > > -k- > > > > > > > > > > > > Raymond Irving <xw...@ya...> > > Sent by: dyn...@li... > > 05.08.2003 17:26 > > Please respond to dynapi-help > > > > > > To: dyn...@li... > > cc: > > Subject: Re: [Dynapi-Help] Mouseover > > Bug? - 3.0.0 (Beta 1) - > > dynapi.functions.getimage.html > > > > > > > > Well, I copied the code and all seems to work well. > > > > What browser and version are you using? > > Have you downloaded the lastest snapshot? > > > > PS. I'm unable to regenerate the errors. Please give > > more info. > > > > -- > > Raymond Irving > > > > --- Leif W <war...@us...> wrote: > > > 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 ----- > > > Wrom: NSKVFVWRKJVZC > > > 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> > > > > > > > > > ============================================================ > > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > > This SF.Net email sponsored by: Free pre-built > > > ASP.NET sites including > > > Data Reports, E-commerce, Portals, and Forums are > > > available now. > > > Download today and enter to win an XBOX or Visual > > > Studio .NET. > > > > > > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > > > _______________________________________________ > > > Dynapi-Help mailing list > > > Dyn...@li... > > > > > > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > > > > __________________________________ > > Do you Yahoo!? > > Yahoo! SiteBuilder - Free, easy-to-use web site > > design software > > http://sitebuilder.yahoo.com > > > > > > > ------------------------------------------------------- > > This SF.Net email sponsored by: Free pre-built > > ASP.NET sites including > > Data Reports, E-commerce, Portals, and Forums are > > available now. > > Download today and enter to win an XBOX or Visual > > Studio .NET. > > > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > > _______________________________________________ > > Dynapi-Help mailing list > > Dyn...@li... > > > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > > > > > > > __________________________________ > Do you Yahoo!? > Yahoo! SiteBuilder - Free, easy-to-use web site design software > http://sitebuilder.yahoo.com |
From: Leif W <war...@us...> - 2003-08-05 16:04:30
|
This is the problem, I believe... note the following two definitions, p and p2. The oversrc and downsrc are different, therefore the expected sequence of images should be different as well, but they're not. They're identical, they're both the first sequence. My blind guess is that since the behaviour is identical, then the myImage.getHTML() must be identical, so the problem has to be somewhere in the getImage function, where it's not allowing multiple instances because of the first argument (eicon1.gif) being the same on a subsequent call. I tried both IE6 and Mozilla 1.4 on Win2k with a copy of the updated CVS, and observed the same behaviour in both browsers. > > var p = { > > oversrc:'images/eicon3.gif', > > downsrc:'images/eicon2.gif' > > } > > > > var p2 = { > > oversrc:'images/eicon2.gif', > > downsrc:'images/eicon3.gif' > > } > dynapi.functions.getImage('images/eicon1.gif',32,32,p); > > var myImage2 = > > > dynapi.functions.getImage('images/eicon1.gif',32,32,p2); P.S. Now I see a fix is already made before I finished the email, so the point may be moot, but I wonder if I guessed right. :-) ----- Original Message ----- From: "Raymond Irving" <xw...@ya...> To: <dyn...@li...> Sent: Tuesday, August 05, 2003 11:26 AM Subject: Re: [Dynapi-Help] Mouseover Bug? - 3.0.0 (Beta 1) - dynapi.functions.getimage.html > > Well, I copied the code and all seems to work well. > > What browser and version are you using? > Have you downloaded the lastest snapshot? > > PS. I'm unable to regenerate the errors. Please give > more info. > > -- > Raymond Irving > > --- Leif W <war...@us...> wrote: > > 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> > > > > > ============================================================ > > > > > > > > > > > ------------------------------------------------------- > > This SF.Net email sponsored by: Free pre-built > > ASP.NET sites including > > Data Reports, E-commerce, Portals, and Forums are > > available now. > > Download today and enter to win an XBOX or Visual > > Studio .NET. > > > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > > _______________________________________________ > > Dynapi-Help mailing list > > Dyn...@li... > > > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > __________________________________ > Do you Yahoo!? > Yahoo! SiteBuilder - Free, easy-to-use web site design software > http://sitebuilder.yahoo.com > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help > |
From: Raymond I. <xw...@ya...> - 2003-08-05 15:57:58
|
Hi, Yes you are correct. I didn't see the problem at first but after looking at the code that's when I realized the error. Please see the attached file for a fix to this problem. All should work now. Let me know if this works for you so I can then commit to cvs. -- Raymond Irving --- Kevin Breynck <Kev...@bb...> wrote: > Yes it all "seems" to work, but it doesn't. > > The problem: > The parameters of the second imageobject are > complete ignored. > You can write into the parameter "p2" whatever you > want. > On mouseover, the second image uses the parameters > ("p") of the first > imageobject. > > -k- > > > > > > Raymond Irving <xw...@ya...> > Sent by: dyn...@li... > 05.08.2003 17:26 > Please respond to dynapi-help > > > To: dyn...@li... > cc: > Subject: Re: [Dynapi-Help] Mouseover > Bug? - 3.0.0 (Beta 1) - > dynapi.functions.getimage.html > > > > Well, I copied the code and all seems to work well. > > What browser and version are you using? > Have you downloaded the lastest snapshot? > > PS. I'm unable to regenerate the errors. Please give > more info. > > -- > Raymond Irving > > --- Leif W <war...@us...> wrote: > > 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 ----- > > Wrom: NSKVFVWRKJVZC > > 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> > > > > > ============================================================ > > > > > > > > > > > ------------------------------------------------------- > > This SF.Net email sponsored by: Free pre-built > > ASP.NET sites including > > Data Reports, E-commerce, Portals, and Forums are > > available now. > > Download today and enter to win an XBOX or Visual > > Studio .NET. > > > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > > _______________________________________________ > > Dynapi-Help mailing list > > Dyn...@li... > > > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > __________________________________ > Do you Yahoo!? > Yahoo! SiteBuilder - Free, easy-to-use web site > design software > http://sitebuilder.yahoo.com > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built > ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are > available now. > Download today and enter to win an XBOX or Visual > Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help > > > __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com |
From: Thomas K. <th...@ke...> - 2003-08-05 15:41:11
|
On Tue, Aug 05 2003, Kevin Breynck wrote: > 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? I think I had the same problem, only that I wanted different texts. It seem's that the src of the image, is used as the key in the array holding the image objects, thus returning the same object when giving the same src. A solution - nope not yet. I don't know if it's a bug or a feature :) -- Med venlig hilsen Thomas Kenne, kenne.dk |
From: Kevin B. <Kev...@bb...> - 2003-08-05 15:39:38
|
Yes it all "seems" to work, but it doesn't. The problem: The parameters of the second imageobject are complete ignored. You can write into the parameter "p2" whatever you want. On mouseover, the second image uses the parameters ("p") of the first imageobject. -k- Raymond Irving <xw...@ya...> Sent by: dyn...@li... 05.08.2003 17:26 Please respond to dynapi-help To: dyn...@li... cc: Subject: Re: [Dynapi-Help] Mouseover Bug? - 3.0.0 (Beta 1) - dynapi.functions.getimage.html Well, I copied the code and all seems to work well. What browser and version are you using? Have you downloaded the lastest snapshot? PS. I'm unable to regenerate the errors. Please give more info. -- Raymond Irving --- Leif W <war...@us...> wrote: > 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> > > ============================================================ > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built > ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are > available now. > Download today and enter to win an XBOX or Visual > Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > https://lists.sourceforge.net/lists/listinfo/dynapi-help __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com ------------------------------------------------------- This SF.Net email sponsored by: Free pre-built ASP.NET sites including Data Reports, E-commerce, Portals, and Forums are available now. Download today and enter to win an XBOX or Visual Studio .NET. http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 _______________________________________________ Dynapi-Help mailing list Dyn...@li... https://lists.sourceforge.net/lists/listinfo/dynapi-help |