package { import flash.display.*; import flash.text.*; public class cardFront extends MovieClip{ var theContent = new TextField(); var format = new TextFormat(); public function cardFront (myText){ // Set up the Card's Format format.font = "Arial"; format.size = 40; format.bold = true; // Set up theContent theContent.text = myText; theContent.selectable = false; theContent.embedFonts = true; //spply format to the text field theContent.autoSize = TextFieldAutoSize.CENTER; theContent.setTextFormat(format); theContent.x = -.5*theContent.width; theContent.y = -.5*theContent.height; // Set up the card's Content addChild(theContent); } } }