Scrollbar problem when movie unload

i have a problem where my scrollbar in my main movie is not scrollable anymore when i unload a external movie

this problem doesn’t occur before i unload my movie

anyone can help?

if you unload something, than you can do with that nothing, so or you loaded it again and it’s works or not, that’s the question

i can help but you need to express your problem a little more clearly

Basically, i have scrollbars that load dynamic text.
Everything are running fine b4 i load a external swf file.

When the external file loads into level 2, it overlap the interface of the main file, now i can see is the level 2 file.

That’s what i want but when i unload the level 2 swf, my scrollbar aren’t working anymore but my dynamic text still there (Just that the scrollbar aren’t scrollable anymore)

Think you can help? Thanks

ok well level 2 is going to be over the main interface. load it at level 1

do this
afetr you load your txt file give your buttons shoudl read this code

on(rollOver){
mytext.scroll = scroll ++;
}

the scroller still not working

did you give your textbox variable the name of “mytext” ?
you should have 2 layers. one with your buttons and one with
textbox.
put your textbox on layer 1
give your textbox the variable name mytext
put your button on layer 2.
give your up button this action

on(press){
mytext.scroll = mytext.scroll+1;
}

down button’s actions
on(press){
mytext.scroll = mytext.scroll-1;
}

thats it now publish your flash files and eveything should work fine

ok, thanks