Re: [Dynapi-Dev] Who's who.

2001-05-31 Thread nicola
hi go ahead and remove me unfortunatly I don't have time now to help , even though I keep checking the dynapi mail lists , I'm in the developer list (Nicola Marzolla) ciao Y On Thu, 31 May 2001, Jordi Ministral wrote: > > Here's what the SourceForge site reports

RE: [Dynapi-Dev] OT: Forum instead of mailing-list (was: Sometimes I wonder...)

2001-05-09 Thread nicola
about european leaving in USA where do they belong too? Y On Wed, 09 May 2001, Marc van Leeuwen wrote: > > > >... if I'm the only one in the USA actively involved in this API. During > >the day (my day that is) very little activity here. > > > >Then "you guys" wake up and systematically crea

Re: [Dynapi-Dev] Ns4 onresize only happens on top frame ?

2001-05-03 Thread nicola
yup that's the deal about frames ciao Y On Thu, 03 May 2001, Jordi - IlMaestro - Ministral wrote: > > It seems that window.onresize does not get fired in frames in Ns4.x. > Only the top frame gets it fired. Anyone can confirm this ? > > > ___ > Dy

Re: [Dynapi-Dev] NN6 and getContentwidth

2001-05-03 Thread nicola
it does support the this.css.overflow='auto' but that's not the problem since ns 6 it's a very good browser (get me right on this one) as a few rendering problem so the only way to fix problem like that is using setTimout(whatever,0) this fix almost all of ns 6 rendering trouble ciao Y On Thu

Re: [Dynapi-Dev] Thread.prototype = new DynObject

2001-04-02 Thread nicola
You also get all the methods of a DynObject, but don't worry about > overweight. You only bind the prototype chains of both objects, making all thos > DynObject method available to the Thread, but they are not copied and no extra > memory is needed. see this is what I'm not too sure about ,but if

[Dynapi-Dev] Thread.prototype = new DynObject

2001-04-02 Thread nicola
question I got lost from this one : function Thread(dlyr) { // Inherit from object. Provides unique ID this.DynObject = DynObject this.DynObject() this.setDynLayer(dlyr); } Thread.prototype = new DynObject; now let's say that on a page I have : thread =

Re: [Dynapi-Dev] [ dynapi-Bugs-409601 ] Layer.setWidth() will not work correct

2001-03-20 Thread nicola
On Tue, 20 March 2001, [EMAIL PROTECTED] wrote: > > Bugs item #409601, was updated on 2001-03-18 14:30 > You can respond by visiting: > Declared var nBreite=100 > Using a listener on a layer I implemented onmousedown > like that: > nBreite=nBreite+5; > myLayer.setWidth(nBreite, false); >

RE: [Dynapi-Dev] DynAPI X

2001-03-13 Thread nicola
>I believe the test should be written in such a way >that if a browser >supports enough of the DOM, it should use the DOM code > rather than it's own proprietry way of doing things. >It is possible that if we have >a DOM branch >for a lot of the core API, things like Mac IE should >use the DOM

Re: [Dynapi-Dev] [ dynapi-Bugs-407346 ] syntax error in dynlayer.js

2001-03-09 Thread nicola
> > DynLayer.prototype.getInnerHTML=function() { > var s=""; > if (this.html!=null) s+=this.html; > for (var i=0;i s+=this.getOuterHTML(this.children[i]); > return s; > }; > if (is.ns4) { if you keep reading from here you'll see that there is the DynLayer.prototype.getOuterHTML

Re: [Dynapi-Dev] Browser Language Support

2001-03-08 Thread nicola
>I'm not one who has turned down NS6 because of bugs or >problems with the actual >program. The SOLE reason that >I have not upgraded to NS6 is because it is TOO IE >for >my likings. true but at least now you have controll of any single element on the page and you can play with stylesheet a

Re: [Dynapi-Dev] Suggestions for the DynAPI

2001-03-05 Thread nicola
those can be extension of DynLayer they don't have to be used only by a widget my question though is is it possible to change those property in ns 4? I mean is it as easy as ie and ns 6? Y ___ Dynapi-Dev mailing list [EMAIL PROTECTED] http://lists.so

Re: SV: [Dynapi-Dev] DynAPI layer techniques applied to windows

2001-03-04 Thread nicola
I don't know if this is might help u but if u don't want to call a setTimeout the only way I can thnk of is to call a function in the parent window in the onload event of the child window : Untitled body {font-family:verdana;fotn-size:12px;background-color:#00;co

RE: [Dynapi-Dev] The leak ..

2001-02-28 Thread nicola
> because my first idea would be that removeNode() is not always supported > (only in ie55 on win32 apparently :) and ie 5 ciao ___ Dynapi-Dev mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/dynapi-dev

Re: [Dynapi-Dev] Array splicing

2001-02-27 Thread nicola
use this for browsr that don't support slice: if (Array.prototype.splice && typeof([0].splice(0))=='number') Array.prototype.splice=null; if (!Array.prototype.splice) { Array.prototype.splice=function(start,del) { var a=arguments; if (typeof(start)!='number') start=0

Re: [Dynapi-Dev] Using DOM to create a table

2001-02-27 Thread nicola
this is some testing i did there might be some bugs not sure :) DynTable=function(x,y,w,h,col,border,pad,space){ var table = document.createElement('TABLE'); table.tr=[] table.setAttribute('border',border||0); table.setAttribute('cellPadding',pad||0); tabl

Re: [Dynapi-Dev] DynAPI current things

2001-02-22 Thread nicola
> * Do some speed optimisations > Mainly changes to the createElement that sounds great1 > * DOM defaults > All "if (is.xx) else..." statements should be changed so that the NS6 code > is always the default (basically, no NS6 check should be left in the code). i don't think ns 6 is a true DOM

Re: [Dynapi-Dev] [Bug #133325] Some properties don't work with netscape 6 or Mozilla

2001-02-20 Thread nicola
> Details: Well, i think everything is said in the title. U can create layers > or "easy2do" things, but when u'd like to use a scrollbar or other things > like that, it doesn't work with netscape 6 or the latest mozilla. Too bad, > this API is one of the best i've never seen :/ this is new I ne

Re: [Dynapi-Dev] errorHandler

2001-02-19 Thread nicola
try this: errorHandler : function (msg, url, lno) { if (is.ie) { alert("DynAPI reported an error\n\nError in project: '" + event.errorUrl + "'.\nLine number: " + event.errorLine + ".\n\nMessage: " + event.errorMessage) } else if (is.ns4) { alert("DynAPI reported an error\n\nError in f

Re: [Dynapi-Dev] DynAPI v2 Scroll- Update # 3

2001-02-19 Thread nicola
> See the end of the message you replied to.. > :-) > Doug sorry didn't read that > That's next on the agenda, right after making the Knob autosize.. this will be a pain in the ass in ns 6 coz of the contentWidth an height have fun ciao > c'ya > - Original Message - > From: <[EMAI

Re: [Dynapi-Dev] DynAPI v2 Scroll- Update # 3

2001-02-19 Thread nicola
just a suggestion if I keep the mouse down either in the arrows or the scrollbar itself shouldn't the content keep scrolling instead of having to click every time to move it ? ciao Y > > > Well, now. > > I have updated the Scroll widget.. > > Yes. Again. > > The widget behaves a little di

RE: [Dynapi-Dev] setHTML and Events

2001-02-17 Thread nicola
in CVS line 104 ,105 of events.js r there to fix the problem for ie and ns 6 for ns 4 there is no problem coz of the way events happen ciao Y > > What fix was that?? > > 8an > > ___ > Dynapi-Dev mailing list > [EMAIL PROTECTED] > http://lists.source

Re: [Dynapi-Dev] setHTML and Events

2001-02-17 Thread nicola
but this shouldn't happen with the fix made in the events.js even if u have text or an image it should be working I never had that problem ! ciao Y > Sounds to me like they put some text in an said text started blocking mouse > events > (think DynAPI 1 label object) > - Original Message

Re: [Dynapi-Dev] setHTML and Events

2001-02-16 Thread nicola
how did you make that happen ? it sounds impossible to me ! ciao Y > Why is it that when I call setHTML in netscape the mouse events stop > working? > > 8an > > > ___ > Dynapi-Dev mailing list > [EMAIL PROTECTED] > http://lists.sourceforge.net/lists

Re: [Dynapi-Dev] Added methods for DynDocument and DynLayer

2001-02-07 Thread nicola
> > What is wrong with adding four bug-free lines to eliminate the need for > repeatative coding further on. they can be extension of the DynLayer they r not required for it to work but they r a good tools when needed . So if u need 'em u can add 'em to your page or just add 'em to ur version

RE: [Dynapi-Dev] mulfiple events in ns5

2001-02-03 Thread nicola
you might wanna take a look to browser.js then u'll see we use is.ns5 for netscape 6 like is.ns for netscape in general or is.ie for internet explorer Y > > Whats ns5? > > Sorry for the ignorance but I thought there was 4.7 and then 6. > 8an > > _

Re: [Dynapi-Dev] setTimeout workarounds

2001-02-01 Thread nicola
> I saw that someone mentioned setTimeout workarounds. Where are these used. it has been used to get the contentWidth() and contentHeight(0 for ns 6 what u can do is put a setTimeout in the create element that we'll help ns 6 to return the right value and not 0 Y __

Re: [Dynapi-Dev] glide?

2001-01-25 Thread nicola
in order to use that there a few change to make to the code I have it if u need U can also use pathanimation.js it's real nice ciao Nicola On Wed, 24 January 2001, "francesco AGATI" wrote: > > someone know if the glide library is compatible wit

Re: Re[2]: [Dynapi-Dev] humble assertion: DynAPI.findLayers is not NS6 c ompatible

2001-01-24 Thread nicola
it can be done that way but we should make sure that there is html and one of the size is null only in that case u wanna call the setTimeout if not if u always call it that will slow things down too much Y > > > Actually, the getContentW/H can be fixed by adding a setTimeout to > createElem

Re: [Dynapi-Dev] NS6 events and contentWH

2001-01-23 Thread nicola
I think this is not a problem with the event.js patch but with the actual inline.js I never got it to work properly in ns 6 . So I think we should be looking at that .. I didn't test the patch yet but it makes a lot of sense to me ciao Y On Tue, 23 January 2001, "Richard Bennett" wrote: > > H

Re: [Dynapi-Dev] [Patch #103359] NS6 event fixes

2001-01-22 Thread nicola
I tried your patch and still doubleclick on ns 6 doesn't work ciao Y On Mon, 22 January 2001, [EMAIL PROTECTED] wrote: > > Patch #103359 has been updated. > > Project: dynapi > Category: DynAPI-Event > Status: Open > Submitted by: camhart > Assigned to : nobody > Summary: NS6 event fixes > >

Re: [Dynapi-Dev] [Patch #103112] events.js

2001-01-22 Thread nicola
On Mon, 22 January 2001, [EMAIL PROTECTED] wrote: > I don't think these changes are relevant to the latest version of > events.js, which when patched with patch: > if u look at the patch u'll see that events get capture in a different way for ns 6 those are the main changes the other patch is

Re: [Dynapi-Dev] Width/Height

2001-01-22 Thread nicola
this is what I use : DynLayer.prototype.getContentWidth=function() { if (!this.created) return 0 else { if (is.ns4) return this.doc.width else if (is.ns5) return parseInt(this.elm.offsetWidth) else return parseInt(this.elm.scrollWidth) } } DynLayer.proto

[Dynapi-Dev] fixed ns 6 events

2001-01-02 Thread Nicola Marzolla
I just uploaded a patch for ns 6 events please test it thank you Y _ Get your FREE download of MSN Explorer at http://explorer.msn.com ___ Dynapi-Dev mailing list [EMAIL PROTECTED] http: