By now, you should be familiar with creating shapes and adding instances to your movie. I know you all have something to say to the world, so let's start adding some text!
Ming uses special font files called fdb files which are created through special tools(flash generator templates and Dave's makefdb utility). Here are some fonts to get you started, you will need to place one of them in the directory your ming file that uses it is.
Note: This link is no longer available:
http://www.webwizardsways.com/flash/ming-fonts
However, you can upload some fdb fonts Here. You can also upload the font used in this Lesson Here, (right click, select all, copy, and transload to your server).
Once you have a fdb font file, you are ready to start.
A) Begin as always by opening our html page and beginning our php code block
H) Then, we add an our instance of the text to our movie as we did with shapes previously
$firstText=$myMovie->add($myText);
I) Move the text just as you do shapes, luckily, the text object has some attributes we can use to position it.
Here we are setting the left to right position by taking half the width of our movie and subtracting half the width of our text (see the getWidth statement). Then, after experimentation, we found that the words needed to be moved over a bit more to fit in our circle shape, so we added 10 more.
The top to bottom is dependant upon the height you set in the text definitions above, and the font used, and is measured to the bottom of your text. Some fonts have extra long lower loops (like g and y) while others have extra long upper loops.
Experimentation, or adding buffer space, is the only answer. I found 50 to work for the font used in this lesson.
$firstText->moveTo((460/2-($myText->getWidth(" My First Flash!"))/2)+10,50);
J) Finally, we save our movie, close our php code block, and add the standard html to display the generated swf file.