[Tips] How to convert Degress to Radians :)

function radians(i:int):Number
{
return Math.PI/180*i;
}

Pretty neat formula that you can reuse in absolutely everywhere. Anyway, this is applicable in Actionscript 3.0.