Current location: Hot Scripts Forums » General Web Coding » Flash & ActionScript » createTextField, external text load and scrollbar ui - my code??


createTextField, external text load and scrollbar ui - my code??

Reply
  #1 (permalink)  
Old 02-24-09, 10:30 PM
livingcont livingcont is offline
New Member
 
Join Date: Feb 2009
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
createTextField, external text load and scrollbar ui - my code??

I know I'm doing something wrong when trying to load the text through a variable. Any thoughts???

> Not loading external text works fine for me:
(a little clunky, but it's a working first step)
Only things in my fla file are this code and a UIScrollBar I dragged to my library to link to.
Code:
this.createTextField('myTextField',1,0,0,80,80); 
type = "dynamic";
myTextField.multiline = true;
myTextField.wordWrap = true;

myTextField.text = 'i have lots of lorum ipsum here....';

initialization={_targetInstanceName:'myTextField',horizontal:false};
_root.attachMovie('UIScrollBar','myScrollbar',2,initialization);


> When I load the text through the variable, it DOESN'T work:
Code:
this.createTextField('myTextField',1,0,0,80,80); 
type = "dynamic";
myTextField.multiline = true;
myTextField.wordWrap = true;

function textLoader() {
myData = new LoadVars();
myData.onLoad = function() {
myTextField.html = true;
myTextField.htmlText = this.myVariable;
};
myTextField.myData.load("text/content_03_01.txt");
}

var myCSS = new TextField.StyleSheet();
myCSS.load("text/style_sheet.css");
myCSS.onLoad = function() {
myTextField.styleSheet = myCSS;
textLoader();
};

initialization={_targetInstanceName:'myTextField',horizontal:false};
_root.attachMovie('UIScrollBar','myScrollbar',2,initialization);

Last edited by Nico; 02-25-09 at 02:38 AM.
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump


All times are GMT -5. The time now is 06:42 PM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.