# Embed a SWF that is a level up?

**URL:** https://forum.kirupa.com/t/embed-a-swf-that-is-a-level-up/234617
**Category:** web dev
**Created:** [August 3, 2007, 7:26pm UTC](https://forum.kirupa.com/t/embed-a-swf-that-is-a-level-up/234617 "2007-08-03T19:26:10Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![MattMDesign](https://avatars.discourse-cdn.com/v4/letter/m/49beb7/32.png) [@MattMDesign](https://forum.kirupa.com/u/MattMDesign)
#### Post date: [August 3, 2007, 7:26pm UTC](https://forum.kirupa.com/t/embed-a-swf-that-is-a-level-up/234617/1 "2007-08-03T19:26:10Z")

</div>

Hi,  
I have this code that embeds the flash movie, which is in the “main” folder, into other files that are in the main folder. I can’t figure out how to modify it to show up in pages that are in the folder “main/main2” though. I tried changing “arrows.swf” to “…/arrows.swf” in the 2 places in the code, but that didn’t work. Can someone please tell me how to do this?  
Thanks, Matt

```auto

<script language="JavaScript" type="text/javascript"><!--
AC_FL_RunContent( 'width','370','height','221','id','arrows','align','middle','src','arrows','quality','high','wmode','transparent','name','arrows','allowscriptaccess','sameDomain','movie','arrows','minVersion','7,0,0,0' );
// --></script><noscript><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="370" height="221" id="arrows" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="arrows.swf" />
<param name="quality" value="high" />
<param name="wmode" value="transparent">
<embed src="arrows.swf" quality="high" wmode="transparent" width="370" height="221" name="arrows" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object></noscript>

```
