You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(11) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(66) |
Feb
(52) |
Mar
(88) |
Apr
(27) |
May
(17) |
Jun
(18) |
Jul
(5) |
Aug
(12) |
Sep
(4) |
Oct
(4) |
Nov
(3) |
Dec
(3) |
2002 |
Jan
(6) |
Feb
|
Mar
|
Apr
(1) |
May
(5) |
Jun
(8) |
Jul
(8) |
Aug
(5) |
Sep
(8) |
Oct
(16) |
Nov
(6) |
Dec
(4) |
2003 |
Jan
(9) |
Feb
(5) |
Mar
(7) |
Apr
(6) |
May
(7) |
Jun
(12) |
Jul
(15) |
Aug
(17) |
Sep
(12) |
Oct
(16) |
Nov
(29) |
Dec
(27) |
2004 |
Jan
(65) |
Feb
(120) |
Mar
(50) |
Apr
(36) |
May
(21) |
Jun
(11) |
Jul
(20) |
Aug
(16) |
Sep
(11) |
Oct
(25) |
Nov
(22) |
Dec
(36) |
2005 |
Jan
(11) |
Feb
(25) |
Mar
(41) |
Apr
(7) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(4) |
Dec
|
2006 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Gregor <ko...@am...> - 2001-02-16 06:43:52
|
Hi! Does anyone know where to get some widgets for creating a menu and a tabbed pane (similar to the widget of the property dialog in some programs) for my web page ? Or any suggestion how to create them would be great. Thanks in advance. Best regards, Kovi |
From: Jeff G. <je...@we...> - 2001-02-15 21:47:42
|
A list of my widgets, currently only three (RadioDial, Slider and Color Picker), is now up at: http://home.earthlink.net/~kendrasg/widget/ Now includes Demos and Source. Jeff Greenberg je...@we... |
From: Jeff G. <je...@we...> - 2001-02-13 20:26:33
|
Hey guys, take a look at this and tell me what you think, what bugs/problems you encounter: http://home.earthlink.net/~kendrasg/widget/ColorPicker/cpDemo.html Thanks. Jeff Greenberg je...@we... |
From: Jeff G. <je...@we...> - 2001-02-13 20:24:34
|
Here is the zip of the RadioDial widget and its docs. If anybody uses it in a project, please drop me a line, I'd love to check it out. Jeff Greenberg je...@we... |
From: Henrik V. <hv...@ya...> - 2001-02-10 11:15:38
|
Oh, and the error message I get is: JavaScript Error: file:///E|/ccr...@cf.../dynapi/src/dynapi.js, line 77: array has no properties.=20 It's me using it wrong, right? It's not a DynAPI bug now, is it? Henrik V=E5glin [ hv...@ya... ] ----- Original Message -----=20 From: "Henrik V=E5glin" <hv...@ya...> To: <dyn...@li...> Sent: Friday, February 09, 2001 9:06 PM Subject: [Dynapi-Widgetdev] How to add listening to a dynlayer on = another dynlayer objects event? I'm developing a custom extension to the dynlayer object that positions = against another named dynlayer. I got that part working statically, but = now for it to be useful I need to a listener that let the dynlayer = follow its counterpartner. How do I go about to create the required = listener for scroll, move and resize events? Anybody got a good example, = something to point to or any suggestion? This is my current listener code: **** DynLayer.prototype.positionAtLyr=3Dfunction(othLyr,pos,marginX,marginY,sl= ide,slideBy,slideSpeed) { this.doPos =3D function() { = eval(this+".positionAtLyr("+othLyr+",'"+pos+"',"+marginX+","+marginY+","+= slide+","+slideBy+","+slideSpeed+")") };=20 this.getPosAtLyr(othLyr,pos,marginX,marginY) if (slide) { if (!slideBy) slideBy =3D 10; if (!slideSpeed) slideSpeed =3D 20; this.slideTo(posX,posY,slideBy,slideSpeed) } else { this.moveTo(posX,posY); } } DynLayer.prototype.setPersistPos =3D function(b) { this.persistPos=3Db if (b=3D=3Dfalse) { this.posListener =3D new EventListener(this.parent); this.posListener.onmove =3D function(e) { this.doPos();=20 }; this.addEventListener(this.posListener); } else { this.removeEventListener(this.posListener); } }; *** DynLayer.prototype.getPosAtLyr() which isn't included here, is what = calculates and returns variables PosX and PosY (in case you wondered). = doPos() is a function to rerun the same function again (ie calculate but = with the new values and then move the layer there).=20 my example code has the following in the page DynAPI.onload fumction: *** myOtherLayer =3D new DynLayer(); myOtherLayer.setSize(100,100); myOtherLayer.setBgColor('lightgrey'); DynAPI.document.addChild(myOtherLayer); myOtherLayer.positionAtLyr(myLayer,'middleleft',12,12); myOtherLayer.setPersistPos(true); *** myLayer is of course the layer to position against. I'd be most grateful if anybody could help me solve this one... Henrik V=E5glin [ hv...@ya... ] _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com _______________________________________________ Dynapi-Widgetdev mailing list Dyn...@li... http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com |
From: Henrik V. <hv...@ya...> - 2001-02-09 22:08:46
|
I'm developing a custom extension to the dynlayer object that positions = against another named dynlayer. I got that part working statically, but = now for it to be useful I need to a listener that let the dynlayer = follow its counterpartner. How do I go about to create the required = listener for scroll, move and resize events? Anybody got a good example, = something to point to or any suggestion? This is my current listener code: **** DynLayer.prototype.positionAtLyr=3Dfunction(othLyr,pos,marginX,marginY,sl= ide,slideBy,slideSpeed) { this.doPos =3D function() { = eval(this+".positionAtLyr("+othLyr+",'"+pos+"',"+marginX+","+marginY+","+= slide+","+slideBy+","+slideSpeed+")") };=20 this.getPosAtLyr(othLyr,pos,marginX,marginY) if (slide) { if (!slideBy) slideBy =3D 10; if (!slideSpeed) slideSpeed =3D 20; this.slideTo(posX,posY,slideBy,slideSpeed) } else { this.moveTo(posX,posY); } } DynLayer.prototype.setPersistPos =3D function(b) { this.persistPos=3Db if (b=3D=3Dfalse) { this.posListener =3D new EventListener(this.parent); this.posListener.onmove =3D function(e) { this.doPos();=20 }; this.addEventListener(this.posListener); } else { this.removeEventListener(this.posListener); } }; *** DynLayer.prototype.getPosAtLyr() which isn't included here, is what = calculates and returns variables PosX and PosY (in case you wondered). = doPos() is a function to rerun the same function again (ie calculate but = with the new values and then move the layer there).=20 my example code has the following in the page DynAPI.onload fumction: *** myOtherLayer =3D new DynLayer(); myOtherLayer.setSize(100,100); myOtherLayer.setBgColor('lightgrey'); DynAPI.document.addChild(myOtherLayer); myOtherLayer.positionAtLyr(myLayer,'middleleft',12,12); myOtherLayer.setPersistPos(true); *** myLayer is of course the layer to position against. I'd be most grateful if anybody could help me solve this one... Henrik V=E5glin [ hv...@ya... ] _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com |
From: Cheston U. <Che...@rl...> - 2001-02-09 20:22:41
|
Hi Alex, The previous version of DynAPI (v.1) did have a widget pack, since Dan Steinman wrote it. Currently, there is no "official" widget pack for DynAPI2, since it's still under development, as far as I know. There is an un-official widget pack, and a link can be found at the bottom of the Widget Tutorial page, at the DynAPI2 site. Everyone: If anyone DOES come up with working widgets, I believe we should compile them all into a working pack. I am working on a Navigation Menu system that allows web designers to not only make working collapseable menus (Advanced ones that work, not primitive sliding ones.), but to make up to 4 on a page, as well as being able to browse the internet in an IFRAME without having to leave the site they are on. You can see a primitive system at http://www.fvsd.ab.ca/rainbow/ As a sidenote, I'd like to request that people not leave long strings of repeating Emails within their replies to this Mail list. It makes it so much more difficult to get the useful information we are all looking for in these e-mails. If we all just paste the comment we are replying to, we can keep these e-mails shorter, and easier for everyone to read. (I'm on a text-based, free E-mail service, and so all the header and footer info gets stuck in the E-mail body....very annoying :-T ). Anyway....Chill all, and keep up the great work! ;-) > From: Alex Chong <c....@mu...> > Hi, > Does every new release of Dynapi comes with a corresponding set of > widgets? > Alex Chong > --__--__-- -- - Cheston U. (Rainbow Lake School Webmaster) P.S.: I loved that Radio-Dial widget, by the way. Very cool! I'm interested to see what applications it can be used for. ____________________________________________________________ Online tools for small business at www.opendesk.com |
From: Alex C. <c....@mu...> - 2001-02-08 07:25:13
|
Hi, Does every new release of Dynapi comes with a corresponding set of widgets? Alex Chong |
From: Jeff <jef...@ea...> - 2001-02-08 03:54:04
|
Richard: Thanks for the compliment! I am just about done "beautifying" the code... I'll post a zip and some more instructions shortly. Raymond: Need more info... what exactly happens when you try to use the demo? As Richard said, he is using the same OS and browser and it seems to work fine. ------------------------------- >My friend, >It is TRULY a masterpiece, I'd love to add it to my examples if possible, >please mail me a zip of it if you would! > >Cheers, >Richard Bennett > >ma...@ri... >www.richardinfo.com >(Everything running on, and ported to the 19/12/2000 snapshot of DynAPI2) |
From: Robert R. <rra...@ya...> - 2001-02-08 03:37:24
|
My stupid macros screwed up the reply to thread. Sorry about that. -- // Robert Rainwater On 2/7/2001, 7:43:18 PM EST, Jeff wrote about "[Dynapi-Widgetdev] New-RadioDial Widget": > Hmmm... ok.... this thread has gone in a unique direction.... has anybody tried the > RadioDial widget? > Robert Rainwater wrote: >> I don't think thats really much of a problem. Especially since >> supporting IE has never been too difficult. Usually, MS betas do not >> include very much compatibility. But when they get closer to the >> release version they will have better support. I would imagine they >> will have more support for the dom, so this should be a good thing. >> >> -- >> // Robert Rainwater >> >> On 2/7/2001, 7:02:27 PM EST, Mark wrote about "[Dynapi-Widgetdev] New-RadioDial Widget": >> >> > I dont know guys if you care but Dynapi2 does not work with IE 6 Beta. >> > Mark >> > ----- Original Message ----- >> > From: "Jeff Greenberg" <je...@we...> >> > To: <dyn...@li...> >> > Sent: Wednesday, February 07, 2001 2:06 PM >> > Subject: [Dynapi-Widgetdev] New-RadioDial Widget >> >> >> Given everything that's been going on the past week or so, I know a new >> >> widget is probably not the top priority for most of you. >> >> >> >> But I created this widget so I could learn the api in more detail and >> >> hopefully help out with it's development. >> >> >> >> Anyway, I hope some of you will find it useful. It's not completely done >> >> (just about, though), and it needs to be tested on more >> >> browsers/platforms (I've only tested it on IE5.0/5.5 and NS 4.7/4.76 >> >> under Win98), but here is a demo: >> >> >> >> http://home.earthlink.net/~kendrasg/widget/RadioDial/demo1.html >> >> >> >> Let me know what you think... >> >> >> >> Jeff Greenberg >> >> je...@we... >> >> >> >> >> >> >> >> >> >> _______________________________________________ >> >> Dynapi-Widgetdev mailing list >> >> Dyn...@li... >> >> http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev >> >> > _______________________________________________ >> > Dynapi-Widgetdev mailing list >> > Dyn...@li... >> > http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev >> >> _______________________________________________ >> Dynapi-Widgetdev mailing list >> Dyn...@li... >> http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev > _______________________________________________ > Dynapi-Widgetdev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev |
From: Richard B. <ma...@ri...> - 2001-02-08 02:39:42
|
> Win ME here with IE 5.5 and doesn't appear to work for me... That's strange, I use same and it works fine. I'm still trying to work out how he did the animated line (without checking the source) Cheers, Richard Bennett ma...@ri... www.richardinfo.com (Everything running on, and ported to the 19/12/2000 snapshot of DynAPI2) ----- Original Message ----- From: "Raymond Smith" <dst...@or...> To: <dyn...@li...> Sent: Thursday, February 08, 2001 3:08 AM Subject: Re: [Dynapi-Widgetdev] New-RadioDial Widget > Win ME here with IE 5.5 and doesn't appear to work for me... > > > ----- Original Message ----- > From: "Jeff Greenberg" <je...@we...> > To: <dyn...@li...> > Sent: Wednesday, February 07, 2001 4:43 PM > Subject: Re: [Dynapi-Widgetdev] New-RadioDial Widget > > > > Hmmm... ok.... this thread has gone in a unique direction.... has anybody > tried the > > RadioDial widget? > > > > Robert Rainwater wrote: > > > > > I don't think thats really much of a problem. Especially since > > > supporting IE has never been too difficult. Usually, MS betas do not > > > include very much compatibility. But when they get closer to the > > > release version they will have better support. I would imagine they > > > will have more support for the dom, so this should be a good thing. > > > > > > -- > > > // Robert Rainwater > > > > > > On 2/7/2001, 7:02:27 PM EST, Mark wrote about "[Dynapi-Widgetdev] > New-RadioDial Widget": > > > > > > > I dont know guys if you care but Dynapi2 does not work with IE 6 Beta. > > > > Mark > > > > ----- Original Message ----- > > > > From: "Jeff Greenberg" <je...@we...> > > > > To: <dyn...@li...> > > > > Sent: Wednesday, February 07, 2001 2:06 PM > > > > Subject: [Dynapi-Widgetdev] New-RadioDial Widget > > > > > > >> Given everything that's been going on the past week or so, I know a > new > > > >> widget is probably not the top priority for most of you. > > > >> > > > >> But I created this widget so I could learn the api in more detail and > > > >> hopefully help out with it's development. > > > >> > > > >> Anyway, I hope some of you will find it useful. It's not completely > done > > > >> (just about, though), and it needs to be tested on more > > > >> browsers/platforms (I've only tested it on IE5.0/5.5 and NS 4.7/4.76 > > > >> under Win98), but here is a demo: > > > >> > > > >> http://home.earthlink.net/~kendrasg/widget/RadioDial/demo1.html > > > >> > > > >> Let me know what you think... > > > >> > > > >> Jeff Greenberg > > > >> je...@we... > > > >> > > > >> > > > >> > > > >> > > > >> _______________________________________________ > > > >> Dynapi-Widgetdev mailing list > > > >> Dyn...@li... > > > >> http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev > > > > > > > _______________________________________________ > > > > Dynapi-Widgetdev mailing list > > > > Dyn...@li... > > > > http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev > > > > > > _______________________________________________ > > > Dynapi-Widgetdev mailing list > > > Dyn...@li... > > > http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev > > > > > > _______________________________________________ > > Dynapi-Widgetdev mailing list > > Dyn...@li... > > http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev > > > > > _______________________________________________ > Dynapi-Widgetdev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev > ____________________________________________________________ > Get your free domain name and domain-based e-mail from > Namezero.com. New! Namezero Plus domains now available. > Find out more at: http://www.namezero.com > |
From: Raymond S. <dst...@or...> - 2001-02-08 02:12:45
|
Win ME here with IE 5.5 and doesn't appear to work for me... ----- Original Message ----- From: "Jeff Greenberg" <je...@we...> To: <dyn...@li...> Sent: Wednesday, February 07, 2001 4:43 PM Subject: Re: [Dynapi-Widgetdev] New-RadioDial Widget > Hmmm... ok.... this thread has gone in a unique direction.... has anybody tried the > RadioDial widget? > > Robert Rainwater wrote: > > > I don't think thats really much of a problem. Especially since > > supporting IE has never been too difficult. Usually, MS betas do not > > include very much compatibility. But when they get closer to the > > release version they will have better support. I would imagine they > > will have more support for the dom, so this should be a good thing. > > > > -- > > // Robert Rainwater > > > > On 2/7/2001, 7:02:27 PM EST, Mark wrote about "[Dynapi-Widgetdev] New-RadioDial Widget": > > > > > I dont know guys if you care but Dynapi2 does not work with IE 6 Beta. > > > Mark > > > ----- Original Message ----- > > > From: "Jeff Greenberg" <je...@we...> > > > To: <dyn...@li...> > > > Sent: Wednesday, February 07, 2001 2:06 PM > > > Subject: [Dynapi-Widgetdev] New-RadioDial Widget > > > > >> Given everything that's been going on the past week or so, I know a new > > >> widget is probably not the top priority for most of you. > > >> > > >> But I created this widget so I could learn the api in more detail and > > >> hopefully help out with it's development. > > >> > > >> Anyway, I hope some of you will find it useful. It's not completely done > > >> (just about, though), and it needs to be tested on more > > >> browsers/platforms (I've only tested it on IE5.0/5.5 and NS 4.7/4.76 > > >> under Win98), but here is a demo: > > >> > > >> http://home.earthlink.net/~kendrasg/widget/RadioDial/demo1.html > > >> > > >> Let me know what you think... > > >> > > >> Jeff Greenberg > > >> je...@we... > > >> > > >> > > >> > > >> > > >> _______________________________________________ > > >> Dynapi-Widgetdev mailing list > > >> Dyn...@li... > > >> http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev > > > > > _______________________________________________ > > > Dynapi-Widgetdev mailing list > > > Dyn...@li... > > > http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev > > > > _______________________________________________ > > Dynapi-Widgetdev mailing list > > Dyn...@li... > > http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev > > > _______________________________________________ > Dynapi-Widgetdev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev > |
From: Richard B. <ma...@ri...> - 2001-02-08 01:13:21
|
My friend, It is TRULY a masterpiece, I'd love to add it to my examples if possible, please mail me a zip of it if you would! Cheers, Richard Bennett ma...@ri... www.richardinfo.com (Everything running on, and ported to the 19/12/2000 snapshot of DynAPI2) ----- Original Message ----- From: "Jeff Greenberg" <je...@we...> To: <dyn...@li...> Sent: Thursday, February 08, 2001 1:43 AM Subject: Re: [Dynapi-Widgetdev] New-RadioDial Widget > Hmmm... ok.... this thread has gone in a unique direction.... has anybody tried the > RadioDial widget? > > Robert Rainwater wrote: > > > I don't think thats really much of a problem. Especially since > > supporting IE has never been too difficult. Usually, MS betas do not > > include very much compatibility. But when they get closer to the > > release version they will have better support. I would imagine they > > will have more support for the dom, so this should be a good thing. > > > > -- > > // Robert Rainwater > > > > On 2/7/2001, 7:02:27 PM EST, Mark wrote about "[Dynapi-Widgetdev] New-RadioDial Widget": > > > > > I dont know guys if you care but Dynapi2 does not work with IE 6 Beta. > > > Mark > > > ----- Original Message ----- > > > From: "Jeff Greenberg" <je...@we...> > > > To: <dyn...@li...> > > > Sent: Wednesday, February 07, 2001 2:06 PM > > > Subject: [Dynapi-Widgetdev] New-RadioDial Widget > > > > >> Given everything that's been going on the past week or so, I know a new > > >> widget is probably not the top priority for most of you. > > >> > > >> But I created this widget so I could learn the api in more detail and > > >> hopefully help out with it's development. > > >> > > >> Anyway, I hope some of you will find it useful. It's not completely done > > >> (just about, though), and it needs to be tested on more > > >> browsers/platforms (I've only tested it on IE5.0/5.5 and NS 4.7/4.76 > > >> under Win98), but here is a demo: > > >> > > >> http://home.earthlink.net/~kendrasg/widget/RadioDial/demo1.html > > >> > > >> Let me know what you think... > > >> > > >> Jeff Greenberg > > >> je...@we... > > >> > > >> > > >> > > >> > > >> _______________________________________________ > > >> Dynapi-Widgetdev mailing list > > >> Dyn...@li... > > >> http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev > > > > > _______________________________________________ > > > Dynapi-Widgetdev mailing list > > > Dyn...@li... > > > http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev > > > > _______________________________________________ > > Dynapi-Widgetdev mailing list > > Dyn...@li... > > http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev > > > _______________________________________________ > Dynapi-Widgetdev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev > ____________________________________________________________ > Get your free domain name and domain-based e-mail from > Namezero.com. New! Namezero Plus domains now available. > Find out more at: http://www.namezero.com > |
From: Jeff G. <je...@we...> - 2001-02-08 00:43:22
|
Hmmm... ok.... this thread has gone in a unique direction.... has anybody tried the RadioDial widget? Robert Rainwater wrote: > I don't think thats really much of a problem. Especially since > supporting IE has never been too difficult. Usually, MS betas do not > include very much compatibility. But when they get closer to the > release version they will have better support. I would imagine they > will have more support for the dom, so this should be a good thing. > > -- > // Robert Rainwater > > On 2/7/2001, 7:02:27 PM EST, Mark wrote about "[Dynapi-Widgetdev] New-RadioDial Widget": > > > I dont know guys if you care but Dynapi2 does not work with IE 6 Beta. > > Mark > > ----- Original Message ----- > > From: "Jeff Greenberg" <je...@we...> > > To: <dyn...@li...> > > Sent: Wednesday, February 07, 2001 2:06 PM > > Subject: [Dynapi-Widgetdev] New-RadioDial Widget > > >> Given everything that's been going on the past week or so, I know a new > >> widget is probably not the top priority for most of you. > >> > >> But I created this widget so I could learn the api in more detail and > >> hopefully help out with it's development. > >> > >> Anyway, I hope some of you will find it useful. It's not completely done > >> (just about, though), and it needs to be tested on more > >> browsers/platforms (I've only tested it on IE5.0/5.5 and NS 4.7/4.76 > >> under Win98), but here is a demo: > >> > >> http://home.earthlink.net/~kendrasg/widget/RadioDial/demo1.html > >> > >> Let me know what you think... > >> > >> Jeff Greenberg > >> je...@we... > >> > >> > >> > >> > >> _______________________________________________ > >> Dynapi-Widgetdev mailing list > >> Dyn...@li... > >> http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev > > > _______________________________________________ > > Dynapi-Widgetdev mailing list > > Dyn...@li... > > http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev > > _______________________________________________ > Dynapi-Widgetdev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev |
From: Mark G. <mar...@me...> - 2001-02-08 00:39:35
|
ftp.redcom.ru/pub/support/windows/browsers/ie6beta/build2403.zip Mark ----- Original Message ----- From: "Richard Bennett" <ma...@ri...> To: <dyn...@li...> Sent: Wednesday, February 07, 2001 6:34 PM Subject: Re: [Dynapi-Widgetdev] IE6 beta > Can you point to a link to download IE6 Beta? > I would test it if I had it... > > Cheers, > Richard Bennett > > ma...@ri... > www.richardinfo.com > (Everything running on, and ported to the 19/12/2000 snapshot of DynAPI2) > > ----- Original Message ----- > From: "Mark Goldin" <mar...@me...> > To: <dyn...@li...> > Sent: Thursday, February 08, 2001 1:02 AM > Subject: Re: [Dynapi-Widgetdev] New-RadioDial Widget > > > > I dont know guys if you care but Dynapi2 does not work with IE 6 Beta. > > Mark > > ----- Original Message ----- > > From: "Jeff Greenberg" <je...@we...> > > To: <dyn...@li...> > > Sent: Wednesday, February 07, 2001 2:06 PM > > Subject: [Dynapi-Widgetdev] New-RadioDial Widget > > > > > > > Given everything that's been going on the past week or so, I know a new > > > widget is probably not the top priority for most of you. > > > > > > But I created this widget so I could learn the api in more detail and > > > hopefully help out with it's development. > > > > > > Anyway, I hope some of you will find it useful. It's not completely done > > > (just about, though), and it needs to be tested on more > > > browsers/platforms (I've only tested it on IE5.0/5.5 and NS 4.7/4.76 > > > under Win98), but here is a demo: > > > > > > http://home.earthlink.net/~kendrasg/widget/RadioDial/demo1.html > > > > > > Let me know what you think... > > > > > > Jeff Greenberg > > > je...@we... > > > > > > > > > > > > > > > _______________________________________________ > > > Dynapi-Widgetdev mailing list > > > Dyn...@li... > > > http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev > > > > > > _______________________________________________ > > Dynapi-Widgetdev mailing list > > Dyn...@li... > > http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev > > ____________________________________________________________ > > Get your free domain name and domain-based e-mail from > > Namezero.com. New! Namezero Plus domains now available. > > Find out more at: http://www.namezero.com > > > > > _______________________________________________ > Dynapi-Widgetdev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev |
From: Robert R. <rra...@ya...> - 2001-02-08 00:38:26
|
I don't think thats really much of a problem. Especially since supporting IE has never been too difficult. Usually, MS betas do not include very much compatibility. But when they get closer to the release version they will have better support. I would imagine they will have more support for the dom, so this should be a good thing. -- // Robert Rainwater On 2/7/2001, 7:02:27 PM EST, Mark wrote about "[Dynapi-Widgetdev] New-RadioDial Widget": > I dont know guys if you care but Dynapi2 does not work with IE 6 Beta. > Mark > ----- Original Message ----- > From: "Jeff Greenberg" <je...@we...> > To: <dyn...@li...> > Sent: Wednesday, February 07, 2001 2:06 PM > Subject: [Dynapi-Widgetdev] New-RadioDial Widget >> Given everything that's been going on the past week or so, I know a new >> widget is probably not the top priority for most of you. >> >> But I created this widget so I could learn the api in more detail and >> hopefully help out with it's development. >> >> Anyway, I hope some of you will find it useful. It's not completely done >> (just about, though), and it needs to be tested on more >> browsers/platforms (I've only tested it on IE5.0/5.5 and NS 4.7/4.76 >> under Win98), but here is a demo: >> >> http://home.earthlink.net/~kendrasg/widget/RadioDial/demo1.html >> >> Let me know what you think... >> >> Jeff Greenberg >> je...@we... >> >> >> >> >> _______________________________________________ >> Dynapi-Widgetdev mailing list >> Dyn...@li... >> http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev > _______________________________________________ > Dynapi-Widgetdev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev |
From: Richard B. <ma...@ri...> - 2001-02-08 00:34:12
|
Can you point to a link to download IE6 Beta? I would test it if I had it... Cheers, Richard Bennett ma...@ri... www.richardinfo.com (Everything running on, and ported to the 19/12/2000 snapshot of DynAPI2) ----- Original Message ----- From: "Mark Goldin" <mar...@me...> To: <dyn...@li...> Sent: Thursday, February 08, 2001 1:02 AM Subject: Re: [Dynapi-Widgetdev] New-RadioDial Widget > I dont know guys if you care but Dynapi2 does not work with IE 6 Beta. > Mark > ----- Original Message ----- > From: "Jeff Greenberg" <je...@we...> > To: <dyn...@li...> > Sent: Wednesday, February 07, 2001 2:06 PM > Subject: [Dynapi-Widgetdev] New-RadioDial Widget > > > > Given everything that's been going on the past week or so, I know a new > > widget is probably not the top priority for most of you. > > > > But I created this widget so I could learn the api in more detail and > > hopefully help out with it's development. > > > > Anyway, I hope some of you will find it useful. It's not completely done > > (just about, though), and it needs to be tested on more > > browsers/platforms (I've only tested it on IE5.0/5.5 and NS 4.7/4.76 > > under Win98), but here is a demo: > > > > http://home.earthlink.net/~kendrasg/widget/RadioDial/demo1.html > > > > Let me know what you think... > > > > Jeff Greenberg > > je...@we... > > > > > > > > > > _______________________________________________ > > Dynapi-Widgetdev mailing list > > Dyn...@li... > > http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev > > > _______________________________________________ > Dynapi-Widgetdev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev > ____________________________________________________________ > Get your free domain name and domain-based e-mail from > Namezero.com. New! Namezero Plus domains now available. > Find out more at: http://www.namezero.com > |
From: Mark G. <mar...@me...> - 2001-02-08 00:02:39
|
I dont know guys if you care but Dynapi2 does not work with IE 6 Beta. Mark ----- Original Message ----- From: "Jeff Greenberg" <je...@we...> To: <dyn...@li...> Sent: Wednesday, February 07, 2001 2:06 PM Subject: [Dynapi-Widgetdev] New-RadioDial Widget > Given everything that's been going on the past week or so, I know a new > widget is probably not the top priority for most of you. > > But I created this widget so I could learn the api in more detail and > hopefully help out with it's development. > > Anyway, I hope some of you will find it useful. It's not completely done > (just about, though), and it needs to be tested on more > browsers/platforms (I've only tested it on IE5.0/5.5 and NS 4.7/4.76 > under Win98), but here is a demo: > > http://home.earthlink.net/~kendrasg/widget/RadioDial/demo1.html > > Let me know what you think... > > Jeff Greenberg > je...@we... > > > > > _______________________________________________ > Dynapi-Widgetdev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev |
From: Jeff G. <je...@we...> - 2001-02-07 20:07:20
|
Given everything that's been going on the past week or so, I know a new widget is probably not the top priority for most of you. But I created this widget so I could learn the api in more detail and hopefully help out with it's development. Anyway, I hope some of you will find it useful. It's not completely done (just about, though), and it needs to be tested on more browsers/platforms (I've only tested it on IE5.0/5.5 and NS 4.7/4.76 under Win98), but here is a demo: http://home.earthlink.net/~kendrasg/widget/RadioDial/demo1.html Let me know what you think... Jeff Greenberg je...@we... |
From: J. F. M. <tx...@wa...> - 2001-02-02 17:42:50
|
OK. Don't worry .... i'm not offended. I know my tree widget is minimalistic ... i do it so. I did't found a tree widget in DynAPI 2 latest release (25-1-2001) and I wrote a tree that covered my necesities. I have sended the code to the list because someone can found it reusable. That's all. ... and please, send me a copy of the emails related to the tree. I'm not subscribed to this list. Thanks, Fer -- "It is not the strongest of the species that survive, nor the most intelligent,but the one most responsive to change." John McFee (*) SymeX ==> http://symex.lantik.com (*) WDBIL ==> http://wdbil.sourceforge.net (*) Informate sobre LINUX en http://www.linux.org |
From: Cheston U. <Che...@rl...> - 2001-02-01 18:34:29
|
In reply to using IFRAMEs within a skinable window: I thank you for the link to the demo. This is something I had considered attempting with an IFRAME allready. My dilema is that I don't know if it is possible to resize the IFRAME dynamically. The problem I have been facing is that the scrollbars are essential. They MUST be visible at ALL times, because I plan to use the IFRAME as a Browser window. The basic premice is that the User can browse other sites on the internet, while still having the main Menu and features of my website available. The menu and things will be stashed off the side of the screen, with a slide-in menu. The problem with most Slide-ins is that once you leave the site, the menu goes away. The main goal is to make the most screen space possible devoted to the browseable IFRAME on my homepage, but when a user wants to open the menu, the IFRAME contracts (dynamicly) and gives some of it's screen space to the expanded Menu. This will give the Users the ability to browse the internet at their leisure, but they won't have to leave our Homepage to do it. If you don't understand what I'm talking about, you can see the DynAPI-1 version of this concept here: http://www.fvsd.ab.ca/rainbow/ This version is primitive, requires extensive scripting I bodged together from many sources, closing and opening of browser windows (The school division says this isn't acceptable), and is slow to load and work with (on our school's P-133's, 16 MB RAM, w/ v4.0 browsers). I want to speed this up. My goal is to get something similar to Desktop.COM's webtop browser. Get an account with them and see for yourself @ www.desktop.com I was facinated with their scripted recreation of Internet Explorer, but I can't figure out how they did it. I want to accomplish nearly the same thing that they have. So far, for the new Version, I have upgraded to a Java Applet for the drop-down menu, which can be moved and hidden/shown with a DynLayer. It's much quicker to load and easier to update. If anyone has any Ideas or suggestions, feel free to let me know. I'd love to hear them all 8-) You can contact me at: Che...@rl... -- - Cheston U. (Rainbow Lake School Webmaster http://www.fvsd.ab.ca/rainbow) ____________________________________________________________ Online tools for small business at www.opendesk.com |
From: Richard B. <ma...@ri...> - 2001-01-31 17:37:17
|
(was on the dev list) > It has lines? You looked at the code.. how hard would highlighting be? The functionality seems to be pretty basic, you click on an image to expand the tree, and on the caption to load a link, no highlighting, or expanding/collapsing in the same level etc, maybe this can be added, but if it makes the code top heavy (better mouse-trap?) the speed advantage might be lost. You can probably do highlighting with a: visited etc in css, but that's not very reliable cross-browser. I'll put up a few examples to test it. Cheers, Richard Bennett ma...@ri... www.richardinfo.com (Everything running on, and ported to the 19/12/2000 snapshot of DynAPI2) ----- Original Message ----- From: "Doug Melvin" <do...@cr...> To: <dyn...@li...> Sent: Wednesday, January 31, 2001 7:21 PM Subject: Re: [Dynapi-Dev] I have wrote a tree widget .... > No rebuf was intended. > I simply wanted to draw their attention to the existance of a tree widget.. > I know I would be upset if I but a bunch of effort into something only to > find out later that someone had beat me to it. > No insult was intended towards J. Fernando Moyano. > > It has lines? You looked at the code.. how hard would highlighting be? > > I am as interested in new ideas and technologies as the next guy.. > > So to Mr. Moyano: I apollogize If I offended you. > > > ----- Original Message ----- > From: "Richard Bennett" <ma...@ri...> > To: <dyn...@li...> > Sent: Tuesday, January 30, 2001 3:50 PM > Subject: Re: [Dynapi-Dev] I have wrote a tree widget .... > > > > No Doug, I don't think a rebuff was in order here, firstly, any widget is > > welcome, be it better or worse than what exists, if it's no good, don't > use > > it. > > But apart from that, I gave the code a once over, and although it doesn't > > look very conventional, that might just be it's strength, as far as I can > > see, it uses minimal layers, building the tree in a table. > > The small example loads very fast, so maybe this would be interesting for > > large trees, which don't need the added functionality of opening on a node > > through a value passed to them (like mine), but should load fast, I'll > test > > it with a thousand nodes or so (the limit of my widget), my criteria was > > less than 10 seconds rendering time after 10 reloads on IE (on my pc). > > And it also has the dotted lines, way cool! > > > > Cheers, > > Richard Bennett > > > > ma...@ri... > > www.richardinfo.com > > (Everything running on, and ported to the 19/12/2000 snapshot of DynAPI2) > > > > ----- Original Message ----- > > From: "Doug Melvin" <do...@cr...> > > To: <dyn...@li...> > > Sent: Wednesday, January 31, 2001 12:14 AM > > Subject: Re: [Dynapi-Dev] I have wrote a tree widget .... > > > > > > > what's wrong with the tree we have? > > > see www.richardinfo.com > > > ----- Original Message ----- > > > From: "J. Fernando Moyano" <tx...@wa...> > > > To: <dyn...@li...> > > > Cc: <dyn...@li...> > > > Sent: Tuesday, January 30, 2001 11:16 AM > > > Subject: [Dynapi-Dev] I have wrote a tree widget .... > > > > > > > > > > > > > > I have wrote a tree widget for DynAPI2 ... > > > > It's very simple and it has some "dirty" feature (you mut pass the > > > variable > > > > name as parameter ... but i don't know very well the DynAPI. Someone > can > > > fixit > > > > in 5 minutes ???) > > > > > > > > I send a tgz file with the tree.js file (in dynapi/gui), the > > > > necesary bitmaps (in dynapi/images/tree) and a working example. > > > > > > > > I'm using it in my project mainpage (http://wdbil.sourceforge.net) > > > > > > > > Bye, > > > > > > > > txino > > > > > > > > -- > > > > > > > > "It is not the strongest of the species that survive, nor the most > > > > intelligent,but the one most responsive to change." > > > > > > > > John McFee > > > > > > > > (*) SymeX ==> http://symex.lantik.com > > > > (*) WDBIL ==> http://wdbil.sourceforge.net > > > > (*) Informate sobre LINUX en http://www.linux.org > > > > > > > > > > > > > _______________________________________________ > > > Dynapi-Dev mailing list > > > Dyn...@li... > > > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > > > ____________________________________________________________ > > > Get your free domain name and domain-based e-mail from > > > Namezero.com. New! Namezero Plus domains now available. > > > Find out more at: http://www.namezero.com > > > > > > > > > _______________________________________________ > > Dynapi-Dev mailing list > > Dyn...@li... > > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > > > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev > ____________________________________________________________ > Get your free domain name and domain-based e-mail from > Namezero.com. New! Namezero Plus domains now available. > Find out more at: http://www.namezero.com > |
From: J. F. M. <tx...@wa...> - 2001-01-30 19:35:04
|
I have wrote a tree widget for DynAPI2 ... It's very simple and it has some "dirty" feature (you mut pass the variable name as parameter ... but i don't know very well the DynAPI. Someone can fixit in 5 minutes ???) I send a tgz file with the tree.js file (in dynapi/gui), the necesary bitmaps (in dynapi/images/tree) and a working example. I'm using it in my project mainpage (http://wdbil.sourceforge.net) Bye, txino -- "It is not the strongest of the species that survive, nor the most intelligent,but the one most responsive to change." John McFee (*) SymeX ==> http://symex.lantik.com (*) WDBIL ==> http://wdbil.sourceforge.net (*) Informate sobre LINUX en http://www.linux.org |
From: Richard B. <ma...@ri...> - 2001-01-30 00:24:38
|
Hi, It all depends what you want to load in the window: If you simply want to display information, not containing script or links, you can do setHTML on the windowCanvas, or use a loadpanel widget, There are several examples of this here: http://www.resass.f2s.com/?menu=examples&node=9 if you need to load external content containing links and script, you can use a Iframe in a skinwindow, for IE, and an Ilayer for NS. I have an example of this for IE only, but it's very experimental, *unfinished work*: http://www.resass.f2s.com/dynapi/testcase/skinframewindow.htm In these examples the skinwindow is resizable by dragging bottom right corner, maximizeable, minimizeable, closeable.etc. Cheers, Richard Bennett ma...@ri... www.richardinfo.com (Everything running on, and ported to the 19/12/2000 snapshot of DynAPI2) ----- Original Message ----- From: "Cheston Unnewehr" <Che...@rl...> To: <dyn...@li...> Sent: Monday, January 29, 2001 10:43 PM Subject: [Dynapi-Widgetdev] New Member, looking for Info > Hello All, > > My Name is Cheston Unnewehr, and I have recently been researching new ways of making websites more appealing and user-friendly. In this quest, I've ran across the DynAPI-2 librayr, and so far, I'm very impressed. > I am familiar with Dan Steinman's DynAPI-1, and was most impressed with the ability to make "windows" in the browser. I am currently working on a dynamic window system for the website I am currently Webmastering. I would like to know if there are any ways of incorperating a scroll box, or an IFRAME within the DynAPI-2's DynLayer. The box should be able to resize on-the-fly, since it is being used to create a sort-of "browser in browser" window, similar to that used at Desktop.com. If anyone has any information on how I can achieve this, email me at: > > Che...@rl... > > Thanks in advance for any input, and Thanks to all the guys that are making this wonderful Library possible. Keep up the good work, guys! > > -- > - Cheston U. > (Rainbow Lake School Webmaster > http://www.fvsd.ab.ca/rainbow/) > > ____________________________________________________________ > Online tools for small business at www.opendesk.com > > > _______________________________________________ > Dynapi-Widgetdev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-widgetdev > ____________________________________________________________ > Get your free domain name and domain-based e-mail from > Namezero.com. New! Namezero Plus domains now available. > Find out more at: http://www.namezero.com > |
From: Cheston U. <Che...@rl...> - 2001-01-29 21:43:13
|
Hello All, My Name is Cheston Unnewehr, and I have recently been researching new ways of making websites more appealing and user-friendly. In this quest, I've ran across the DynAPI-2 librayr, and so far, I'm very impressed. I am familiar with Dan Steinman's DynAPI-1, and was most impressed with the ability to make "windows" in the browser. I am currently working on a dynamic window system for the website I am currently Webmastering. I would like to know if there are any ways of incorperating a scroll box, or an IFRAME within the DynAPI-2's DynLayer. The box should be able to resize on-the-fly, since it is being used to create a sort-of "browser in browser" window, similar to that used at Desktop.com. If anyone has any information on how I can achieve this, email me at: Che...@rl... Thanks in advance for any input, and Thanks to all the guys that are making this wonderful Library possible. Keep up the good work, guys! -- - Cheston U. (Rainbow Lake School Webmaster http://www.fvsd.ab.ca/rainbow/) ____________________________________________________________ Online tools for small business at www.opendesk.com |