Testing using IE 5.5 Windows ME

There seems to be a problem with moving empty layers around on screen either
by dragging or using the various animations.

Whenever the layer is empty, ie - just the width and height set and either a
background color or background image - nothing else - the cursor flickers
between normal and busy like crazy.

For example, loading dynapi.event.dragevent.html and dragging the text layer
works perfectly, dragging the red box starts the cursor problem. Same goes
for the scrollbar/scrollpane examples.

As a test I modified scrollbar.js setImages from

 if (knobImage) {
  this.knobImage = knobImage;
  this.knob.setBgImage(this.knobImage.src);
  this.knob.setSize(this.knobImage.width,this.knobImage.height);
 }

to this

 if (knobImage) {
  this.knobImage = knobImage;
  this.knob.setHTML('<img src='+this.knobImage.src+'>');
  this.knob.setSize(this.knobImage.width,this.knobImage.height);
 }


Not really a fix, but now the layer has some content the scrollbar example
works for both vertical and horizontal, not for box, cause that's just got a
background color.....

This behaviour is present in Dan's window demo code also.

So the question is, how to animate/drag an empty layer smoothly under IE5.5?

Ideas anyone?


_______________________________________________
Dynapi-Dev mailing list
[EMAIL PROTECTED]
http://www.mail-archive.com/[email protected]/

Reply via email to