Hello IE list folk.

It's my mistake I know but I think that Mozilla is a better browser then
Microsoft's IE and I missed this...

I just booted IOS, VED and other in IE mac, win and all HELL broke loose
I know dynapi3 is beta but still.


p.setPageLocation = function(x,y) {
    if (this.isChild) {
        if (dynapi.ua.v>=5) {
            if (cx) this.css.pixelLeft = this.x;
            if (cy) this.css.pixelTop = this.y;
        }
        else {
            if (cx) this.css.left = this.x+"px";
            if (cy) this.css.top = this.y+"px";
        }
    }
    return this.setLocation(x,y);
};



If i'm not mistaken it should look something like this.


p.setPageLocation = function(x,y) {
     if (this.isChild) {
        if (x!=null) x = x - this.parent.getPageX();
        if (y!=null) y = y - this.parent.getPageY();
    }
    return this.setLocation(x,y);
};  


I did spend a lot of time making dynapi 2.55 Mac ie5 work on IOS and now I
feel I'm back in the same spot. There is a lot more then this, Mac is VERRY
particular with the way you create layers... Well I leave that for now.

IE folks Please look over the code if you please

Rock'n Roll
Michael








-------------------------------------------------------
This SF.net email is sponsored by: The SF.net Donation Program.
Do you like what SourceForge.net is doing for the Open
Source Community?  Make a contribution, and help us add new
features and functionality. Click here: http://sourceforge.net/donate/
_______________________________________________
Dynapi-Dev mailing list
[EMAIL PROTECTED]
http://www.mail-archive.com/[EMAIL PROTECTED]/

Reply via email to