Patches #407367, was updated on 2001-03-09 11:04 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=305757&aid=407367&group_id=5757 Category: DynAPI-Widget Group: None Status: Open Priority: 5 Submitted By: David Zoll Assigned to: Nobody/Anonymous Summary: Fix Button.setImage Behavior Initial Comment: This appears to fix the Button.setImage() behavior under IE described in Bug #407366. ---------------------------------------------------------------------- Comment By: David Zoll Date: 2001-03-09 11:05 Message: Logged In: YES user_id=25730 The patch didn't appear to upload, so here it is: --- button.js.orig Fri Mar 9 13:45:46 2001 +++ button.js Fri Mar 9 13:46:12 2001 @@ -80,7 +80,7 @@ this.imglyr = this.addChild(new DynImage(imgObj)); this.imglyr.setVisible(false); } - else this.imglyr.doc.images[0].src = this.img.src; + else this.imglyr.setImage(imgObj) = this.img.src; }; Button.prototype.setText = function(text) { if (this.label==null) { ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=305757&aid=407367&group_id=5757 _______________________________________________ Dynapi-Dev mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/dynapi-dev
