[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
Creating engaging and entertaining content for designers and developers since 1998.