15. Converting Angle Measurements
Procedure:
step 1: Open flash 8
step 2: Select flash document
step 3: select 1st layer, 1st frame on that document and write source code on Actions Frame
step 4: To check output press ctrl+enter(test movie)
Source code:
on(click)
{
function degToRad(deg)
{
return(math.PI*deg)/180;
}
function radToDeg(rad)
{
return(rad*180)/math.PI;
}
trace("converting 90 degrees to radius:"+degToRad(90));
trace("converting 3.14 radius to degrees:"+radToDeg(math.PI));
}
No comments:
Post a Comment