Step-1: Create 4 buttons with the texts on them as A, B, C, D
Step-2: Select the first frame and draw a circle.
Step-3: Select the first frame and select shape as tween.
Step-4: Select the first frame and open the script pane and write “stop();”.
Step-5: Insert key frames in the time line at the frame numbers 15, 30, 45,
60.
Step-6: Select the 15, 30, 45, 60 frames serially one by one and open the
script and write “stop();” for each frame
Step-7: Select the 15th frame and delete the circle and write the letter “A”.
Step-8: Select Modify Break apart;
Step-9: Select the 30th frame and delete the “A” and write the letter “B”.
Step-10: Select Modify Break apart;
Step-11: Select the 45th frame and delete the “B” and write the letter “C”.
Step-12: Select Modify Break apart;
Step-13: Select the 60th frame and delete the “C” and write the letter “D”.
Step-14: Select Modify Break apart;
Step-15: Select the button “A” and open the script pane and write the
following code.
on (release)
{
gotoAndPlay(2);
}
Step-16: Select the button “B” and open the script pane and write the
following code.
on (release)
{
gotoAndPlay(16);
}
Step-17: Select the button “C” and open the script pane and write the
following code.
on (release)
{
gotoAndPlay(31);
}
Step-18: Select the button “D” and open the script pane and write the
following code.
on (release)
{
gotoAndPlay(46);
}
Step-19: press ctrl+enter to test the movie and click the appropriate button to convert the circle into different letters