Text gets cut off in swf

Hi all,

I’m trying to enter some simple text into a .fla file but when I test it in the browser it cuts off a lot of the text. All I’m doing is adding this text to a flash detection file that I got from the Macromedia site. I’ve attached the .fla if anyone’s interested in taking a look. I think the file is also dependent upon two .as files - the one called playerProductInstall.as contains the following code:

System.security.allowDomain(“fpdownload.macromedia.com”);

// add a random number to the end of the request to avoid caching the SWF
var cacheBuster = Math.random();
var updateSWF = "http://fpdownload.macromedia.com/pub/flashplayer/update/current/swf/autoUpdater.swf?"+cacheBuster;
loaderClip.loadMovie(updateSWF);

var id = setInterval(checkLoaded, 10);
function checkLoaded()
{
if ( loaderClip.startUpdate.toString() == “[type Function]”)
{
clearInterval(id);
loadComplete();
}
}

function loadComplete()
{
loaderClip.redirectURL = _root.MMredirectURL;
loaderClip.MMplayerType = _root.MMplayerType;
loaderClip.MMdoctitle = _root.MMdoctitle;
loaderClip.startUpdate();
}

… and the other include file - playerProductInstallCallback.as - contains:

function installStatus(statusValue) {
if (statusValue == “Download.Complete”) {
// Installation is complete. In most cases the browser window that this SWF
// is hosted in will be closed by the installer or manually by the end user
}
else if (statusValue == “Download.Cancelled”) {
// The end user chose “NO” when prompted to install the new player
// by default no User Interface is presented in this case. It is left up to
// the developer to provide an alternate experience in this case
}
else if (statusValue == “Download.Failed”) {
// The end user failed to download the installer due to a network failure
// by default no User Interface is presented in this case. It is left up to
// the developer to provide an alternate experience in this case
}
}

I only included the above code because I thought it may have something to do with the problem I described at the beginning. My actionscript knowledge isn’t that great.

Would someone be able to tell me what’s going on and why the text in the attached file gets cut off once a swf is created?

I’d really appreciate anyone’s help.