Displaying 1 result from an estimated 1 matches for "borderxcurr".
2007 Jun 10
1
variable scope
...break;
case 2:
klik2.start(0, 1);
break;
default:
klik.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 = CellSi...