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: Bill W. <bil...@us...> - 2000-12-06 15:28:05
|
birdwacker doesn't seem to do much either. Like the name though. One more test variable name. flogs, fleebs, doohongs, birdwackers, hmmms... coding is not pretty. where is 'scroll' being used? "Raymond Smith" <dst...@or...> wrote: > --------------------------------------------- > Attachment: > MIME Type: multipart/alternative > --------------------------------------------- > One problem with the example (IE) is using "scroll" as a name of the scroll widget. > > scroll = new ScrollPane(label1) // label1 will be set as the content > scroll.setSize(150,150) > scroll.moveTo(250,50) > scroll.setBgColor('#c0c0c0') > > Changing scroll to birdwacker will at least allow the window to form. Still has problems through. > > DS ____________________________________________________________________ Get free email and a permanent address at http://www.netaddress.com/?N=1 |
From: Mark P. <mar...@hi...> - 2000-12-06 14:45:14
|
I was thinking of something along the lines of .... In original document someLayer.setHTML ( 'someWebPage.html?layer=someLayer' ) ; In "someWebPage.html" theParam = <-- code to parse out URL (can't remember what the JS code for this is, but there is a function to do it ) --> document.write ( "<a href='#' onClick='" + theParam + ".setHTML(\'myNewPage.html\')'>My Link</a> .. if you know what I mean. Mark Cameron Hart wrote: > > I'm not sure if this is what you're looking for, but why not try > > something like ... > > > > <a href="#" onClick="whateverLayer.setHTML('page.html')">My Link</a> > > > > If you don't know what whateverLayer is in adavnce, you could use > > document.write to change the name of the layer. > > that works if you know what whatevenLayer is, but unfortunately I don't. I > thought that the document loaded into the loadpanel would know what > whateverLayer is (ie the layer it got loaded into) but it doesn't seem to. > > I'm not what you mean by using document.write to change the name of the > layer? > > Thanks, > > Cameron. > > > > > Let me know if you come across a better solution, or indeed if > > anyone has come across a > > solution to submitting a form and giving it a target inside a loadpanel. > > > > Mark > > > > Cameron Hart wrote: > > > > > I've got a question about links inside html files loaded into a > > loadpanel. > > > > > > I am building a site that uses multiple loadpanels at the same time. All > > > these loadpanels contain external html documents. Some of these > > documents > > > have links in them. If you click on a link in a document loaded in a > > > loadpanel, it loads the new page over the top of the main > > window, not into > > > the loadpanel. That's not good ;-) > > > > > > I've tried making the links javascript calls to call a setURL > > to load a new > > > document in the same loadpanel. The problem is that the > > document inside the > > > loadpanel doesn't seem to be "aware" of what loadpanel it is > > in. It's parent > > > appears to be the top level DynDocument, not the LoadPanel object. > > > > > > Does anyone have any ideas on how I can tell a document loaded into a > > > loadpanel, this is your loadpanel, use setURL on this? > > > > > > Thanks, > > > > > > Cameron. > > > > > > _______________________________________________ > > > Dynapi-Help mailing list > > > Dyn...@li... > > > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > > > > _______________________________________________ > > Dynapi-Help mailing list > > Dyn...@li... > > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help |
From: Cameron H. <ca...@bi...> - 2000-12-06 14:15:52
|
> I'm not sure if this is what you're looking for, but why not try > something like ... > > <a href="#" onClick="whateverLayer.setHTML('page.html')">My Link</a> > > If you don't know what whateverLayer is in adavnce, you could use > document.write to change the name of the layer. that works if you know what whatevenLayer is, but unfortunately I don't. I thought that the document loaded into the loadpanel would know what whateverLayer is (ie the layer it got loaded into) but it doesn't seem to. I'm not what you mean by using document.write to change the name of the layer? Thanks, Cameron. > > Let me know if you come across a better solution, or indeed if > anyone has come across a > solution to submitting a form and giving it a target inside a loadpanel. > > Mark > > Cameron Hart wrote: > > > I've got a question about links inside html files loaded into a > loadpanel. > > > > I am building a site that uses multiple loadpanels at the same time. All > > these loadpanels contain external html documents. Some of these > documents > > have links in them. If you click on a link in a document loaded in a > > loadpanel, it loads the new page over the top of the main > window, not into > > the loadpanel. That's not good ;-) > > > > I've tried making the links javascript calls to call a setURL > to load a new > > document in the same loadpanel. The problem is that the > document inside the > > loadpanel doesn't seem to be "aware" of what loadpanel it is > in. It's parent > > appears to be the top level DynDocument, not the LoadPanel object. > > > > Does anyone have any ideas on how I can tell a document loaded into a > > loadpanel, this is your loadpanel, use setURL on this? > > > > Thanks, > > > > Cameron. > > > > _______________________________________________ > > Dynapi-Help mailing list > > Dyn...@li... > > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help |
From: Doug M. <do...@cr...> - 2000-12-06 14:01:53
|
<html><head><title>Treenode widget demo</title><script = language=3D"Javascript" src=3D"./js/dynapi.js"></script><script = language=3D"Javascript"> var theme=3D"./images/themes/enlightenment/"; document.write('<script language=3D"Javascript" = src=3D"'+theme+'style.js"><'+'/'+'script>'); DynAPI.setLibraryPath('./js/lib/'); DynAPI.include('dynacore.api.*'); DynAPI.include('dynacore.gui.emptyskintreenode.js'); DynAPI.include('dynacore.gui.skintreenode.js'); DynAPI.include('dynacore.gui.tempskintreenode.js'); DynAPI.onLoad =3D function(){ example =3D new CoreSkinTreenode(10,10,175,'Catalogue',theme); example.setColor('#FFFFFF'); Dress=3Dexample.add('Skating Dresses',''); N901=3DDress.add('Twizzle','catalog_content_supplier.asp?id=3D901'); skirt=3DN901.add('Skirts',''); N90101=3Dskirt.addTemp('84 Grand Prix = Skirt','catalog_content_product_init.asp?id=3D90101&catstring=3Dskirt&cat= type=3D3'); N90102=3Dskirt.addTemp('93 Double = Skirt','catalog_content_product_init.asp?id=3D90102&catstring=3Dskirt&cat= type=3D3'); N90103=3Dskirt.addTemp('94 Extra Full = Skirt','catalog_content_product_init.asp?id=3D90103&catstring=3Dskirt&cat= type=3D3'); N90104=3Dskirt.addTemp('103 It\'s a Wrap - = Print','catalog_content_product_init.asp?id=3D90104&catstring=3Dskirt&cat= type=3D3'); N90105=3Dskirt.addTemp('104 It\'s a Wrap - Velvet = Burnout','catalog_content_product_init.asp?id=3D90105&catstring=3Dskirt&c= attype=3D3'); N90106=3Dskirt.addTemp('106 It\'s a Wrap = Glissenette','catalog_content_product_init.asp?id=3D90106&catstring=3Dski= rt&cattype=3D3'); DynAPI.document.addChild(example); example.setVisible('True'); //example.expand(true); } </script></head><body></body></html> |
From: Mark P. <mar...@hi...> - 2000-12-06 13:48:31
|
I'm not sure if this is what you're looking for, but why not try something like ... <a href="#" onClick="whateverLayer.setHTML('page.html')">My Link</a> If you don't know what whateverLayer is in adavnce, you could use document.write to change the name of the layer. Let me know if you come across a better solution, or indeed if anyone has come across a solution to submitting a form and giving it a target inside a loadpanel. Mark Cameron Hart wrote: > I've got a question about links inside html files loaded into a loadpanel. > > I am building a site that uses multiple loadpanels at the same time. All > these loadpanels contain external html documents. Some of these documents > have links in them. If you click on a link in a document loaded in a > loadpanel, it loads the new page over the top of the main window, not into > the loadpanel. That's not good ;-) > > I've tried making the links javascript calls to call a setURL to load a new > document in the same loadpanel. The problem is that the document inside the > loadpanel doesn't seem to be "aware" of what loadpanel it is in. It's parent > appears to be the top level DynDocument, not the LoadPanel object. > > Does anyone have any ideas on how I can tell a document loaded into a > loadpanel, this is your loadpanel, use setURL on this? > > Thanks, > > Cameron. > > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help |
From: Cameron H. <ca...@bi...> - 2000-12-06 13:07:46
|
I've got a question about links inside html files loaded into a loadpanel. I am building a site that uses multiple loadpanels at the same time. All these loadpanels contain external html documents. Some of these documents have links in them. If you click on a link in a document loaded in a loadpanel, it loads the new page over the top of the main window, not into the loadpanel. That's not good ;-) I've tried making the links javascript calls to call a setURL to load a new document in the same loadpanel. The problem is that the document inside the loadpanel doesn't seem to be "aware" of what loadpanel it is in. It's parent appears to be the top level DynDocument, not the LoadPanel object. Does anyone have any ideas on how I can tell a document loaded into a loadpanel, this is your loadpanel, use setURL on this? Thanks, Cameron. |
From: Peter L. <com...@op...> - 2000-12-06 12:37:32
|
Bill Download and try the latest Novell Client. No problems here. :-) Regards Peter Luxmore, CNE CompSync Technologies Bill Wheaton wrote: > Not everyone wants to load the Flash plugin on their system (or is allowed > to). I don't. Every time I load another plugin on my system something > breaks, like my novell login. ack > Think this is impressive? > Try www.doubleyou.com ! > > "Matthew Shirey" <PK...@tu...> wrote: > > I am seriously impressed by this site... but I have to ask, why wouldn't > > someone use Flash for something like this and gain the added compatibility > > of supporting the Mac and earlier versions of NS and IE? It's very nice > but > > it really reminds me of most things I see done in Flash. > > > > M. > > > > -----Original Message----- > > From: dyn...@li... > > [mailto:dyn...@li...]On Behalf Of Roger > Johansson > > Sent: Tuesday, December 05, 2000 1:33 AM > > To: dyn...@li... > > Subject: Re: [Dynapi-Help] Scroll2 and List > > > > on 00-12-04 17.15, Thomas Voirol at tv...@co... wrote: > > > > > Peter said: > > > > > > --------------------------------------- > > > > > > Who ever developed www.zara.com deserves a medal. Mind blowing stuff. > > > > Unfortunately, it is also "Mac blowing stuff"... yeah, I know there is a > > disclaimer when you enter the site.. but I had to try anyway ;-P > > It freezes my Mac (and every other Mac I tried it on) every time. I checked > > it out from a Wintel machine to know what I'm missing, and I agree, very > > nice stuff. > > > > /R > > -- > > Roger Johansson > > Framfab, Lilla Torget 6, SE-403 17 Gothenburg, Sweden > > Phone +46 31 13 34 44 > > http://www.framfab.com/ > > -- > > > > _______________________________________________ > > Dynapi-Help mailing list > > Dyn...@li... > > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > > > > _______________________________________________ > > Dynapi-Help mailing list > > Dyn...@li... > > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > > ____________________________________________________________________ > Get free email and a permanent address at http://www.netaddress.com/?N=1 > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help |
From: Peter L. <com...@op...> - 2000-12-06 12:36:54
|
Ivan Yeah I know. Thats because its still DynAPI 1. Regards Peter Luxmore CompSync Technologies Iván Rodríguez Murillo wrote: > Your drag code doesn't work on internet explorer 5.5 > I can´t drag the image. > > I have tried with Netscape 4.7 and it's ok. > > ----- Original Message ----- > From: "Peter Luxmore" <com...@op...> > To: <dyn...@li...> > Sent: Monday, December 04, 2000 9:10 AM > Subject: [Dynapi-Help] Scroll2 and List > > > Hi > > > > Thank you to all contributing developers working on the DynAPI 2 > > project. Excellent work. > > > > I am a Coldfusion developer and I have been using the scroll2 and list > > widgets from DynAPI 1 for a while and will be looking forward to > > upgrading to the DynAPI 2 when its officially released. (currently in > > R&D) > > > > Try this link: http://www.choice.com.au/calculators/washer1.cfm > > > > a) Leave all options default on the "Your Wish List" page, then hit the > > "Find Them For Me" at the bottom of the page. > > b) Select two or three profiles (the checkbox), then hit the "Show Me > > Detailed Profiles" at the bottom of the page. > > > > The next page has the scroll2 widget loaded by external html and with > > customised scrollbar, and page data populated with data from the SQL > > Server 7.0 database via ColdFusion as well as the list widget populated > > with your selections from the previous page(s). > > > > Some Questions: > > 1. Will the new scroll widget have optional horizontal and vertical > > scrollbars? > > 2. Will IlMaestro's version of his scroll object have a transparent > > background and the ability to customise the scrollbars. > > > > I am thinking of developing a widget to scroll through a series of > > preloaded thumbnail jpg images, similar to the gifanim demo, either by a > > horizontal scrollbar or VCR type controls. Also the ability to select > > the currently visible image to view a larger image or whatever. > > Is it possible to do this and has anyone already developed such a > > widget? If not I will have to give it a go. New to this so I will need > > some pointers first. > > > > Who ever developed www.zara.com deserves a medal. Mind blowing stuff. > > > > Regards > > Peter Luxmore > > CompSync Technologies. > > > > > > _______________________________________________ > > Dynapi-Help mailing list > > Dyn...@li... > > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > > _________________________________________________________ > Do You Yahoo!? > Get your free @yahoo.com address at http://mail.yahoo.com > > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help |
From: Peter L. <com...@op...> - 2000-12-06 12:36:50
|
Mathew Take a closer look. They have incorporated some good Flash stuff there too. Look at cosmetics and on the Kids level. Regards Peter Luxmore Matthew Shirey wrote: > I am seriously impressed by this site... but I have to ask, why wouldn't > someone use Flash for something like this and gain the added compatibility > of supporting the Mac and earlier versions of NS and IE? It's very nice but > it really reminds me of most things I see done in Flash. > > M. > > -----Original Message----- > From: dyn...@li... > [mailto:dyn...@li...]On Behalf Of Roger Johansson > Sent: Tuesday, December 05, 2000 1:33 AM > To: dyn...@li... > Subject: Re: [Dynapi-Help] Scroll2 and List > > on 00-12-04 17.15, Thomas Voirol at tv...@co... wrote: > > > Peter said: > > > > --------------------------------------- > > > > Who ever developed www.zara.com deserves a medal. Mind blowing stuff. > > Unfortunately, it is also "Mac blowing stuff"... yeah, I know there is a > disclaimer when you enter the site.. but I had to try anyway ;-P > It freezes my Mac (and every other Mac I tried it on) every time. I checked > it out from a Wintel machine to know what I'm missing, and I agree, very > nice stuff. > > /R > -- > Roger Johansson > Framfab, Lilla Torget 6, SE-403 17 Gothenburg, Sweden > Phone +46 31 13 34 44 > http://www.framfab.com/ > -- > > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help |
From: Peter L. <com...@op...> - 2000-12-06 12:36:38
|
Nuno Not to mention the additional problem of developing ColdFusion code, HTML, JavaScript, and CSS combined and getting it all to be compatible. Took me a while to figure out how to get Dynamic Content into the scroll2 object. I can now develop more data-aware widgets based on DynAPI 2. Adds another level to the meaning of the word "Dynamic". Regards Peter Luxmore CompSync Technologies. Nuno Ferreira wrote: > That's an easy one to answer... > Database Access... > Unless you use Generator or something, it's still very very tricky > to use Dynamic Content with Flash. That's why I got drawn to the > DynAPI in the first place. And besides, did you see the load sizes > and speed of execution of a flash movie that makes heavily use of bitmap > images? They're staggering! > > NunoF > > -----Original Message----- > From: dyn...@li... > [mailto:dyn...@li...]On Behalf Of Matthew > Shirey > Sent: terca-feira, 5 de Dezembro de 2000 17:39 > To: dyn...@li... > Subject: RE: [Dynapi-Help] Scroll2 and List > > I am seriously impressed by this site... but I have to ask, why wouldn't > someone use Flash for something like this and gain the added compatibility > of supporting the Mac and earlier versions of NS and IE? It's very nice but > it really reminds me of most things I see done in Flash. > > M. > > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help |
From: Doug M. <do...@cr...> - 2000-12-06 12:14:25
|
An other option as I see it would be to hold an array of 'records' in my = main program and load the treenodes from the data in said records when the record's = parent node is expanded... Again, looking for direction.. Thanks, Doug Melvin ----- Original Message -----=20 From: Doug Melvin=20 To: dyn...@li...=20 Sent: Wednesday, December 06, 2000 4:12 AM Subject: Re: [Dynapi-Help] SkinTreeNode: slowwww.. Thank you for your suggestion.. Now that you mention it, that should = indeed do the trick! Thank you, Doug Melvin Integrated System Solutions: Design, Development, Implementation and = Support Creative-Workshop.com ----- Original Message -----=20 From: Pascal Bestebroer=20 To: dyn...@li...=20 Sent: Wednesday, December 06, 2000 12:49 AM Subject: RE: [Dynapi-Help] SkinTreeNode: slowwww.. There's a way to solve it, using caching.. this is not yet = implemented in the current code but it shouldn't be that hard to = perform. You should change the code so that treenodes are not created = by default (only the top visible level) and once a node expands check to = see if the child nodes are created, if not.. create those dynlayers at = that point That should give a huge speed increase, but requires some coding :) Pascal Bestebroer=20 pb...@oi...=20 http://www.oibv.com=20 -----Oorspronkelijk bericht----- Van: dyn...@li... = [mailto:dyn...@li...]Namens Doug Melvin Verzonden: woensdag 6 december 2000 9:47 Aan: dynapi-help Onderwerp: [Dynapi-Help] SkinTreeNode: slowwww.. I am currently loading 310 nodes in total.. and it's VERY slow.. is there any way that it can be sped up? is there anything I can = discard? only need to be able to add nodes, expand and collapse nodes, and = click in a node itself (<a href=3D... in title?). it takes about 15 seconds to render (and the boss want under 10) System: Windows 98 AMD Duron 600 mhz 128 Megs pc100 RAM Thank you, Doug Melvin Integrated System Solutions: Design, Development, Implementation = and Support Creative-Workshop.com |
From: Doug M. <do...@cr...> - 2000-12-06 12:11:09
|
And now.. I must admit defeat.. I just don't have the experience with = Jscrip objects to whip this one outta my ear as usual.. so.. how about = some tips/hints as to how I can accomplish this? I'm thinking that I need to off-load a whole bunch of the initialization = of the TreeSkinNode into and INIT() method. and then call this init method the first time that the = object's Repaint() method is called.. I'm just not sure _WHAT_ to offload.... Still plugging at it.. Doug Melvin ----- Original Message -----=20 From: Doug Melvin=20 To: dyn...@li...=20 Sent: Wednesday, December 06, 2000 4:12 AM Subject: Re: [Dynapi-Help] SkinTreeNode: slowwww.. Thank you for your suggestion.. Now that you mention it, that should = indeed do the trick! Thank you, Doug Melvin Integrated System Solutions: Design, Development, Implementation and = Support Creative-Workshop.com ----- Original Message -----=20 From: Pascal Bestebroer=20 To: dyn...@li...=20 Sent: Wednesday, December 06, 2000 12:49 AM Subject: RE: [Dynapi-Help] SkinTreeNode: slowwww.. There's a way to solve it, using caching.. this is not yet = implemented in the current code but it shouldn't be that hard to = perform. You should change the code so that treenodes are not created = by default (only the top visible level) and once a node expands check to = see if the child nodes are created, if not.. create those dynlayers at = that point That should give a huge speed increase, but requires some coding :) Pascal Bestebroer=20 pb...@oi...=20 http://www.oibv.com=20 -----Oorspronkelijk bericht----- Van: dyn...@li... = [mailto:dyn...@li...]Namens Doug Melvin Verzonden: woensdag 6 december 2000 9:47 Aan: dynapi-help Onderwerp: [Dynapi-Help] SkinTreeNode: slowwww.. I am currently loading 310 nodes in total.. and it's VERY slow.. is there any way that it can be sped up? is there anything I can = discard? only need to be able to add nodes, expand and collapse nodes, and = click in a node itself (<a href=3D... in title?). it takes about 15 seconds to render (and the boss want under 10) System: Windows 98 AMD Duron 600 mhz 128 Megs pc100 RAM Thank you, Doug Melvin Integrated System Solutions: Design, Development, Implementation = and Support Creative-Workshop.com |
From: Raymond S. <dst...@or...> - 2000-12-06 09:16:37
|
One problem with the example (IE) is using "scroll" as a name of the = scroll widget. scroll =3D new ScrollPane(label1) // label1 will be set as the content scroll.setSize(150,150) scroll.moveTo(250,50) scroll.setBgColor('#c0c0c0') Changing scroll to birdwacker will at least allow the window to form. = Still has problems through. DS |
From: Doug M. <do...@cr...> - 2000-12-06 09:14:14
|
Thank you for your suggestion.. Now that you mention it, that should = indeed do the trick! Thank you, Doug Melvin Integrated System Solutions: Design, Development, Implementation and = Support Creative-Workshop.com ----- Original Message -----=20 From: Pascal Bestebroer=20 To: dyn...@li...=20 Sent: Wednesday, December 06, 2000 12:49 AM Subject: RE: [Dynapi-Help] SkinTreeNode: slowwww.. There's a way to solve it, using caching.. this is not yet implemented = in the current code but it shouldn't be that hard to perform. You = should change the code so that treenodes are not created by default = (only the top visible level) and once a node expands check to see if the = child nodes are created, if not.. create those dynlayers at that point That should give a huge speed increase, but requires some coding :) Pascal Bestebroer=20 pb...@oi...=20 http://www.oibv.com=20 -----Oorspronkelijk bericht----- Van: dyn...@li... = [mailto:dyn...@li...]Namens Doug Melvin Verzonden: woensdag 6 december 2000 9:47 Aan: dynapi-help Onderwerp: [Dynapi-Help] SkinTreeNode: slowwww.. I am currently loading 310 nodes in total.. and it's VERY slow.. is there any way that it can be sped up? is there anything I can = discard? only need to be able to add nodes, expand and collapse nodes, and = click in a node itself (<a href=3D... in title?). it takes about 15 seconds to render (and the boss want under 10) System: Windows 98 AMD Duron 600 mhz 128 Megs pc100 RAM Thank you, Doug Melvin Integrated System Solutions: Design, Development, Implementation and = Support Creative-Workshop.com |
From: Pascal B. <pb...@oi...> - 2000-12-06 08:50:16
|
There's a way to solve it, using caching.. this is not yet implemented in the current code but it shouldn't be that hard to perform. You should change the code so that treenodes are not created by default (only the top visible level) and once a node expands check to see if the child nodes are created, if not.. create those dynlayers at that point That should give a huge speed increase, but requires some coding :) Pascal Bestebroer pb...@oi... http://www.oibv.com -----Oorspronkelijk bericht----- Van: dyn...@li... [mailto:dyn...@li...]Namens Doug Melvin Verzonden: woensdag 6 december 2000 9:47 Aan: dynapi-help Onderwerp: [Dynapi-Help] SkinTreeNode: slowwww.. I am currently loading 310 nodes in total.. and it's VERY slow.. is there any way that it can be sped up? is there anything I can discard? only need to be able to add nodes, expand and collapse nodes, and click in a node itself (<a href=... in title?). it takes about 15 seconds to render (and the boss want under 10) System: Windows 98 AMD Duron 600 mhz 128 Megs pc100 RAM Thank you, Doug Melvin Integrated System Solutions: Design, Development, Implementation and Support Creative-Workshop.com |
From: Doug M. <do...@cr...> - 2000-12-06 07:46:57
|
I am currently loading 310 nodes in total.. and it's VERY slow.. is there any way that it can be sped up? is there anything I can = discard? only need to be able to add nodes, expand and collapse nodes, and click = in a node itself (<a href=3D... in title?). it takes about 15 seconds to render (and the boss want under 10) System: Windows 98 AMD Duron 600 mhz 128 Megs pc100 RAM Thank you, Doug Melvin Integrated System Solutions: Design, Development, Implementation and = Support Creative-Workshop.com |
From: Max C. <ma...@bi...> - 2000-12-06 04:23:15
|
Hi again Brandon, I think I can throw some light onto my problem. The following codw works just fine. gridDiv = new DynLayer() gridDiv.setSize(intScreenWidth,intScreenHeight) gridDiv.setBgColor('lightslategray') gridDiv.moveTo(10,10) this.document.addChild(gridDiv) gridDiv.loadHTML('generic.html') gridDiv.css.borderWidth="2px" gridDiv.css.borderColor="#d4947f" gridDiv.css.borderStyle="solid" gridDiv.setVisible(true) However if I change to the following:- mainpage=new DynDocument(parent.page) gridDiv = new DynLayer() gridDiv.setSize(intScreenWidth,intScreenHeight) gridDiv.setBgColor('lightslategray') gridDiv.moveTo(10,10) mainpage.addChild(gridDiv) gridDiv.loadHTML('generic.html') gridDiv.css.borderWidth="2px" gridDiv.css.borderColor="#d4947f" gridDiv.css.borderStyle="solid" gridDiv.setVisible(true) then its NO GO Appears to be a problem handling the DynDocument? I hope I am helping and not causing more problems. Max ----- Original Message ----- From: "Brandon Myers" <bnd...@ho...> To: <dyn...@li...> Sent: Wednesday, December 06, 2000 9:03 AM Subject: Re: [Dynapi-Help] loadHTML > For all those that want to use loadHTML object: > > Check the case of dynAPI > If the D in dyn should be caps. > dynAPI --> DynAPI > > line 99: > dyndoc.addEventListener(lqLoadEvent) > : > DynAPI.dyndoc.addEventListener(lqLoadEvent) > > Now. If the API has been changed back, and it doesn't support firing onLoad > in the loadHandler of DynAPI object, there will be a problem, and you should > move the > DynAPI.loadQueuedHTML(); > to the end of the loadhandler in the DynAPI object. > > There's another thing... I believe in the public release of DynAPI it's > DynAPI.document not DynAPI.dyndoc. > > Simple search and replace will fix this. I made quite a few enhancements and > speed increases to the core. It's quite stable. > > > ----- Original Message ----- > From: "Geoffrey Makstutis" <gm...@51...> > To: <dyn...@li...> > Sent: Sunday, November 26, 2000 5:14 PM > Subject: [Dynapi-Help] loadHTML > > > > I'm trying to load external content into a dynlayer using the > loadHTML-public.js file (supplied by Brandon Myers). However, I keep getting > a series of errors as follows: > > > > dyndoc is not defined > > > > followed by: > > > > dynAPI is not defined > > > > The code I'm using is: > > > > <script language="Javascript" src="./js/dynapi.js"></script> > > <script language="Javascript"> > > > > DynAPI.setLibraryPath('./js/lib/') > > DynAPI.include('dynapi.api.dynlayer') > > DynAPI.include('dynapi.api.browser') > > DynAPI.include('dynapi.api.dyndocument') > > DynAPI.include('dynapi.api.events') > > DynAPI.include('dynapi.ext.slide') > > DynAPI.include('dynapi.ext.loadHTML-public') > > > > DynAPI.onLoad=function() { > > myLayer = new DynLayer() > > myLayer.setSize(100,100) > > myLayer.setBgColor('#c0c0c0') > > myLayer.moveTo(100,100) > > dynAPI.dyndoc.addChild(myLayer) > > myLayer.loadHTML('index.html') > > } > > > > Can anyone suggest a fix or is there a better .js file for loading > external content into a layer? > > > > Thanks > > > > > > _______________________________________________ > > Dynapi-Help mailing list > > Dyn...@li... > > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > |
From: Max C. <ma...@bi...> - 2000-12-06 03:56:05
|
Afternoon Brandon, I would like to utilise your loadHTML method, but to date I am unable to gain a start. in the onLoad event mainpage.addChild(gridDiv) loadHTML('generic.html') I get an error on the following line (99) DynAPI.dyndoc.addEventListener(lqLoadEvent) Any suggestions, I was unable to follow the rest of your instructions in the Email. thanks Max ----- Original Message ----- From: "Brandon Myers" <bnd...@ho...> To: <dyn...@li...> Sent: Wednesday, December 06, 2000 9:03 AM Subject: Re: [Dynapi-Help] loadHTML > For all those that want to use loadHTML object: > > Check the case of dynAPI > If the D in dyn should be caps. > dynAPI --> DynAPI > > line 99: > dyndoc.addEventListener(lqLoadEvent) > : > DynAPI.dyndoc.addEventListener(lqLoadEvent) > > Now. If the API has been changed back, and it doesn't support firing onLoad > in the loadHandler of DynAPI object, there will be a problem, and you should > move the > DynAPI.loadQueuedHTML(); > to the end of the loadhandler in the DynAPI object. > > There's another thing... I believe in the public release of DynAPI it's > DynAPI.document not DynAPI.dyndoc. > > Simple search and replace will fix this. I made quite a few enhancements and > speed increases to the core. It's quite stable. > > > ----- Original Message ----- > From: "Geoffrey Makstutis" <gm...@51...> > To: <dyn...@li...> > Sent: Sunday, November 26, 2000 5:14 PM > Subject: [Dynapi-Help] loadHTML > > > > I'm trying to load external content into a dynlayer using the > loadHTML-public.js file (supplied by Brandon Myers). However, I keep getting > a series of errors as follows: > > > > dyndoc is not defined > > > > followed by: > > > > dynAPI is not defined > > > > The code I'm using is: > > > > <script language="Javascript" src="./js/dynapi.js"></script> > > <script language="Javascript"> > > > > DynAPI.setLibraryPath('./js/lib/') > > DynAPI.include('dynapi.api.dynlayer') > > DynAPI.include('dynapi.api.browser') > > DynAPI.include('dynapi.api.dyndocument') > > DynAPI.include('dynapi.api.events') > > DynAPI.include('dynapi.ext.slide') > > DynAPI.include('dynapi.ext.loadHTML-public') > > > > DynAPI.onLoad=function() { > > myLayer = new DynLayer() > > myLayer.setSize(100,100) > > myLayer.setBgColor('#c0c0c0') > > myLayer.moveTo(100,100) > > dynAPI.dyndoc.addChild(myLayer) > > myLayer.loadHTML('index.html') > > } > > > > Can anyone suggest a fix or is there a better .js file for loading > external content into a layer? > > > > Thanks > > > > > > _______________________________________________ > > Dynapi-Help mailing list > > Dyn...@li... > > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > |
From: Robert R. <rra...@ya...> - 2000-12-06 03:08:56
|
For those who are having problems using the archive at sourceforge(geocrawler), you can now view the archive here: http://www.mail-archive.com/dyn...@li.../ http://www.mail-archive.com/dyn...@li.../ This archive will allow you to download attachments. Thus, you do not have to store emails that contain attachments forever. You can just get them from the archive. -- // Robert Rainwater |
From: Max C. <ma...@bi...> - 2000-12-06 02:49:52
|
Thanks Richard, This is the method that I have tried and it does work OK. I was just = interested whether I should or could be using the DynAPI. Thanks for the interest. Max ----- Original Message -----=20 From: Richard :o=20 To: dyn...@li...=20 Sent: Tuesday, December 05, 2000 1:02 PM Subject: Re: [Dynapi-Help] New Window hi, This doesn't have much to do with DynAPI, but you could do this: =20 function openSearchWindow(){ var searchCrit=3D'javascript'; var myWindow =3D = window.open('http://www.google.com/search?q=3D'+searchCrit,'mySearch','to= olbar=3Dyes,menubar=3Dyes,status=3Dyes'); }; =20 cheers, Richard:o) ----- Original Message -----=20 From: Max Campsell=20 To: dyn...@li...=20 Sent: Tuesday, December 05, 2000 11:23 PM Subject: [Dynapi-Help] New Window I am new to DynAPI and am proceeding to test with version 2. I would like to open a New window on the click of a button and pass = variable values to this new HTML or ASP page to create and send a mail = message. (using Jmail) Could I ask fo ideas as to the best way to perform this action. Thanks Max |
From: Richard :o <ma...@ri...> - 2000-12-06 02:34:05
|
hi, Several reasons, mainly I don't like flash. I don't like the interface, or the timeline-crap, the wysisyg, the horrible action script. I don't like the websites either, because flash developers seem to go overboard on every occasion, making stuff wink and wiggle all over the place, and stupid intromovies you have to skip each time. So if you use flash reasonably, without all the glitter, then I'd prefer to work in DHTML because of the control you retain over the document. There is however a legitimate use for flash as a tool in your toolbox, it's good for sound, and vector animations amongst other things. Many people contributing to DynAPI are developing professionally, and each professional website made in flash needs an HTML version as well, and this won't change as more and more low-end equipment like mobile phones and palmtops join the internet audience. Drag and Drop developers come a dime a dozen, if you understand the underlying code of something like DynAPI, you have a clear advantage when you need a robust professional website. just my thoughts... Richard :o) I would prefer ----- Original Message ----- From: "Matthew Shirey" <PK...@tu...> To: <dyn...@li...> Sent: Tuesday, December 05, 2000 6:38 PM Subject: RE: [Dynapi-Help] Scroll2 and List > I am seriously impressed by this site... but I have to ask, why wouldn't > someone use Flash for something like this and gain the added compatibility > of supporting the Mac and earlier versions of NS and IE? It's very nice but > it really reminds me of most things I see done in Flash. > > M. > > -----Original Message----- > From: dyn...@li... > [mailto:dyn...@li...]On Behalf Of Roger Johansson > Sent: Tuesday, December 05, 2000 1:33 AM > To: dyn...@li... > Subject: Re: [Dynapi-Help] Scroll2 and List > > on 00-12-04 17.15, Thomas Voirol at tv...@co... wrote: > > > Peter said: > > > > --------------------------------------- > > > > Who ever developed www.zara.com deserves a medal. Mind blowing stuff. > > Unfortunately, it is also "Mac blowing stuff"... yeah, I know there is a > disclaimer when you enter the site.. but I had to try anyway ;-P > It freezes my Mac (and every other Mac I tried it on) every time. I checked > it out from a Wintel machine to know what I'm missing, and I agree, very > nice stuff. > > /R > -- > Roger Johansson > Framfab, Lilla Torget 6, SE-403 17 Gothenburg, Sweden > Phone +46 31 13 34 44 > http://www.framfab.com/ > -- > > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > ____________________________________________________________ > Get your FREE personal .com domain name and > NAMEzero Personal Portal at: http://www.namezero.com. > For customer service, mailto:cus...@na.... > > |
From: Richard :o <ma...@ri...> - 2000-12-06 02:01:48
|
hi, This doesn't have much to do with DynAPI, but you could do this: function openSearchWindow(){ var searchCrit=3D'javascript'; var myWindow =3D = window.open('http://www.google.com/search?q=3D'+searchCrit,'mySearch','to= olbar=3Dyes,menubar=3Dyes,status=3Dyes'); }; cheers, Richard:o) ----- Original Message -----=20 From: Max Campsell=20 To: dyn...@li...=20 Sent: Tuesday, December 05, 2000 11:23 PM Subject: [Dynapi-Help] New Window I am new to DynAPI and am proceeding to test with version 2. I would like to open a New window on the click of a button and pass = variable values to this new HTML or ASP page to create and send a mail = message. (using Jmail) Could I ask fo ideas as to the best way to perform this action. Thanks Max |
From: Nuno F. <nun...@wi...> - 2000-12-05 23:27:46
|
That's an easy one to answer... Database Access... Unless you use Generator or something, it's still very very tricky to use Dynamic Content with Flash. That's why I got drawn to the DynAPI in the first place. And besides, did you see the load sizes and speed of execution of a flash movie that makes heavily use of bitmap images? They're staggering! NunoF -----Original Message----- From: dyn...@li... [mailto:dyn...@li...]On Behalf Of Matthew Shirey Sent: terca-feira, 5 de Dezembro de 2000 17:39 To: dyn...@li... Subject: RE: [Dynapi-Help] Scroll2 and List I am seriously impressed by this site... but I have to ask, why wouldn't someone use Flash for something like this and gain the added compatibility of supporting the Mac and earlier versions of NS and IE? It's very nice but it really reminds me of most things I see done in Flash. M. |
From: Max C. <ma...@bi...> - 2000-12-05 22:23:51
|
I am new to DynAPI and am proceeding to test with version 2. I would like to open a New window on the click of a button and pass = variable values to this new HTML or ASP page to create and send a mail = message. (using Jmail) Could I ask fo ideas as to the best way to perform this action. Thanks Max |
From: Brandon M. <bnd...@ho...> - 2000-12-05 22:02:00
|
For all those that want to use loadHTML object: Check the case of dynAPI If the D in dyn should be caps. dynAPI --> DynAPI line 99: dyndoc.addEventListener(lqLoadEvent) : DynAPI.dyndoc.addEventListener(lqLoadEvent) Now. If the API has been changed back, and it doesn't support firing onLoad in the loadHandler of DynAPI object, there will be a problem, and you should move the DynAPI.loadQueuedHTML(); to the end of the loadhandler in the DynAPI object. There's another thing... I believe in the public release of DynAPI it's DynAPI.document not DynAPI.dyndoc. Simple search and replace will fix this. I made quite a few enhancements and speed increases to the core. It's quite stable. ----- Original Message ----- From: "Geoffrey Makstutis" <gm...@51...> To: <dyn...@li...> Sent: Sunday, November 26, 2000 5:14 PM Subject: [Dynapi-Help] loadHTML > I'm trying to load external content into a dynlayer using the loadHTML-public.js file (supplied by Brandon Myers). However, I keep getting a series of errors as follows: > > dyndoc is not defined > > followed by: > > dynAPI is not defined > > The code I'm using is: > > <script language="Javascript" src="./js/dynapi.js"></script> > <script language="Javascript"> > > DynAPI.setLibraryPath('./js/lib/') > DynAPI.include('dynapi.api.dynlayer') > DynAPI.include('dynapi.api.browser') > DynAPI.include('dynapi.api.dyndocument') > DynAPI.include('dynapi.api.events') > DynAPI.include('dynapi.ext.slide') > DynAPI.include('dynapi.ext.loadHTML-public') > > DynAPI.onLoad=function() { > myLayer = new DynLayer() > myLayer.setSize(100,100) > myLayer.setBgColor('#c0c0c0') > myLayer.moveTo(100,100) > dynAPI.dyndoc.addChild(myLayer) > myLayer.loadHTML('index.html') > } > > Can anyone suggest a fix or is there a better .js file for loading external content into a layer? > > Thanks > > > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help |