# Imporint External SWF

**URL:** https://forum.kirupa.com/t/imporint-external-swf/265715
**Category:** flash
**Created:** [July 11, 2008, 4:13pm UTC](https://forum.kirupa.com/t/imporint-external-swf/265715 "2008-07-11T16:13:01Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![nickbunyun](https://avatars.discourse-cdn.com/v4/letter/n/839c29/32.png) [@nickbunyun](https://forum.kirupa.com/u/nickbunyun)
#### Post date: [July 11, 2008, 4:13pm UTC](https://forum.kirupa.com/t/imporint-external-swf/265715/1 "2008-07-11T16:13:01Z")

</div>

ok so i have this

LINK1 (bp\_frame)  
LINK2 (ww\_frame)  
LINK3  
LINK4

on link1 i have this  
on (release) {  
if (\_root.currMovie == undefined) {  
\_root.currMovie = “bp\_frame”;  
container.loadMovie(“bp\_frame.swf”);  
} else if (\_root.currMovie != “bp\_frame”) {  
if (container.\_currentframe \>= container.midframe) {  
\_root.currMovie = “bp\_frame”;  
container.play();  
}  
}  
}  
as i have this on LINK2  
on (release) {  
if (\_root.currMovie == undefined) {  
\_root.currMovie = “ww\_frame”;  
container.loadMovie(“ww\_frame.swf”);  
} else if (\_root.currMovie != “ww\_frame”) {  
if (container.\_currentframe \>= container.midframe) {  
\_root.currMovie = “ww\_frame”;  
container.play();  
}  
}  
}

so everything works well to be honest… i followed the tutorial from kirupa

BUT heres the thing

i now made my movies about 150frames long.

and i click on LINK1… the mid frame is at 130.

It will not load LINK2 untill it gets to the mid frame of 130.

How and what do i set up, so it goes straight to the midframe\>\>exit.

last frame (exit)… is this

\_root.container.loadMovie(\_root.currMovie+".swf");

Thanks.

---

<div class="post-metadata">

### Author: ![nickbunyun](https://avatars.discourse-cdn.com/v4/letter/n/839c29/32.png) [@nickbunyun](https://forum.kirupa.com/u/nickbunyun)
#### Post date: [July 14, 2008, 11:27am UTC](https://forum.kirupa.com/t/imporint-external-swf/265715/2 "2008-07-14T11:27:11Z")

</div>

bump.

help please
