i just thought: i could declare a variable to hold all the text that i’m loading, and if that variable is equal to something, THEN i could load the textbox and set the scroll buttons to visible
unless there’s a way of dong it without creating a new var
i now turn the scroll butons to visible within the function that loads the file (if it loads the file ok) - i don’t know why i didn;t think of that - it’s prety logical
so i got:
// function
loadText.onLoad = function(success) {
if (success){
// load text into text box
_root.text_mc.txtBox.text = this.fileText;
// and turn the scroll buttons to visible
_root.text_mc.scrollUp._visible=true;
_root.text_mc.scrollDown._visible=true;
…