# Upgrading from Flash MX to Flash 8 problem

**URL:** https://forum.kirupa.com/t/upgrading-from-flash-mx-to-flash-8-problem/187832
**Category:** flash
**Created:** [May 2, 2006, 5:34pm UTC](https://forum.kirupa.com/t/upgrading-from-flash-mx-to-flash-8-problem/187832 "2006-05-02T17:34:53Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![driver](https://avatars.discourse-cdn.com/v4/letter/d/898d66/32.png) [@driver](https://forum.kirupa.com/u/driver)
#### Post date: [May 2, 2006, 5:34pm UTC](https://forum.kirupa.com/t/upgrading-from-flash-mx-to-flash-8-problem/187832/1 "2006-05-02T17:34:53Z")

</div>

Hi, I recently upgraded from Flash MX to Flash 8 and now dealing with the following problem:  
Textboxes which import external textfiles (HTML) doesn’t show upon export anymore…  
It displayes correctly when exporting for flash player 6. but not for 7 and 8.  
Also my graphics appear to become blurry now.  
After saving the \*fla in 8 it doesnt open in MX (unexpected file format)  
I guess the files are ruined now?

ationscript i use:

loadVarsText = new loadVars();  
loadVarsText.load(“bienvenue.txt”);  
loadVarsText.onLoad = function(success) {  
if (success) {  
trace(“done loading”);  
scroller1.htmlText = this.var1;  
} else {  
trace(“not loaded”);  
}  
};
