Displaying 1 result from an estimated 1 matches for "borderycurr".
2007 Jun 10
1
variable scope
...ik.start(0, 1);
}
someListener = new Object();
someListener.onMouseMove = function () {
_root.createEmptyMovieClip('rectangle', 10000);
borderXcurrent = Math.floor((_xmouse - 13) / CellSize +
(_xmouse > borderXstart)) * CellSize + 13;
borderYcurrent = Math.floor((_ymouse - 13) / CellSize +
(_ymouse > borderYstart)) * CellSize + 13;
if (borderXcurrent > CellSize * widthMax + 13) {
borderXcurrent = CellSize * widthMax + 13;
}
if (borderXcurrent < 13) {
borderXcurrent = 13;...