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
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
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
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
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
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 =
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);
>
>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
>
> 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
>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
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
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
> 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
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
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
> * 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
> 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
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
> 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
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
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
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
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
>
> 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
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
>
> _
> 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
__
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
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
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
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
>
>
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
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
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:
33 matches
Mail list logo