# Especific frame in external swf

**URL:** https://forum.kirupa.com/t/especific-frame-in-external-swf/196048
**Category:** Uncategorized
**Created:** [August 4, 2006, 10:22pm UTC](https://forum.kirupa.com/t/especific-frame-in-external-swf/196048 "2006-08-04T22:22:29Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![purple\_me](https://avatars.discourse-cdn.com/v4/letter/p/43a26b/32.png) [@purple\_me](https://forum.kirupa.com/u/purple_me)
#### Post date: [August 4, 2006, 10:22pm UTC](https://forum.kirupa.com/t/especific-frame-in-external-swf/196048/1 "2006-08-04T22:22:29Z")

</div>

hi!  
i have a little question: Im begining to make a flash website where I have a main.swf and different buttons that load different external swf files. Is it possible to ‘jump’ to an specific frame in an external swf?.

Lets say I have an ‘about’ button that loads an ‘about.swf’ movie, but I dont want my ‘about.swf’ to start at frame 1 but at frame 5, or 15, or whatever. Do I use a ‘gotoAndPlay’ or something like that? sorry if my question seems stupid, Im pretty new :}

---

<div class="post-metadata">

### Author: ![rvg](https://avatars.discourse-cdn.com/v4/letter/r/ec9cab/32.png) [@rvg](https://forum.kirupa.com/u/rvg)
#### Post date: [October 23, 2006, 2:45am UTC](https://forum.kirupa.com/t/especific-frame-in-external-swf/196048/2 "2006-10-23T02:45:30Z")

</div>

yes, but imagine that in this external .swf i have a pic in frame 5, another pic in frame 10, ant another one in frame 15, and i want this external .swf to be loaded directly to frame 15 without showing the first 14 frames.

how to do that ??

---

<div class="post-metadata">

### Author: ![rhamej](https://avatars.discourse-cdn.com/v4/letter/r/bb73d2/32.png) [@rhamej](https://forum.kirupa.com/u/rhamej)
#### Post date: [October 23, 2006, 2:47am UTC](https://forum.kirupa.com/t/especific-frame-in-external-swf/196048/3 "2006-10-23T02:47:20Z")

</div>

Just like he said

```auto

gotoAndPlay(5);
//or
gotoAndPlay(10); 
//or 
gotoAndPlay(15);

```

or whatever frame you want.
