View Single Post
Old 07-16-2007, 12:06 AM   #14 (permalink)
alex-party
Elite Googler
 
alex-party's Avatar
 
Join Date: Oct 2006
Location: Ireland
Posts: 1,085
Thanks: 0
Thanked 2 Times in 2 Posts
alex-party is an unknown quantity at this point
Put them all in your signature, have a look how others do that.
And you're welcome. LOL!!! Am I strange? No, I think I'm natural, I just come here to spread my thoughts when I'm programming hard lines, such as this one for example:

Code:
case this.RM: newX=(mm.w-dX);	newY=mm.h;		break;
case this.LM: newX=(mm.w+dX);	newY=mm.h;		break;
case this.TM: newX=mm.w;		newY=(mm.h+dY);	break;
case this.BM: newX=mm.w;		newY=(mm.h-dY);	break;
case this.RT: newY=(mm.h-dX); 			newX=Math.round((mm.w-(dX*rA))); break;
case this.LT: dX=-dX; newY=(mm.h-dX);	newX=Math.round((mm.w-(dX*rA))); break;
case this.RB: newY=(mm.h-dX);			newX=Math.round((mm.w-(dX*rA))); break;
case this.LB: dX=-dX; newY=(mm.h-dX);	newX=Math.round((mm.w-(dX*rA))); break;
Talking with you was a relaxing for me....
Luck
alex-party is offline   Reply With Quote