You can subscribe to this list here.
| 2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(75) |
Nov
(252) |
Dec
(418) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2001 |
Jan
(659) |
Feb
(1039) |
Mar
(870) |
Apr
(235) |
May
(329) |
Jun
(251) |
Jul
(123) |
Aug
(119) |
Sep
(67) |
Oct
(194) |
Nov
(535) |
Dec
(133) |
| 2002 |
Jan
(122) |
Feb
(24) |
Mar
(29) |
Apr
(28) |
May
(16) |
Jun
(20) |
Jul
(11) |
Aug
(12) |
Sep
(13) |
Oct
(14) |
Nov
(23) |
Dec
(19) |
| 2003 |
Jan
(28) |
Feb
(170) |
Mar
(288) |
Apr
(211) |
May
(126) |
Jun
(166) |
Jul
(131) |
Aug
(102) |
Sep
(211) |
Oct
(301) |
Nov
(22) |
Dec
(6) |
| 2004 |
Jan
(14) |
Feb
(16) |
Mar
(7) |
Apr
|
May
(8) |
Jun
(25) |
Jul
(21) |
Aug
(2) |
Sep
(7) |
Oct
|
Nov
(2) |
Dec
(1) |
| 2005 |
Jan
(4) |
Feb
(2) |
Mar
(14) |
Apr
(24) |
May
(3) |
Jun
(7) |
Jul
(30) |
Aug
(5) |
Sep
(1) |
Oct
(3) |
Nov
|
Dec
(1) |
| 2006 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(4) |
Oct
|
Nov
|
Dec
|
|
From: Pascal B. <pb...@oi...> - 2000-11-23 13:13:22
|
basically you can simply post your patches and bug fixes to this mailing list.. there's nothing extra to a being a developer that is really being used, maybe posting patches.. but most of that is being done thru this list, I think. Pascal Bestebroer pb...@oi... http://www.oibv.com -----Oorspronkelijk bericht----- Van: dyn...@li... [mailto:dyn...@li...]Namens Matti Hultstrand Verzonden: donderdag 23 november 2000 13:33 Aan: 'dyn...@li...' Onderwerp: [Dynapi-Dev] How to register as a developer? Hello! How do I become a developer in the DynAPI II project? I couldn´t find where to register on the sourceforge site... Best regards Matti Hultstrand Stockholm, Sweden |
|
From: Matti H. <mat...@cy...> - 2000-11-23 11:39:32
|
Hello! How do I become a developer in the DynAPI II project? I couldn=B4t find = where to register on the sourceforge site...=20 Best regards Matti Hultstrand Stockholm, Sweden=20 |
|
From: Siegel, D. <DS...@ai...> - 2000-11-23 07:12:58
|
Hy! I'm new in this list and I want to introduce me: I'm a developer of internet software in Germany. We are developping a portal site for 150.000 customer. And we are using DynAPI for our software. To give your DynAPI community a kickback for your great work, I registered the interner site www.dynapi.de. On this site, I describe DynAPI, explain with HowTo Tours the use of DynAPI and programmed some Wizards for automatic generation of JavaScript Code for the use of DynAPI. The drawback is: all the site is in german. When the site is finished, I want to translate it to english (not by my self ;-) ). So I want to say thank you for the work on DynAPI and I hope to help you in the further development. Thanx Dirk Siegel Lufthansa AirPlus Servicekarten GmbH Dirk Siegel, Dipl. Inform. (Master of CS) Product Development eCommerce Solutions Tel. +49 (6102) 204-975 Fax +49 (6102) 204-729 eMail: ds...@ai... |
|
From: Pascal B. <pa...@dy...> - 2000-11-22 18:35:02
|
Ok, here's a fix to get inline layers working under NS6.. Note that there's
still a bug with events and images, but this bug is (probably) also with
normal dynlayers
replace this function in dynapi/ext/inline.js :
DynAPI.isDirectChildOf = function(l, parent) {
if(is.ns4) return (l.parentLayer == parent)
if(is.ie){
for(var p=l.parentElement;p;p=p.parentElement)
if(p.tagName.toLowerCase()=='div') return p==parent
return !parent.tagName
}
if (is.ns5) {
for(var p=l.parentNode;p.isChild;p=p.parentNode)
if(p.tagName.toLowerCase()=='div') return p==parent
return !parent.tagName
}
}
the is.ns5 part is added.. should do the trick
cya,
Pascal Bestebroer
pa...@dy...
http://www.dynamic-core.net
|
|
From: Jon <jo...@jo...> - 2000-11-21 23:17:42
|
I have a page that contains 5 inline DIVs. I've accessed each DIV using
DynAPI.document.all["<NameOfDiv>"]. For example:
generaldiv = DynAPI.document.all["generalDiv"];
When I resize the browser in Netscape 4.75, all of my dynamically created
layers are recreated, but the inline layers get hosed. I've tried using the
following code to remove them from the DynAPI.document and then re-add them,
but it doesn't work. Anyone have a similar problem that they were able to
solve?
Jon
---Begin Code---
// Recreate embedded DIVs
function recreate_divs()
{
generaldiv.removeFromParent();
generaldiv = DynAPI.document.all["generalDiv"];
generaldiv.setVisible( true );
generaldiv.setWidth( 300 );
eraldiv.moveTo(
leftpad+rulervert.getWidth()+rulerhor.getWidth(),
toppad+rulerhor.getHeight()+myToolbar.getHeight()+5
);
this.document.addChild(generaldiv);
}
---End Code---
|
|
From: Rob R. <ro...@ma...> - 2000-11-21 21:20:19
|
Okay I'm building a menuing system using DynAPI, everything is working great on window ie v5 and netscape v4, and mac netscape v4 but in testing the thing out on mac ie 5 I've run into an annoying problem. The menu is being built on the fly, I'm never sure how many lines of text will be in a menu entry because of the length of some item we wrap the text. Also the system is such that images can be substituted in for HTML text and it will work just fine, again image size from entry to entry may vary. So I've built the system such that each menu item is its own layer and as the content is added to the layer the height of the layer is determined using "getContentHeight()" and this value is tracked by the menu manager so it can work out where to position then next menu item. The problem I've come across is this on the Mac IE 5 getContentHeight returns as "NaN" a little exploration and it turns out that "this.elm.scrollHeight" which the getContentHeight() call uses returns "undefined". Other properties of the "elm", such a visibility return just fine. When I create a layer the standard way right in the HTML and query the scrollHeight Mac IE 5 returns the correct value. It may be a matter of timing as when I query the scrollHeight, but I do have the layer existing via the addChild call and as I said it works on all the other browser platform setups so I'm stumped. Any ideas? Thanks, Rob Romanek |
|
From: <ma...@ab...> - 2000-11-21 14:55:29
|
found the same "function does not always return a value"-bug
in DynLayer.prototype.captureMouseEvents()
solved it by quickly by adding
a "return true" at the end of the function
/matin
> -----Original Message-----
> From: martin ström [mailto:ma...@ab...]
> Sent: den 21 november 2000 15:46
> To: dyn...@li...
> Subject: netscape-bugs
>
>
> i found that early netscape-versions (4.05 and below, both
> win32 & mac) handles an empty array as false.
> example:
>
> testArray=[]
> if (testArray) alert(1)
> else alert(2)
>
> normally this code should alert(1) but those
> browsers alerts 2 which generates errors for
> example in the include() method:
>
> if (DynAPI.packages[pckg]) group=DynAPI.packages[pckg].libs[groupname]
>
> then the group-var is not beeing set and no files are included.
>
> the DynAPI.removeFromArray() generates an error-message
> "function does not always return a value"
>
> which i solved temporarly by changing the line
> if (id) { delete array[which.id]; return }
>
> to
>
> if (id) { delete array[which.id]; return null}
>
> maybe not correctly but then i at least can make
> some dynlayers on my testpage.
>
> i dont know if we should care about browsers this old
> but thought you guys should know..
> (i think complete ns6-support is more important)
>
> /martin
|
|
From: <ma...@ab...> - 2000-11-21 14:46:37
|
i found that early netscape-versions (4.05 and below, both
win32 & mac) handles an empty array as false.
example:
testArray=[]
if (testArray) alert(1)
else alert(2)
normally this code should alert(1) but those
browsers alerts 2 which generates errors for
example in the include() method:
if (DynAPI.packages[pckg]) group=DynAPI.packages[pckg].libs[groupname]
then the group-var is not beeing set and no files are included.
the DynAPI.removeFromArray() generates an error-message
"function does not always return a value"
which i solved temporarly by changing the line
if (id) { delete array[which.id]; return }
to
if (id) { delete array[which.id]; return null}
maybe not correctly but then i at least can make
some dynlayers on my testpage.
i dont know if we should care about browsers this old
but thought you guys should know..
(i think complete ns6-support is more important)
/martin
|
|
From: Jordi 'I. M. <jmi...@or...> - 2000-11-20 20:44:59
|
Back from the green pit, and upgrading to the latest version.
I'm porting my widget set to the latest version ( finally ) and, while
trying to have several inheritance levels (DynLayer->W1-W2) , I have
discovered some issues I find relevant. I understand this can be seen as a
secondary problem but here it goes:
- We want to have widgets inherit from widgets. So, we create a widget
called A and write
function A()
{
this.DynLayer = DynLayer
this.DynLayer()
blablabla
eventlistener
oncreate() Init stuff
addEventListener
}
A.prototype = new DynLayer
MEthods...
Widget A works perfectly. Then we want a more complicated widget B that
extends widget A.
function B()
{
this.A = A
this.A()
blablabla
more blablabla
eventlistener
oncreate() more Init stuff
addEventListener
}
B.prototype = new A
We do the test and everything seems OK. But then if we try having two or
more instances of B, events go crazy.
Finally I have realized that when we do B.prototype = new A, the code inside
As constructor adds an event listener to
the object (the oncreate one) thus defining the eventListener array and the
hasListeners variable.
Therefore all the instances of B will share both the value and the array. No
need to tell what this can cause. I'm working on
this and hopefully will post some workaround ( I'm not sure this is a bug in
the API ). I could have A's constructor to reassign the eventListener
array and the boolean value, but then the onCreate() of B would never be
executed.... Aaarggg !!!!
I'll deal with the problem myself, but any advice is appreciated.
I'm happy to see people finding bugs in the API, it means that the old ones
have been fixed :)
|
|
From: Scott A. L. <sc...@sc...> - 2000-11-20 17:44:36
|
This behavior is something I am currently trying to understand.
Netscape 6 and Mozilla use a DOM event model. In this model, the event
begins at the window (the top-most object) and travels inward towards
the target (for example, the text of a link that was clicked). Once the
event reaches the intended target, the event then does an about-face and
travels backward until it reaches the window. So there are three
seperate states of the event: traveling inward (event capture), reaching
the target, and traveling back outward (event bubbling). This is called
the Event Phase, and is exposed as a property on the event object itself
(I *think* it's e.eventPhase).
NS6/Mozilla allows you to choose the phase in which event handlers can
fire, based on your needs. For example, you can add an onmousedown
handler that only fires when the event is in the bubble (outward) phase.
Seeing as the DynAPI uses it's own event model to handle events, it's
entirely possible that the natural capture and bubble phases are
triggering DynAPI eventlisteners more than once. The DynAPI model makes
no distinction as to which direction the natural event is travelling, as
the DynAPI model forces bubble with it's own DynEvent objects. Your
temporary fix may be allowing enough time for the natural event to flush
out.
This is only my theory, as I don't have a full grasp on the NS6 event
model yet.
scottandrew
"xavi t." wrote:
>
> Hi guys,
>
> Dows anyone knows why Netscape6 trigger each mouse
> event more than one time, I mean: if you do a click
> over a layer with a EventListener the DynLayer will
> receive two or three events of the same type.
>
> I have been testing it, and I can't resolve the
> problem. I have been looking inside the DynAPI library
> (dynlayer.js and events.js) but I can't find any bug.
>
> The only way I found to avoid this 'bug' is doing
> something like this inside the onmousexxxx function:
>
> (the var way is initially '1')
>
> myEventListener.onmousedown = function (e) {
> me = e.getTarget()
> if (me.way==1) {
> me.way = 0;
> /* my code */
>
> // after 10 ms we will ready to listen
> another event of this kind
> setTimeout('me.way=1', 10)
> } else {
> /*do nothing cause this event has been done*/
> }
> }
>
> Thanks in advance,
>
> Javier Tejero
> Barcelona
> (Catalonia)
> SPAIN
>
> __________________________________________________
> Do You Yahoo!?
> Yahoo! Calendar - Get organized for the holidays!
> http://calendar.yahoo.com/
> _______________________________________________
> Dynapi-Dev mailing list
> Dyn...@li...
> http://lists.sourceforge.net/mailman/listinfo/dynapi-dev
--
scott andrew lepera
-----------------------------------
web stuff: www.scottandrew.com
music stuff: www.walkingbirds.com
|
|
From: Eytan H. <ey...@tr...> - 2000-11-20 17:18:35
|
If I had to guess I would say it is because of the Event Bubbling in NS6. The problem with your fix is that it is very unstable. Waiting 10 ms. That could cause problems in the future. I will look in to it. |
|
From: xavi t. <th...@ya...> - 2000-11-20 12:42:27
|
Hi guys,
Dows anyone knows why Netscape6 trigger each mouse
event more than one time, I mean: if you do a click
over a layer with a EventListener the DynLayer will
receive two or three events of the same type.
I have been testing it, and I can't resolve the
problem. I have been looking inside the DynAPI library
(dynlayer.js and events.js) but I can't find any bug.
The only way I found to avoid this 'bug' is doing
something like this inside the onmousexxxx function:
(the var way is initially '1')
myEventListener.onmousedown = function (e) {
me = e.getTarget()
if (me.way==1) {
me.way = 0;
/* my code */
// after 10 ms we will ready to listen
another event of this kind
setTimeout('me.way=1', 10)
} else {
/*do nothing cause this event has been done*/
}
}
Thanks in advance,
Javier Tejero
Barcelona
(Catalonia)
SPAIN
__________________________________________________
Do You Yahoo!?
Yahoo! Calendar - Get organized for the holidays!
http://calendar.yahoo.com/
|
|
From: Eytan H. <ey...@tr...> - 2000-11-20 11:31:41
|
Did you write those articles (Scripting For The 6.0 Browsers)? I liked the Jabberwocky bit. Beware the Jabberwock my son The jaws that bite The claws that snatch 8an |
|
From: Simon D. M. <di...@bi...> - 2000-11-20 11:28:25
|
> >Does anyone have a good site about the NS6 DOM. I want to start helping > >getting things to work in NS6 but I don't know enough about the DOM. > > > >Eytan There's also a downloadable DOM1 reference available at zvon.org > -----Original Message----- > From: dyn...@li... > [mailto:dyn...@li...]On Behalf Of Scott Andrew > LePera > Sent: 19 November 2000 20:12 > To: dyn...@li... > Subject: Re: [Dynapi-Dev] NS6 DOM > > > Eytan: > > I have posted links to many such resources on my site: > > http://www.scottandrew.com > > That should get you started. > > scottandrew > > ------ > scott andrew lepera > sc...@sc... > web stuff: www.scottandrew.com > music stuff: www.walkingbirds.com |
|
From: Scott A. L. <sc...@sc...> - 2000-11-19 20:10:47
|
Eytan: I have posted links to many such resources on my site: http://www.scottandrew.com That should get you started. scottandrew ------ scott andrew lepera sc...@sc... web stuff: www.scottandrew.com music stuff: www.walkingbirds.com -----Original Message----- From: Eytan Heidingsfeld <ey...@tr...> To: Dynapi-Dev <dyn...@li...> Date: Sunday, November 19, 2000 5:31 AM Subject: [Dynapi-Dev] NS6 DOM >Does anyone have a good site about the NS6 DOM. I want to start helping >getting things to work in NS6 but I don't know enough about the DOM. > >Eytan > >_______________________________________________ >Dynapi-Dev mailing list >Dyn...@li... >http://lists.sourceforge.net/mailman/listinfo/dynapi-dev > |
|
From: Scott A. L. <sc...@sc...> - 2000-11-19 20:08:56
|
Florian: I'm pretty sure this standard behavior in IE as well. Mousing over Layer 1 and then onto it's child, Layer 2, produces a mouseout event on Layer 1 (according to my tests). The DynAPI should capture and suppress this, I think. ------ scott andrew lepera sc...@sc... web stuff: www.scottandrew.com music stuff: www.walkingbirds.com -----Original Message----- From: Florian Kugler <f.k...@t-...> To: dyn...@li... <dyn...@li...> Date: Saturday, November 18, 2000 4:04 AM Subject: [Dynapi-Dev] mouseover events in nested layers >hi all. > >i've the following situation: > >x--------------------------x >| layer1 | >| | >| x---------------x | >| | layer2 | | >| x---------------x | >x--------------------------x > >my question: should layer1 trigger an mouseout event when moving the cursor >over layer2 ??? i don't think so and as far as i can remember ie and ns 4 >don't do that. >in ns6 this onmouseout event is triggered. (in the official ns6 release). > >florian. > >_______________________________________________ >Dynapi-Dev mailing list >Dyn...@li... >http://lists.sourceforge.net/mailman/listinfo/dynapi-dev > |
|
From: Pascal B. <pa...@dy...> - 2000-11-19 16:07:00
|
To make inline layers work in NS6, open the dynapi.ext.inline file
and change this method:
DynAPI.isDirectChildOf = function(l, parent) {
if(is.ns4) return (l.parentLayer == parent)
if(is.ie){
for(var p=l.parentElement;p;p=p.parentElement)
if(p.tagName.toLowerCase()=='div') return p==parent
return !parent.tagName
}
if (is.ns5) {
for(var p=l.parentNode;p.isChild;p=p.parentNode)
if(p.tagName.toLowerCase()=='div') return p==parent
return !parent.tagName
}
}
Still having problems with events and images, but this should atleast make
inline layers working.
Pascal Bestebroer
pa...@dy...
http://www.dynamic-core.net
|
|
From: Pascal B. <pa...@dy...> - 2000-11-19 13:40:20
|
I think we should change the include() method to this code:
include : function(src,path) {
if(src.substring(src.length-3)!=".js") src+=".js"
if (!path) {
var path=DynAPI.librarypath
var pckg=src.substring(0,src.indexOf('.'))
var groupname=src.substring(src.indexOf('.')+1)
var realsrc=groupname.substring(groupname.indexOf('.')+1)
groupname=groupname.substring(0,groupname.indexOf('.'))
if (src.indexOf('.*')>0) {
src=src.substring(0,src.indexOf('.*'))
if (DynAPI.packages[pckg]) group=DynAPI.packages[pckg].libs[groupname]
if (group) for (var i in group) document.write('<script
language="Javascript1.2"
src="'+path+pckg+'/'+groupname+'/'+group[i]+'"><\/script>')
else alert(DynAPI.toString()+'\n\nError occured\nThe following package
could not be loaded:\n'+src+'\n\nmake sure you specified the correct path.')
} else {
document.write('<script language="Javascript1.2"
src="'+path+pckg+'/'+groupname+'/'+realsrc+'"><\/script>')
}
} else {
document.write('<script language="Javascript1.2"
src="'+path+'/'+src+'"><\/script>')
}
This way you can call the include in a more flexible way, if you specify a
path variable you can include seperate javascript files. This was the main
reason the path variable was added once, but I don't think it ever worked as
we wanted it to :-)
If you specify no path parameter it will use the package.group.file
syntax, if you do specify a path it will simply load the src file from the
specified path (without adding package/group to it)
Pascal Bestebroer
pa...@dy...
http://www.dynamic-core.net
|
|
From: Eytan H. <ey...@tr...> - 2000-11-19 13:27:53
|
Does anyone have a good site about the NS6 DOM. I want to start helping getting things to work in NS6 but I don't know enough about the DOM. Eytan |
|
From: jason h. <jhe...@ov...> - 2000-11-18 20:59:00
|
nacho it loaded for me and was well worth the wait. the tight dhtml/flash intergration and loading screens easily make up for the loadtime... man this is one of the best sites I seen in DHTML..and that is saying alot....way to go nacho and crew.. jason -----Original Message----- From: dyn...@li... [mailto:dyn...@li...]On Behalf Of Doug Melvin Sent: Friday, November 17, 2000 5:40 PM To: dyn...@li... Subject: Re: [Dynapi-Dev] new web release using DynAPI2 - have a look Less-Is-More. After waiting about ten minutes to actually see some clothing (that's what they sell isn't it?) I got bored and left. Also, the legal info link at the top left does not work in NS and just plain disappeared at one point.. Just nagging. Doug Melvin Integrated System Solutions Design Development and Support Creative-Workshop.com ----- Original Message ----- From: NaCHo RaPaLLo To: dyn...@li... Sent: Friday, November 17, 2000 5:26 AM Subject: [Dynapi-Dev] new web release using DynAPI2 - have a look Hy guys. Having started with the old, great DynApi of Dan Steinman, this summer we realized your new Dynapi was evolving. Since then we begun developing this project following the new realeases of your DynAPI2, always checking both distributions - the official at sourceforge and the 'personalized' of Pascal - The result of this is shown to full effect in a new web site that went on-line yesterday. Check it out: www.zara.com With this we would like to thank you for all your efforts, because we definetly acknowledge this project is also YOURS. 4 your interest: we used 00.10.30 Pascal's version of DynAPI2 we mixed DHTML & Flash technologies lo dicho, gracias a todos nacho - na...@do... ciao filippo - fi...@do... ta agin mates richard - ri...@do... muchísimas gracias, como siempre fran - jf...@do... graciñas bea - be...@do... and all the www.doubleyou.com team |
|
From: <f.k...@t-...> - 2000-11-18 12:01:01
|
hi all. i've the following situation: x--------------------------x | layer1 | | | | x---------------x | | | layer2 | | | x---------------x | x--------------------------x my question: should layer1 trigger an mouseout event when moving the cursor over layer2 ??? i don't think so and as far as i can remember ie and ns 4 don't do that. in ns6 this onmouseout event is triggered. (in the official ns6 release). florian. |
|
From: Doug M. <do...@cr...> - 2000-11-17 22:41:43
|
Less-Is-More. After waiting about ten minutes to actually see some clothing (that's = what they sell isn't it?) I got bored and left. Also, the legal info = link at the top left does not work in NS and just plain disappeared at = one point.. Just nagging. Doug Melvin Integrated System Solutions Design Development and Support Creative-Workshop.com ----- Original Message -----=20 From: NaCHo RaPaLLo=20 To: dyn...@li...=20 Sent: Friday, November 17, 2000 5:26 AM Subject: [Dynapi-Dev] new web release using DynAPI2 - have a look Hy guys. Having started with the old, great DynApi of Dan Steinman, this summer = we realized your new Dynapi was evolving. Since then we begun developing = this project following the new realeases of your DynAPI2, always = checking both distributions - the official at sourceforge and the = 'personalized' of Pascal - The result of this is shown to full effect in a new web site that went = on-line yesterday. Check it out: www.zara.com With this we would like to thank you for all your efforts, because we = definetly acknowledge this project is also YOURS. 4 your interest:=20 we used 00.10.30 Pascal's version of DynAPI2 we mixed DHTML & Flash technologies lo dicho, gracias a todos =20 nacho - na...@do... ciao filippo - fi...@do... ta agin mates richard - ri...@do... much=EDsimas gracias, como siempre fran - jf...@do... graci=F1as bea - be...@do... and all the www.doubleyou.com team |
|
From: Richard :o\) <ma...@ri...> - 2000-11-17 22:13:03
|
Correction: It seems the loading time problems were caused by network problems at my = end - please excuse and disregard my comments on this issue. Richard:o)=20 ----- Original Message -----=20 From: Richard :o)=20 To: dyn...@li...=20 Sent: Thursday, November 16, 2000 10:13 PM Subject: Re: [Dynapi-Dev] new web release using DynAPI2 - have a look Hi, a few comments; Very original design and navigation, which also make it slightly = confusing. Get a much faster server, or cut down on the grafics, it took 2min = 50sec to load, and 70 secs on refresh, if I press "girl 1-5", another = minute wait, then error:line 638 parent.oculto.txt ... is null - on = refresh the text appeared. I'm on DSL (fast connection) IE5.5+winme. The main window froze after 10 minutes and needed ctrl+alt+del to = close. Check out http://www.microbians.com/ for nice implementation of popup = windows in ie. Cheers, Richard:o) ----- Original Message -----=20 From: NaCHo RaPaLLo=20 To: dyn...@li...=20 Sent: Friday, November 17, 2000 2:26 PM Subject: [Dynapi-Dev] new web release using DynAPI2 - have a look Hy guys. Having started with the old, great DynApi of Dan Steinman, this = summer we realized your new Dynapi was evolving. Since then we begun = developing this project following the new realeases of your DynAPI2, = always checking both distributions - the official at sourceforge and the = 'personalized' of Pascal - The result of this is shown to full effect in a new web site that = went on-line yesterday. Check it out: www.zara.com With this we would like to thank you for all your efforts, because = we definetly acknowledge this project is also YOURS. 4 your interest:=20 we used 00.10.30 Pascal's version of DynAPI2 we mixed DHTML & Flash technologies lo dicho, gracias a todos =20 nacho - na...@do... ciao filippo - fi...@do... ta agin mates richard - ri...@do... much=EDsimas gracias, como siempre fran - jf...@do... graci=F1as bea - be...@do... and all the www.doubleyou.com team |
|
From: Raymond S. <dst...@or...> - 2000-11-17 21:52:21
|
I like the "flash like" animotion, the problem I see is with memory = leaks + recursive animation using javascript. That's what causes the = browser to lock after 10 minutes. ----- Original Message -----=20 From: Richard :o)=20 To: dyn...@li...=20 Sent: Thursday, November 16, 2000 1:13 PM Subject: Re: [Dynapi-Dev] new web release using DynAPI2 - have a look Hi, a few comments; Very original design and navigation, which also make it slightly = confusing. Get a much faster server, or cut down on the grafics, it took 2min = 50sec to load, and 70 secs on refresh, if I press "girl 1-5", another = minute wait, then error:line 638 parent.oculto.txt ... is null - on = refresh the text appeared. I'm on DSL (fast connection) IE5.5+winme. The main window froze after 10 minutes and needed ctrl+alt+del to = close. Check out http://www.microbians.com/ for nice implementation of popup = windows in ie. Cheers, Richard:o) ----- Original Message -----=20 From: NaCHo RaPaLLo=20 To: dyn...@li...=20 Sent: Friday, November 17, 2000 2:26 PM Subject: [Dynapi-Dev] new web release using DynAPI2 - have a look Hy guys. Having started with the old, great DynApi of Dan Steinman, this = summer we realized your new Dynapi was evolving. Since then we begun = developing this project following the new realeases of your DynAPI2, = always checking both distributions - the official at sourceforge and the = 'personalized' of Pascal - The result of this is shown to full effect in a new web site that = went on-line yesterday. Check it out: www.zara.com With this we would like to thank you for all your efforts, because = we definetly acknowledge this project is also YOURS. 4 your interest:=20 we used 00.10.30 Pascal's version of DynAPI2 we mixed DHTML & Flash technologies lo dicho, gracias a todos =20 nacho - na...@do... ciao filippo - fi...@do... ta agin mates richard - ri...@do... much=EDsimas gracias, como siempre fran - jf...@do... graci=F1as bea - be...@do... and all the www.doubleyou.com team |
|
From: Richard :o\) <ma...@ri...> - 2000-11-17 21:12:12
|
Hi, a few comments; Very original design and navigation, which also make it slightly = confusing. Get a much faster server, or cut down on the grafics, it took 2min 50sec = to load, and 70 secs on refresh, if I press "girl 1-5", another minute = wait, then error:line 638 parent.oculto.txt ... is null - on refresh the = text appeared. I'm on DSL (fast connection) IE5.5+winme. The main window froze after 10 minutes and needed ctrl+alt+del to close. Check out http://www.microbians.com/ for nice implementation of popup = windows in ie. Cheers, Richard:o) ----- Original Message -----=20 From: NaCHo RaPaLLo=20 To: dyn...@li...=20 Sent: Friday, November 17, 2000 2:26 PM Subject: [Dynapi-Dev] new web release using DynAPI2 - have a look Hy guys. Having started with the old, great DynApi of Dan Steinman, this summer = we realized your new Dynapi was evolving. Since then we begun developing = this project following the new realeases of your DynAPI2, always = checking both distributions - the official at sourceforge and the = 'personalized' of Pascal - The result of this is shown to full effect in a new web site that went = on-line yesterday. Check it out: www.zara.com With this we would like to thank you for all your efforts, because we = definetly acknowledge this project is also YOURS. 4 your interest:=20 we used 00.10.30 Pascal's version of DynAPI2 we mixed DHTML & Flash technologies lo dicho, gracias a todos =20 nacho - na...@do... ciao filippo - fi...@do... ta agin mates richard - ri...@do... much=EDsimas gracias, como siempre fran - jf...@do... graci=F1as bea - be...@do... and all the www.doubleyou.com team |