# Scrollbar problem when movie unload

**URL:** https://forum.kirupa.com/t/scrollbar-problem-when-movie-unload/19090
**Category:** Uncategorized
**Created:** [April 24, 2003, 5:51am UTC](https://forum.kirupa.com/t/scrollbar-problem-when-movie-unload/19090 "2003-04-24T05:51:57Z")
**Posts on this page:** 8
**Page:** 1

<div class="post-metadata">

### Author: ![esek](https://avatars.discourse-cdn.com/v4/letter/e/e8c25b/32.png) [@esek](https://forum.kirupa.com/u/esek)
#### Post date: [April 24, 2003, 5:51am UTC](https://forum.kirupa.com/t/scrollbar-problem-when-movie-unload/19090/1 "2003-04-24T05:51:57Z")

</div>

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?

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [April 24, 2003, 10:02am UTC](https://forum.kirupa.com/t/scrollbar-problem-when-movie-unload/19090/2 "2003-04-24T10:02:56Z")

</div>

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

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [April 24, 2003, 2:47pm UTC](https://forum.kirupa.com/t/scrollbar-problem-when-movie-unload/19090/3 "2003-04-24T14:47:14Z")

</div>

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

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [April 25, 2003, 1:34am UTC](https://forum.kirupa.com/t/scrollbar-problem-when-movie-unload/19090/4 "2003-04-25T01:34:23Z")

</div>

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

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [April 25, 2003, 2:31am UTC](https://forum.kirupa.com/t/scrollbar-problem-when-movie-unload/19090/5 "2003-04-25T02:31:31Z")

</div>

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 ++;  
}

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [April 25, 2003, 2:58am UTC](https://forum.kirupa.com/t/scrollbar-problem-when-movie-unload/19090/6 "2003-04-25T02:58:30Z")

</div>

the scroller still not working

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [April 25, 2003, 3:20am UTC](https://forum.kirupa.com/t/scrollbar-problem-when-movie-unload/19090/7 "2003-04-25T03:20:56Z")

</div>

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

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [April 25, 2003, 3:25am UTC](https://forum.kirupa.com/t/scrollbar-problem-when-movie-unload/19090/8 "2003-04-25T03:25:41Z")

</div>

ok, thanks
