From: Joachim L. <lu...@ho...> - 2002-12-09 17:22:41
|
dynlayer.setClip() takes one argument, an array with the four values - not four values passed to setClip(). So your code lp.setClip(10,10,10,10); should be lp.setClip([10,10,10,10]); Notice the square brackets (easy to miss), they are the shorthand notion for creating the array. Haven't looked at the other code, I'm mostly in a lurk-only state now. But let me know if it still won't work. /Lunna |