From: Pascal B. <pa...@dy...> - 2000-11-22 19:57:10
|
Oops, forgot this fix, the updateValues() method in dynapi.ext.inline should also be updated to this: DynLayer.prototype.updateValues=function() { if (is.ns4) { this.x=parseInt(this.css.left) this.y=parseInt(this.css.top) this.w=is.ns4? this.css.clip.width : parseInt(this.css.width) this.h=is.ns4? this.css.clip.height : parseInt(this.css.height) if (is.ns4) this.clip=[this.css.clip.top,this.css.clip.right,this.css.clip.bottom,this.c ss.clip.left] this.bgColor=this.doc.bgColor!="this.doc.bgColor"?this.doc.bgColor:null this.bgImage=this.elm.background.src!=""?this.elm.background.src:null this.html = this.innerHTML = this.elm.innerHTML = "" } else if (is.ie || is.ns5) { this.x=this.elm.offsetLeft this.y=this.elm.offsetTop this.w=is.ie4? this.css.pixelWidth||this.getContentWidth() :this.elm.offsetWidth this.h=is.ie4? this.css.pixelHeight||this.getContentHeight() :this.elm.offsetHeight this.bgImage = this.css.backgroundImage this.bgColor = this.css.backgroundColor this.html = this.innerHTML = this.elm.innerHTML } this.z=this.css.zIndex var b=this.css.visibility this.visible=(b=="inherit"||b=="show"||b=="visible"||b=="") } Pascal Bestebroer pa...@dy... http://www.dynamic-core.net -----Oorspronkelijk bericht----- Van: dyn...@li... [mailto:dyn...@li...]Namens David C. Bros Verzonden: woensdag 22 november 2000 20:43 Aan: dyn...@li... Onderwerp: [Dynapi-Help] New problem with the Inline Layers and NS6 Hi! I tried the fix posted by Pascal and now I get an error in NS6. this.elm.background has no properties Can somebody help me? Thanks! |