Exported flash file as HTML and wont show up. I have the code, please help!

This is the code - It just comes up as a box and can't see anything!
<!-- saved from url=(0013)about:internet -->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>our_house_flipbook_3</title>
<script language="JavaScript" type="text/javascript">
<!--
//v1.7
// Flash Player Version Detection
// Detect Client Browser type
// Copyright 2005-2008 Adobe Systems Incorporated.  All rights reserved.
var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;
function ControlVersion()
var version;
var axo;
var e;
// NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry
try {
// version will be set for 7.X or greater players
axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
version = axo.GetVariable("$version");
} catch (e) {
if (!version)
try {
// version will be set for 6.X players only
axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
// installed player is some revision of 6.0
// GetVariable("$version") crashes for versions 6.0.22 through 6.0.29,
// so we have to be careful.
// default to the first public version
version = "WIN 6,0,21,0";
// throws if AllowScripAccess does not exist (introduced in 6.0r47)          
axo.AllowScriptAccess = "always";
// safe to call for 6.0r47 or greater
version = axo.GetVariable("$version");
} catch (e) {
if (!version)
try {
// version will be set for 4.X or 5.X player
axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
version = axo.GetVariable("$version");
} catch (e) {
if (!version)
try {
// version will be set for 3.X player
axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
version = "WIN 3,0,18,0";
} catch (e) {
if (!version)
try {
// version will be set for 2.X player
axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
version = "WIN 2,0,0,11";
} catch (e) {
version = -1;
return version;
// JavaScript helper required to detect Flash Player PlugIn version information
function GetSwfVer(){
// NS/Opera version >= 3 check for Flash plugin in plugin array
var flashVer = -1;
if (navigator.plugins != null && navigator.plugins.length > 0) {
if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
var descArray = flashDescription.split(" ");
var tempArrayMajor = descArray[2].split(".");               
var versionMajor = tempArrayMajor[0];
var versionMinor = tempArrayMajor[1];
var versionRevision = descArray[3];
if (versionRevision == "") {
versionRevision = descArray[4];
if (versionRevision[0] == "d") {
versionRevision = versionRevision.substring(1);
} else if (versionRevision[0] == "r") {
versionRevision = versionRevision.substring(1);
if (versionRevision.indexOf("d") > 0) {
versionRevision = versionRevision.substring(0, versionRevision.indexOf("d"));
var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
// MSN/WebTV 2.6 supports Flash 4
else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
// WebTV 2.5 supports Flash 3
else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
// older WebTV supports Flash 2
else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
else if ( isIE && isWin && !isOpera ) {
flashVer = ControlVersion();
return flashVer;
// When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
versionStr = GetSwfVer();
if (versionStr == -1 ) {
return false;
} else if (versionStr != 0) {
if(isIE && isWin && !isOpera) {
// Given "WIN 2,0,0,11"
tempArray         = versionStr.split(" ");      // ["WIN", "2,0,0,11"]
tempString        = tempArray[1];               // "2,0,0,11"
versionArray      = tempString.split(",");     // ['2', '0', '0', '11']
} else {
versionArray      = versionStr.split(".");
var versionMajor      = versionArray[0];
var versionMinor      = versionArray[1];
var versionRevision   = versionArray[2];
             // is the major.revision >= requested major.revision AND the minor version >= requested minor
if (versionMajor > parseFloat(reqMajorVer)) {
return true;
} else if (versionMajor == parseFloat(reqMajorVer)) {
if (versionMinor > parseFloat(reqMinorVer))
return true;
else if (versionMinor == parseFloat(reqMinorVer)) {
if (versionRevision >= parseFloat(reqRevision))
return true;
return false;
function AC_AddExtension(src, ext)
  if (src.indexOf('?') != -1)
    return src.replace(/\?/, ext+'?');
  else
    return src + ext;
function AC_Generateobj(objAttrs, params, embedAttrs)
  var str = '';
  if (isIE && isWin && !isOpera)
    str += '<object ';
    for (var i in objAttrs)
      str += i + '="' + objAttrs[i] + '" ';
    str += '>';
    for (var i in params)
      str += '<param name="' + i + '" value="' + params[i] + '" /> ';
    str += '</object>';
  else
    str += '<embed ';
    for (var i in embedAttrs)
      str += i + '="' + embedAttrs[i] + '" ';
    str += '> </embed>';
  document.write(str);
function AC_FL_RunContent(){
  var ret =
    AC_GetArgs
    (  arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
     , "application/x-shockwave-flash"
  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
function AC_SW_RunContent(){
  var ret =
    AC_GetArgs
    (  arguments, ".dcr", "src", "clsid:166B1BCA-3F9C-11CF-8075-444553540000"
     , null
  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
  var ret = new Object();
  ret.embedAttrs = new Object();
  ret.params = new Object();
  ret.objAttrs = new Object();
  for (var i=0; i < args.length; i=i+2){
    var currArg = args[i].toLowerCase();   
    switch (currArg){     
      case "classid":
        break;
      case "pluginspage":
        ret.embedAttrs[args[i]] = args[i+1];
        break;
      case "src":
      case "movie":     
        args[i+1] = AC_AddExtension(args[i+1], ext);
        ret.embedAttrs["src"] = args[i+1];
        ret.params[srcParamName] = args[i+1];
        break;
      case "onafterupdate":
      case "onbeforeupdate":
      case "onblur":
      case "oncellchange":
      case "onclick":
      case "ondblclick":
      case "ondrag":
      case "ondragend":
      case "ondragenter":
      case "ondragleave":
      case "ondragover":
      case "ondrop":
      case "onfinish":
      case "onfocus":
      case "onhelp":
      case "onmousedown":
      case "onmouseup":
      case "onmouseover":
      case "onmousemove":
      case "onmouseout":
      case "onkeypress":
      case "onkeydown":
      case "onkeyup":
      case "onload":
      case "onlosecapture":
      case "onpropertychange":
      case "onreadystatechange":
      case "onrowsdelete":
      case "onrowenter":
      case "onrowexit":
      case "onrowsinserted":
      case "onstart":
      case "onscroll":
      case "onbeforeeditfocus":
      case "onactivate":
      case "onbeforedeactivate":
      case "ondeactivate":
      case "type":
      case "codebase":
      case "id":
        ret.objAttrs[args[i]] = args[i+1];
        break;
      case "width":
      case "height":
      case "align":
      case "vspace":
      case "hspace":
      case "class":
      case "title":
      case "accesskey":
      case "name":
      case "tabindex":
        ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
        break;
      default:
        ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
  ret.objAttrs["classid"] = classid;
  if (mimeType) ret.embedAttrs["type"] = mimeType;
  return ret;
// -->
</script>
<script language="JavaScript" type="text/javascript">
<!--
// Globals
// Major version of Flash required
var requiredMajorVersion = 10;
// Minor version of Flash required
var requiredMinorVersion = 0;
// Revision of Flash required
var requiredRevision = 2;
// -->
</script>
</head>
<body bgcolor="#999999">
<!--url's used in the movie-->
<!--text used in the movie-->
<script language="JavaScript" type="text/javascript">
<!--
var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if(hasRightVersion) {  // if we've detected an acceptable version
// embed the flash movie
AC_FL_RunContent(
'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,2,0',
'width', '730',
'height', '570',
'src', 'our_house_flipbook_3',
'quality', 'high',
'pluginspage', 'http://www.adobe.com/go/getflashplayer',
'align', 'middle',
'play', 'false',
'loop', 'false',
'scale', 'noscale',
'wmode', 'window',
'devicefont', 'false',
'id', 'our_house_flipbook_3',
'bgcolor', '#999999',
'name', 'our_house_flipbook_3',
'menu', 'true',
'allowFullScreen', 'true',
'allowScriptAccess','sameDomain',
'movie', 'our_house_flipbook_3',
'salign', ''
); //end AC code
} else {  // flash is too old or we can't detect the plugin
var alternateContent = '<p>This content requires version '
+ requiredMajorVersion + '.' + requiredMinorVersion + '.' + requiredRevision + ' '
+ 'or higher of the Adobe Flash Player.</p>'
+ '<a href="http://www.adobe.com/go/getflashplayer/">Get Flash</a>';
document.write(alternateContent);  // insert non-flash content
// -->
</script>
<noscript>
       This content requires the Adobe Flash Player.
  <a href="http://www.adobe.com/go/getflashplayer/">Get Flash</a>
</noscript>
</body>
</html>

Hi MooksGoo_howdy
There's a fair bit of discussion of this topic in http://forums.adobe.com/message/4635231#4635231.
In general you have to manually create the file/folder structure the SWF expects in the hosting environment. There's no way for Muse to know what files the SWF depends upon, if any, and where they need to be located.
A SWF that has external dependencies will never work in Muse Preview or Muse Preview in Browser, but can be made to work on a published/uploaded site by manually using an FTP client to create the file/folder structure the SWF requires.
Regards
Anshul Sharma

Similar Messages

  • Trying to load flash file in iWeb and when I enter info in the "html snippet" box a "missing plug-in" message comes up (although i have adobe flash player in, if that's the plug-in they're looking for). Anyone have any similar problems or solution. Thanks

    I'm trying to load flash file in iWeb and when i enter info in the "html snippet" box a "missing plug-in" message comes up (although i have Adobe Flash player installed, if that's the plug-in they're looking for). Anyone have any similar problems or solutions. Thanks

    when i publish my site and vew it the page on the web it just comes up with the file name w/ the ,swf and the "mising plug-in" message below. if i click on the file name it displays the flash file but gigantic (the entire height of the page).totally perplexed!
    anyway, here is the code.
    <object classid=”clsid:D27CDB6E-AE6D-11cf-96B8-444553540000”codebase=”http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0, 40,0”width=”244” height=”221” id=”ETrade_banner_Gumby_replay”><paramname=movie value=”ETrade_banner_Gumby_replay.swf”><param name=qualityvalue=high><param name=base value=”.”><embed src=”ETrade_banner_Gumby_replay.swf”quality=high width=”244” height=”221” name=”ETrade_banner_Gumby_replay”align=”” type=”application/x-shockwave-flash” pluginspage=”http://www.macromedia.com/go/getflashplayer”base=”.”></embed></object>

  • My Ipod 3rd generation wont turn off and is showing a blank white screen someone please help

    My Ipod 3rd generation wont turn off and is showing a blank white screen someone please help! xx

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
      Apple Retail Store - Genius Bar              

  • My iPad stop working suddenly i see black screen only pressing the home? and sleep button dose not solve the  problem please help?

    My iPad stop working suddenly i see black screen only pressing the home and sleep button dose not solve the problem please help ?

    Frozen or unresponsive iPad
    Resolve these most common issues:
        •    Display remains black or blank
        •    Touch screen not responding
        •    Application unexpectedly closes or freezes
    http://www.apple.com/support/ipad/assistant/ipad/
    iPad Frozen, not responding, how to fix
    http://appletoolbox.com/2012/07/ipad-frozen-not-responding-how-to-fix/
    iPad Frozen? How to Force Quit an App, Reset or Restart Your iPad
    http://ipadacademy.com/2010/11/ipad-frozen-how-to-force-quit-an-app-reset-or-res tart-your-ipad
    Black or Blank Screen on iPad or iPhone
    http://appletoolbox.com/2012/10/black-or-blank-screen-on-ipad-or-iphone/
    What to Do When Your iPad Won't Turn On
    http://ipad.about.com/od/iPad_Troubleshooting/ss/What-To-Do-When-Your-Ipad-Wo-No t-Turn-On.htm
    iOS: Not responding or does not turn on
    http://support.apple.com/kb/TS3281
    Home button not working or unresponsive, fix
    http://appletoolbox.com/2013/04/home-button-not-working-or-unresponsive-fix/
    Fixing an iPad Home Button
    http://tinyurl.com/om6rd6u
    iPad: Basic troubleshooting
    http://support.apple.com/kb/TS3274
     Cheers, Tom

  • Fire fox starts by it self and goes to search site all the time please help or it is back to Internet explorer

    fire fox starts by it self and goes to search site all the time please help

    Possible malware infection
    Do a malware check with some malware scanning programs.
    You need to scan with all programs because each program detects different malware.
    Make sure that you update each program to get the latest version of their databases before doing a scan.
    * http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    * http://www.superantispyware.com/ - SuperAntispyware
    * http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    * http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    * http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free

  • Just got an ipad air and while creating my apple ID with credit card, I got to itunes gift card/ itunes gift section and was asked to supply a CODE to proceed with the form but I don't have the code. please how how can i get the code?

    Just got an ipad air and why creating my apple ID with credit card, a CODE was requested in the itunes gift card/ itunes gift in order to preceed with the form but I don't have the code. Please how can I find the code so as to enable me complete the form successfully. Thanks alot

    The iTunes gift card field is optional, you don't have to fill it in - leave it blank if you don't have a gift card.
    iTunes gift cards are country-specific (they can only be used in their country of issue), and they are not available in all countries - so you might not be able to dill it anyway.

  • Muse wont export my files in html and gives an error code when trying to upload to BC

    Here is the error message I get but when we go to correct the file and replace it in Muse we still are getting this message.

    Hi,
    Can you provide me the url of your site ?
    Also, Please do a fresh upload of your site files to your server and this time make sure that you are not missing on any of the files that was generated by Muse.
    And you dont need to upload the .oam files onto your server separately as the files generated by Muse on exporting contains all the HTML , CSS and Javascript used in your Edge Animation.
    Regards,
    Rohit Nair

  • My fifth generation ipod nano wont show up on itunes... please help!

    I've had my fifth generation ipod nano for about five months now. Nothing has gone wrong with it. the ipod would show up on itunes with no problem. But today i plugged it in to my computer, itunes popped up as usual, but then another pop up came:an ipod has been detected but could not be itentified properly. Please disconnect and reconnect the ipod, then try again.
    I unplugged and plugged my ipod several times, but nothing was fixed. I even changed the cable and did the same, but still, nothing happened. I tried resetting my ipod and then plugging it in, but nothing was fixed. then i put the ipod on disk mode and THEN tried to see if it would show up, but it still wasnt fixed.
    I really need my ipod to show up on itunes!can anyone help?

    Canned response, so some of the below stuff you already tried, so ignore those ones...
    Start with these articles and see if that gets you anywhere...
    iPod is not recognized properly by computer when USB drivers are not installed properly or are out of date
    http://docs.info.apple.com/article.html?artnum=305136
    iTunes for Windows: iTunes 7 doesn't recognize iPod
    http://docs.info.apple.com/article.html?artnum=304434
    iPod shows up in Windows but not in iTunes
    http://support.apple.com/kb/TS1363
    iPod missing in "My Computer" or in iTunes for Windows
    http://docs.info.apple.com/article.html?artnum=61711
    Also you might try forcing the iPod into disk mode first, then connecting it to your computer and see if that makes it show up in iTunes...
    Putting iPod into Disk Mode
    http://docs.info.apple.com/article.html?artnum=93651
    Windows confuses iPod with network drive or hard drive and may keep iPod from mounting or songs may seem to disappear
    http://support.apple.com/kb/TS1493
    Also this semi-recent interesting post by a user here for a work around when an iPod is in the "recovery mode" looping state...
    http://discussions.apple.com/thread.jspa?threadID=1679535&tstart=0
    Cheers,
    Patrick

  • Windows 7 partition corrupted, and wont recognize my repair disk/installer disk, please help?

    I tried to make my windows 7 partition bigger but it corrupted the boot bios, but now I cannot get windows to recognize an installer disk or repair disk, (ive tried all related booting commands IE C/alt and some others, will i have to re-install windows?

    Nah but I didn't have any important files on there (at all) so I just rebuilt it, took me a while due to some difficulties in the mac OSX disk being scratched but I got there, but thanks anyways .

  • Since ios7.1update my icloud has got my old apple id and wont allow me to change it? Please help!!

    Please help, since updating my iphone 5 to ios7.1 my icloud account has reverted to my old apple id. My apple id has been changed for quite a while and it worked fine before? I have checked my apple id and it is correct on my itunes account but not icloud. Not sure how to change it? Thanks

    To change the iCloud ID you have to go to Settings>iCloud, tap Delete Account, provide the password for the old ID when prompted to turn of  Find My iPhone, then sign back in with the ID you wish to use.  If you don't know the password for your old ID, or if it isn't accepted, and your old ID is an earlier version of your current ID, go to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn of  Find My iPhone on your device, even though it prompts you for the password for your old account ID. Then save any photo stream photos that you wish to keep to your camera roll.  When finished go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • Masked pre comp of clip not showing clip motion within the mask please help

    Hi there,
    I'm trying to create a phenakistoscope Phenakistoscope - Wikipedia, the free encyclopedia out of a motion picture of a dancer.
    I've transformed the clip of the dancer and precomposed it and then masked and animated the rotation of the pre comp in a new composition.  I then duplicated the now animated pre comp 20 times offsetting each one, a frame later than the last to create the wheel effect with trailing frames.
    The animation of the mask and offset is working fine, however the footage in the clip is not playing in the masked composition.
    please help, here is the project file. Dropbox - caropheankistope.aep
    RAW FOOTAGE SAMPLE Dropbox - carolina base_raw sample.mov
    NON WORKING COMP SAMPLE OUTPUT Dropbox - carolina base_sample.mov
    Thanks
    adam

    I'm replying to your question on my phone so I can't look at your project but I did look at your video.
    Here is what I would do to troubleshoot the project. First run a RAM preview of the pre-composed and masked wedge comp. If that plays back correctly then everything else should work unless you have applied some kind of time effect to the duplicated layers. If that doesn't work then show us a screenshot of that pre-comp with all of the properties of the movie layer revealed (Press that u key twice).
    If you have not sorted this out by the time I get back the office I will try and take a look at your project.

  • TS4009 i bought more storage from iclouds and it is not going to the storage please help me!!!

    i bought more storage from iclouds and its not showing that i have more storage what do i do????

    What do you mean by "its not showing that i have more storage"?
    The storage you but on iCloud should show on iCloud and not on your device.
    There is no way to increase the amount of storage on an iPhone short of selling the old one and buying a new one with more storage.
    Allan

  • I have purchased a new macbook pro model no 840ll/a after the first installation i shut down the coputer. when i start gain i cant  . it is asking the passwoerd and i dont remember what is the password . please help

    i have purchased a new macbook pro model no 840ll/a after the first installation i shut down the coputer. when i start gain i cant  . it is asking the passwoerd and i dont remember what is the password . and when i give the apple id password it is not accepting  . what to do

    i am able boot my system because of wrong password  . how to open

  • HT201272 hello im looking for a movie that i purchash and i have the receip please help

    i purchash a tink bell movie and im traing to transfer in a new computer and can not find it i have the receip

    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    http://support.apple.com/kb/HT2519

  • Wifi option is greyed out and wont fix after restoring to factory settings--PLEASE HELP!!!

    my wifi option is "greyed out" therefore it doesnt allow me to connect to the internet. Ive restored it to factory settings, its still greyed out. Please, please, please help me out here.

    See:
    iOS: Wi-Fi or Bluetooth settings grayed out or dim
    One user reported that placing the iPod in the freezer fixed the problem.
    If not successful, an appointment at the Genius Bar of an Apple store is usually in order.
    Apple Retail Store - Genius Bar

Maybe you are looking for