_lockrootしてるとhitTestがバグる
カテゴリ[flash]
http://livedocs.macromedia.com/flash/8/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Parts&file=00002475.html
でも突っ込まれているが、解決していないようなので。
MovieClip.prototype.hitTestOrg=MovieClip.prototype.hitTest;
MovieClip.prototype.hitTest=function(x:Number,y:Number):Boolean{
var pt:Object={x:x,y:y};
_root.localToGlobal(pt);
return this.hitTestOrg(pt.x,pt.y);
}
- Menuで不具合。Menu.prototype.hitTest=MovieClip.prototype.hitTestOrgで回避。泥臭いが、今のところ順調。 - kuboon (06/10/10 17:07)