Title: Flash Help
Last modified: August 20, 2016

---

# Flash Help

 *  Resolved [JGrissom](https://wordpress.org/support/users/jgrissom/)
 * (@jgrissom)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/flash-help/)
 * Hello,
 *  I have a client which has a non wordpress website. I have transferred their 
   website to a wordpress layout with some minor issues I have yet to fix as far
   as alignment goes. but I am having problems with flash. They have 3 flash video’s
   on their page that MUST be there on the wordpress version. Their website currently
   is prestigecabinetsva.com. The site conversion is located at [http://www.cloudleasing.com/prestige/](http://www.cloudleasing.com/prestige/).
   I am currently using the Kimili Flash Embed. on the index page I am using
 *     ```
       <?PHP if(is_front_page()) {
       		query_posts('id=6');
       		while ( have_posts() ) : the_post();
       		    				the_content();
       					endwhile;
       		wp_reset_query();
       	} ?>
       ```
   
 *  to display the flash video where it needs to be. I am not able to display the
   flash video. I am also experiencing problems with the MouseOver image swaps that
   was generated by dreamweaver.
 * Is there a way to get flash to display without the need for plugins? using <object
   > tags?

Viewing 14 replies - 1 through 14 (of 14 total)

 *  Thread Starter [JGrissom](https://wordpress.org/support/users/jgrissom/)
 * (@jgrissom)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/flash-help/#post-3171092)
 * I am still not having any luck. I can get flash to display but the video is not
   displaying properly…
 *  [bythegram](https://wordpress.org/support/users/bythegram/)
 * (@bythegram)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/flash-help/#post-3171096)
 * Using Firebug I notice that a few JS functions are ‘not defined’ (AC_FL_RunContent
   and MM_preloadImages). I believe it is because this file is not included in your
   head (taken from the current site).
    `<script src="../../AC_RunActiveContent.
   js" type="text/javascript"></script>`
 *  Thread Starter [JGrissom](https://wordpress.org/support/users/jgrissom/)
 * (@jgrissom)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/flash-help/#post-3171117)
 * Thanks that actually passed right by me lol. I guess thats what you get when 
   you look at code for 10 hours a day. now I am getting movie not loaded.
 *  [bythegram](https://wordpress.org/support/users/bythegram/)
 * (@bythegram)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/flash-help/#post-3171119)
 * It is showing 404 (Not Found) errors for the movies
 * Failed to load resource: the server responded with a status of 404 (Not Found)
   [http://www.cloudleasing.com/prestige/countertops.swf](http://www.cloudleasing.com/prestige/countertops.swf)
   
   Failed to load resource: the server responded with a status of 404 (Not Found)
   [http://www.cloudleasing.com/prestige/cabinets.swf](http://www.cloudleasing.com/prestige/cabinets.swf)
   Failed to load resource: the server responded with a status of 404 (Not Found)
   [http://www.cloudleasing.com/prestige/prestige_cabinets_336.swf](http://www.cloudleasing.com/prestige/prestige_cabinets_336.swf)
 *  Thread Starter [JGrissom](https://wordpress.org/support/users/jgrissom/)
 * (@jgrissom)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/flash-help/#post-3171121)
 * Ok I think I see whats going on here. its setting the cabinets.swf to [http://www.cloudleasing.com/prestige/cabinets.swf](http://www.cloudleasing.com/prestige/cabinets.swf)
   this actually needs to use the <?PHP echo bloginfo(‘template_directory’). ” “;?
   > to get the path of the cabinets… it is generating the object code as well
 *  Thread Starter [JGrissom](https://wordpress.org/support/users/jgrissom/)
 * (@jgrissom)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/flash-help/#post-3171123)
 * Ok I got it to display the flash video but it is not playing the video.
 *     ```
       <script type="text/javascript">
       <!--//--><![CDATA[//><!--
       AC_FL_RunContent(
       'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,19,0',
       'width','148',
       'height','249',
       'src','http://www.cloudleasing.com/prestige/wp-content/themes/prestige/cabinets',
       'loop','false',
       'quality','high',
       'pluginspage','http://www.macromedia.com/go/getflashplayer',
       'movie','http://www.cloudleasing.com/prestige/wp-content/themes/prestige/cabinets'
       ); //end AC code //--><!]]
       </script>
       ```
   
 * displays the <object>
 * `<object codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.
   cab#version=8,0,19,0" width="148" height="249" classid="clsid:d27cdb6e-ae6d-11cf-
   96b8-444553540000"><param name="movie" value="http://www.cloudleasing.com/prestige/
   wp-content/themes/prestige/cabinets.swf"> <param name="loop" value="false"> <
   param name="quality" value="high"> <embed width="148" height="249" src="http://
   www.cloudleasing.com/prestige/wp-content/themes/prestige/cabinets.swf" loop="
   false" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer"
   type="application/x-shockwave-flash"></object>`
 * so I know that it is working.. now and I know what to do now.
 *  Thread Starter [JGrissom](https://wordpress.org/support/users/jgrissom/)
 * (@jgrissom)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/flash-help/#post-3171128)
 * the video’s are still not playing.. compare
 * [http://prestigecabinetsva.com/](http://prestigecabinetsva.com/)
 * to
 * [http://www.cloudleasing.com/prestige/](http://www.cloudleasing.com/prestige/)
 *  [bythegram](https://wordpress.org/support/users/bythegram/)
 * (@bythegram)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/flash-help/#post-3171146)
 * I highly recommend Firebog for firefox, you will be able to debug much easier.
   Here are the errors it is throwing regarding the flash movie:
 *     ```
       Uncaught ReferenceError: MM_preloadimages is not defined /prestige/:69
       Failed to load resource: the server responded with a status of 404 (Not Found) http://www.cloudleasing.com/prestige/SteelOverNoVol.swf
       Failed to load resource: the server responded with a status of 404 (Not Found) http://www.cloudleasing.com/prestige/wp-content/themes/prestige/flash/prestige_kitchen.flv
       Failed to load resource: the server responded with a status of 404 (Not Found) http://www.cloudleasing.com/prestige/images2.xml
       Failed to load resource: the server responded with a status of 404 (Not Found) http://www.cloudleasing.com/prestige/images1.xml
       ```
   
 *  Thread Starter [JGrissom](https://wordpress.org/support/users/jgrissom/)
 * (@jgrissom)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/flash-help/#post-3171149)
 * Right, but I see the debug is cloudleasing.com/prestige this would be invalid
   as it would need to be cloudleasing.com/prestige/wp-content/themes/prestige/ 
   would be the path I need. This I dont know where to change as I dont know where
   this is loading from. the AC_RunActive I do not see anything in there to return
   the path
 *  [kmessinger](https://wordpress.org/support/users/kmessinger/)
 * (@kmessinger)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/flash-help/#post-3171150)
 * Try using this to create your code. [http://www.osmf.org/configurator/fmp/](http://www.osmf.org/configurator/fmp/)
 *  Thread Starter [JGrissom](https://wordpress.org/support/users/jgrissom/)
 * (@jgrissom)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/flash-help/#post-3171151)
 * This does not work, thanks thou
 *  Thread Starter [JGrissom](https://wordpress.org/support/users/jgrissom/)
 * (@jgrissom)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/flash-help/#post-3171152)
 * I have got the main player to load and play
 * [http://www.cloudleasing.com/prestige/](http://www.cloudleasing.com/prestige/)
 * but it is the 2 side ones that I am having problems with.
 *  Thread Starter [JGrissom](https://wordpress.org/support/users/jgrissom/)
 * (@jgrissom)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/flash-help/#post-3171182)
 * I am still not able to figure this out! I have figured out where images1.xml 
   and images2.xml these brought to my attention by bythegram and was throwing a
   404 in the root folder of the presige so I moved the images1/2.xml to the root
   folder removed the path that was in the xml to a folder that did not exist and
   moved all the images to the root.
 * I still cannot get it to load images.
 *  Thread Starter [JGrissom](https://wordpress.org/support/users/jgrissom/)
 * (@jgrissom)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/flash-help/#post-3171183)
 * n/m I got it.

Viewing 14 replies - 1 through 14 (of 14 total)

The topic ‘Flash Help’ is closed to new replies.

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 14 replies
 * 3 participants
 * Last reply from: [JGrissom](https://wordpress.org/support/users/jgrissom/)
 * Last activity: [13 years, 4 months ago](https://wordpress.org/support/topic/flash-help/#post-3171183)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
