flash question "undefined"
flash question "undefined"
Out of context: Reply #7
- Started
- Last post
- 9 Responses
- qaddisin0
shaft. when you test a flash movie you can change the download simulation settings and set it to certain kbs per second in the flash authoring environment. just thought you might want to know.
i was inspired by unfittoprint and re-organized the code. now it works great. thanks again.
flashcss = new TextField.StyleSheet();
flashcss.load("flash.css");
flashcss.onLoad = function(success) {
if (success) {
col1Top.styleSheet = flashcss;
} else {
trace("Error loading stylesheet.");
}
};loadText = new LoadVars();
loadText.load("content.txt");
loadText.onLoad = function(success) {
if (success) {
col1Top.htmlText = this.eventNews;
} else {
trace("Error loading data file.");
}
};