Scrollbar Mysteriously not working

the following code all works with one exception the scrollbar doesnt scroll the text

createTextField(“resumeText”,50 ,-220,-150,430,300);
with(resumeText){
html = true;
type = dynamic;
border = false;
selectable = true;
wordWrap = true;
multiline = true;
htmlText = _global.resume
textColor = 0xffffff
}
attachMovie(“FScrollBarSymbol”,“resume_sb”, 40);
with(resume_sb){
setScrollTarget(resumeText);
_x = resumeText._x + resumeText._width + 4;
_y = resumeText._y;
setSize(resumeText._height);
setHorizontal(false);
}

to see it in action ( or in this case not in action:smirk:) take a look at http://www.billstoudt.com/ click on about and then resume.

interestingly it was working at one point and now it mysteriously stopped.

any help would be greatly appriciated.

Bill

please please please someone help me on this.

thanks a million.

Bill

[left][font=Arial]Bill,[/font][/left]
[left][font=Arial][/font] [/left]
[left][font=Arial]I am a novice in Flash, and I just got my site up [/font]awecomeon.net[font=Arial]. I am having the same problem you are. On my Resume and Hobbies pages the scollbar doesnt work, while on my welcome page the scroll bar works fine. Ive looked at all the varibles that my feeble flash mind could look at and I am completely stumped. Hopefully someone will show the greatness of humanity and lend a hand. [/font][/left]
[left] [/left]
[left][font=Arial]Hey out there! Can someone show some love and help out Bill and myself?![/font][/left]
[left] [/left]
[left][font=Arial]Thank you![/font] [/left]

when you attach movies it is a good idea to reference other movie clips using relation to this or root. ie your code would read:
createTextField(“resumeText”,50 ,-220,-150,430,300);
with(resumeText){
html = true;
type = dynamic;
border = false;
selectable = true;
wordWrap = true;
multiline = true;
htmlText = _global.resume
textColor = 0xffffff
}
attachMovie(“FScrollBarSymbol”,“resume_sb”, 40);
with(resume_sb){
setScrollTarget(_root.resumeText);
_x = _root.resumeText._x + _root.resumeText._width + 4;
_y = _root.resumeText._y;
setSize(_root.resumeText._height);
setHorizontal(false);
}

that is of course assuming this code was placed on the _root level of your movie