|
From: Raymond S. <dst...@or...> - 2000-12-07 13:23:01
|
I've been using a viewport as a window to view one of nine content options.
It's a 3X3 array of images with 9 slideTo that center each of the nine
windows. This all worked fine til the new animation system, now it has some
odd (but definable behavioral bugs that show up in both IE and NS.
1) It works fine on any diagonal slide.
2) horizontal or vertical slides either are:
a) always wrong in one direction, or
b) wrong every other iteration, in one direction.
The following method (line 45, slide extension), which should clean up final
moves to destination points (x,y) never seems to fire.
else {
this.moveTo(this.slideEndX,this.slideEndY)
this.invokeEvent("slide")
this.slideActive = false
clearInterval(this.slideInterval)
this.invokeEvent("slideend")
}
}
I'll continue to peruse this tomorrow. Wanted to put it up for Dan to look
at since he wrote all the math and event handlers that go into the new
system and 'might' be obvious to him.
Later,
DS
|