Re: Re[2]: [Dynapi-Dev] IE6 strict / quirks

2001-10-17 Thread Richard Bennett
Hi, I did a little more research into the subject, and my email reply became so long, that I put it up as a web-page - that way I should be able to update the page with new test-results when available. I'd appreciate your comments/improvements. Testing from people with new Macs would also be app

Re: [Dynapi-Dev] Check out this DynLayer extension!

2001-10-17 Thread Jordi Ministral
May I suggest that you replace this: if (!this.created){ window.setTimeout(this+".findForms()",200); return null } with this: if (!this.created){ var r = new EventListener(this) r.oncreate = function(e) {

Re: [Dynapi-Dev] IE6 strict / quirks

2001-10-17 Thread Jordi Ministral
Whoa, my head is spinning. Yet another issue to take into account. How cool. Great research, in any case. Richard Bennett wrote: > Hi, > I did a little more research into the subject, and my email reply became so > long, that I put it up as a web-page - that way I should be able to update > the

[Dynapi-Dev] DynAPI 2.54 UltraPack Edition

2001-10-17 Thread Stephan Tolksdorf
Hi Steve, is your compression algorithm meant to be Navigator 4.7 compatible? I've got serious problems here... "Dynapi is undefined". Writing a large amount of code with document.write has always been a problem for Navigator. Executing the code with eval could be an alternative, but then every

RE: Re[2]: [Dynapi-Dev] IE6 strict / quirks

2001-10-17 Thread martin ström
Mac IE 5.0 Results: none of the alerts show, but no js-errors either Doctype strict - no URL - should be "true" <-- text is not same size Doctype strict with URL strict.dtd - should be "true" <-- text is same size Doctype strict with URL loose.dtd - should be "true", but Mozilla/NS6 are "false"

Re: [Dynapi-Dev] DynAPI 2.54 UltraPack Edition

2001-10-17 Thread Michael Pemberton
I have had no problems using eval() calls to load API content. The only requirement is that all global objects be attached to the window object. For example: DynLayer = function() {}; whould now read: window.DynLayer = function() {}; Once the object is attached to the window object, it

Re: Re[4]: [Dynapi-Dev] IE6 strict / quirks

2001-10-17 Thread Richard Bennett
sure, I know it's ugly, but it's valid. I'm doing this: strict=(if case1 is true)?(and case2 is true)?case1and2areTrue:case1isTrueCase2isFalse:case1isFalse Cheers, Richard. - Original Message - From: "Stephan Tolksdorf" <[EMAIL PROTECTED]> To: "Richard Bennett" <[EMAIL PROTECTED]> Se

[Dynapi-Dev] Next release

2001-10-17 Thread Jordi Ministral
Well I'm finally in condition to take over Robert's old duties, such as generating releases and so. I'm still learning all of the scripts in the site. There are some user permissions that Robert forgot to change over to me so I can't touch the scripts, but as soon as he fixes that I'll be able

[Dynapi-Dev] [ dynapi-Bugs-472050 ] Flash object in pushpanel ns6

2001-10-17 Thread noreply
Bugs item #472050, was opened at 2001-10-17 05:46 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=105757&aid=472050&group_id=5757 Category: DynAPI 2 Browser-Specific Group: None Status: Open Resolution: None Priority: 5 Submitted By: Leo Leinenga (leinenga) Assigned

Re[6]: [Dynapi-Dev] IE6 strict / quirks

2001-10-17 Thread Stephan Tolksdorf
> sure, I know it's ugly, but it's valid. > I'm doing this: > > strict=(if case1 is true)?(and case2 is > true)?case1and2areTrue:case1isTrueCase2isFalse:case1isFalse So why don't you set the brackets as following: strict = (bool1 ? (bool2 ? case1and2areTrue : case1isTrueCase2isFalse) : case1isF

[Dynapi-Dev] dynimage

2001-10-17 Thread Jordi Ministral
Someone please convince me it is worth using. Honestly I think that's forcing things too much: an object that encapsulates the already existing Image object... ___ Dynapi-Dev mailing list [EMAIL PROTECTED] http://www.mail-archive.com/dynapi-dev@lists

[Dynapi-Dev] [ dynapi-Bugs-423933 ] DynAPI scrolling issue with NS4.7 on Mac

2001-10-17 Thread noreply
Bugs item #423933, was opened at 2001-05-14 07:19 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=105757&aid=423933&group_id=5757 Category: DynAPI 2 Browser-Specific Group: Verified >Status: Closed >Resolution: Invalid Priority: 5 Submitted By: Mark Fletcher (mark_j

Re: [Dynapi-Dev] dynimage

2001-10-17 Thread Richard Bennett
I tried this too, but AFAIK native elements don't have the prototype property, so it fails. You can - in some instances - expand on a native element's properties, but only for a single instance. The solution is of course to use a "holder" object, that creates the image (or whatever) and then tak

Re: [Dynapi-Dev] dynimage

2001-10-17 Thread Richard Bennett
I'm so glad to hear this. I have never used a DynImage, except to try it out in a few examples, and it's the cause of several bugs at the moment. Not that we should delete it, as that would break backwards-compatibility, but mark it as depreciated. It is causing a bug in NS4, when re-sizing the

Re: Re[6]: [Dynapi-Dev] IE6 strict / quirks

2001-10-17 Thread Richard Bennett
Yes, I get your point, I'll change it to make it a bit more readable. Richard. - Original Message - From: "Stephan Tolksdorf" <[EMAIL PROTECTED]> To: "Richard Bennett" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Wednesday, October 17, 2001 5:12 PM Subject: Re[6]: [Dynapi-Dev] IE6

Re: [Dynapi-Dev] Next release

2001-10-17 Thread Richard Bennett
That's great, as far as I could make out the current snapshot doesn't seem to have any issues with IE6, and releasing this would allow us to clean up the bugposts relating to older versions. < To: "DynAPI-Dev" <[EMAIL PROTECTED]> Sent: Wednesday, October 17, 2001 4:54 PM Subject: [Dynapi-Dev] Nex

[Dynapi-Dev] strings and functions

2001-10-17 Thread Daniel LaLiberte
Stephan Tolksdorf writes: > Writing a large amount of code with document.write has always been a > problem for Navigator. Accumulating text in a variable might be better than calling document.write many times (certainly shorter), but don't do it with a series of separate assignments like this:

Re: [Dynapi-Dev] strings and functions

2001-10-17 Thread Stephan Tolksdorf
Hi Daniel, thanks for your tips concerning concatening strings before writing. But this method is not applicable for the algorithm in question. The whole is already written in one chunk. Combining multiple

Re: [Dynapi-Dev] strings and functions

2001-10-17 Thread Daniel LaLiberte
Stephan Tolksdorf writes: > Combining multiple

[Dynapi-Dev] [ dynapi-Bugs-471331 ] Browser Crash in Mozilla 0.9.5

2001-10-17 Thread noreply
Bugs item #471331, was opened at 2001-10-15 08:23 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=105757&aid=471331&group_id=5757 Category: DynAPI 2 Browser-Specific Group: Unverified Status: Open Resolution: None Priority: 5 Submitted By: Daniel Keller (jobe451) As