-
Dynamic text formatting issue
I can't seem to get my dynamic text to pay attention to the html tags. I'm using very basic ones that I know are supported <br><b> etc...
I can get the dynamic text to load in my scrollable area but that's it!! Here's the scripting i'm using. Can someone tell me if I'm missing something?
Frame 1
loadVariables("amenities2.txt", this);
Frame 5
upButton_btn.onPress = function(){
pressing = true;
movement = -1;
}
upButton_btn.onRelease = function(){
pressing = false;
}
downButton_btn.onPress = function(){
pressing = true;
movement = 1;
}
downButton_btn.onRelease = function(){
pressing = false;
}
_root.onEnterFrame = function(){
if (pressing ==true){
scrollWindow_txt.scroll = scrollWindow_txt.scroll + movement
}
}
my instance name of my dynamic text box is scrollWindow_txt
If someone can shed some light over this way that'd be great!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|