Updated SWF won't play in browser anymore

I recently made a word change, that's all, to my fla file and exported the updated swf file. It plays in preview just fine, as well as when typing in the direct url - www.bicesandiego.com/about.swf but won't play on its own after I uploaded to the server.
I am not a programmer and received these files from the client, but I have made changes to this very file before and it worked fine. Now, it will not show when I go to the about page. Any thoughts?

If the main file loads the about file, it may have a mask that needs to be extended.  But since you say you only changed a word, as opposed to adding a number of them, I don't see what that would have done to change anything.  So you must have changed something else in the process of whatever you were doing.

Similar Messages

  • Swf won't play in browser

    I have a problem with my swf file playing in the browsers. It works fine when I play it outside the browsers, but as soon as I load it to the site...it doesn't play. Please help.
    www.thelusciousstore.com

    The best guess I can hazard at the moment is that you are missing some other files (possibly swf's or image files) that the index.swf file is trying to load.
    If you do have other files that it loads and you have placed them where you believe they need to go, can you explain that arrangement folder-wise?

  • .swf won't play - blank screen

    Hello,
    I had my flash designer take a 16MB .mpg file and convert it
    to a 2MB .swf
    file.
    I created a "blank" .hmtl page and dropped in the .swf -
    which shows up as
    the white box on this page:
    http://emerge-solutions.com/pland
    (this link will forward you to the page.)
    After I got a blank screen, I uploaded the .flv (2MB) and the
    .fla (14MB)
    files to the server as well (same folder as the .html file)
    but that didn't
    help - same blank screen.
    Can anyone help me understand why this .swf won't play?
    Thank you in advance!

    It plays fine for me.
    Tested in Chrome, IE7, and FF3

  • SWF created in Flash MX 7 won't play in browser w/Flash Player 9

    I just noticed that my website, which I made from a template
    from templatesheaven.com, isn't playing in Flash Player 9 in a
    browser. It plays in the standalone player for some reason, but
    when I look at it on the web, it shows just the count-in (or
    whatever it's called, the pre-load), but stops when the counter
    hits 99% and the action never starts. The website is at:
    www.gwhitty.com
    I built it using Flash MX 7, but for all I know the template
    was made using Swish, which apparently causes problems with Flash
    Player 9. Anyone have any other ideas? Still plays fine in FP7, so
    I'm stumped. If I open my .fla file in Flash 9 and then export,
    will that likely fix the problem? Any ideas appreciated...

    annabeth wrote:
    > I have just uploaded a website using Flash 8 with the
    swf embedded into an html
    > page. I am on Mac OSX and it plays perfectly in IE,
    Opera and Firefox. Other
    > people trying to access the site from a PC say the swf
    content won't play - the
    > page comes up blank. They have downloaded the Flash 9
    player - is this the
    > problem? I have the Flash 8 player.
    URL ?
    Regards
    Urami
    Happy New Year guys - all the best there is in the 2006 :)
    <urami>
    http://www.Flashfugitive.com
    </urami>
    <web junk free>
    http://www.firefox.com
    </web junk free>

  • Captivate 4 published SWFs won't play suddenly

    Hello, I have been happily making Captivate 4 training, using a template. The published SWry mF movies have been playing just fine... on my PC and several others.
    But today went to show off my work to the boss... who HAS successfully played previous Captivates I've made, and they won't play.
    Double-clicking the HTM, or trying to open the SWF from the browser just shows a blank white screen that does nothing.  What would cause a published SWF, etc., to suddenly not play on selected machines... the owner doesn't remember chanigng anything...
    And, what would be my trouble-shooting sequence to try and fix this problem?
    Thank you very much

    Hi there
    Same dog, different leg action. In other words, what you linked to is a red herring.
    What I mean by that is the article you linked to is referring to an inability to preview from Captivate 3. You are talking about Captivate 4 and the issue doesn't seem to manifest until after you publish, right?
    Sure, Flash Player 10 may appear to be the common link at the moment, but we don't know for sure. With Captivate 3, the issue was only with preview. The output worked just fine. So the issue there is with an internal mechanism in Captivate as you work to create your content. What you are seeing now is certainly related to the internals of Captivate, but 4 is a new beast. It would seem that 4 has maybe introduced something causing this for you.
    There may have been a few other posts related to this phenomenon. But they are very few and far between. Given the widespread use of the Flash Player, if it were solely an issue with the Player, I might expect we would have seen loads of reports. But we haven't.
    I'll be very interested to see what you discover. Out of curiousity, I'm guessing you have attempted different combinations of settings? AS2 VS AS3, externalizing items, etc.?
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Ipod won't play through headphones anymore... and I JUST bought it!

    I just bought my 5th Gen. ipod nano a week ago and was working fine. After I had used it on my ihome docking station, it won't play through my headphones anymore.... I use the ear buds that came with it- all the player does is imediatly play through the speaker- is there a setting or something where I can hear through the ear buds? I know I have the earbuds pushed into the jack all the way, I can actually hear some music in the earbuds (just not very loud). What can I do?

    I know I have the earbuds pushed into the jack all the way, I can actually hear some music in the earbuds (just not very loud). What can I do?
    Sorry, allow me to ask you a question, have you tried to increase the volume of the iPod, if Yes, then bring it for service ... it is a hardware issue

  • Flash won't play in browser, only on local system

    Hi,
    When I use 'finder' to open and play this SWF, the track plays fine. As soon as I drag the SWF onto my html web page and preview in the browser, it is not functioning, so no sound plays. How do I need to tweak this so it could play? Here are the actions also:
    var loadSnd:URLRequest = new URLRequest("Snow.mp3");
    var thisSnd:Sound = new Sound();
    var sndTrans:SoundChannel = new SoundChannel();
    thisSnd.load(loadSnd);
    play_btn.addEventListener(MouseEvent.CLICK, playF);
    stop_btn.visible = false;
    stop_btn.addEventListener(MouseEvent.CLICK, stopF);
    function playF(event:MouseEvent):void{
    //SoundMixer.stopAll();  << enable only if you don't want sounds to double-up based upon clicking the play button numerous times; avoids overlaps
    sndTrans = thisSnd.play();
    play_btn.visible = false;
    stop_btn.visible = true;
    function stopF(event:MouseEvent):void{
    sndTrans.stop();
    stop_btn.visible = false;
    play_btn.visible = true;
    Here is the page:
    www.c2cstudios.com/test
    Please advise as to what I need to modify...thought it may have been a path issue, but now I do not know for certain. Thanks!

    When I open those links, I get blank pages. I wonder if they are uploaded properly. The MP3 should play directly in my browser and I should see player controls to start and stop the movie, but I don't see them. To see if the flash movie actually loads, you could give it a background color like red or yellow. If you don't see that, it means you didn't upload it or something went wrong. When I rightclick in a working Flash movie, I see a different context menu with options like "zoom in". I can't do that anywhere, which makes me suspicious.
    So I tested using HTTPFox (Firefox addon) and got the following results, which means both files are problematic, so they are not uploaded properly.
    05:05:28.935    0.473    513    2190    GET    (Aborted)    application/x-shockwave-flash (NS_BINDING_ABORTED)    http://c2cstudios.com/test/sound/snow.swf
    05:06:27.069    0.485    516    9.8M    GET    (Aborted)    audio/mpeg (NS_BINDING_ABORTED)    http://c2cstudios.com/test/sound/Snow.mp3

  • My Flash SWF file inside of my Flash Catalyst SWF won't play when previewed in Dreamweaver?

    However, when I preview the flash catalyst swf file, the flash swf thats inside, plays just fine. any suggestions or solutions?

    Does the one swf load the other swf?  If so, is the one swf in the same folder as the html file that embeds it?

  • Facebook won't play facebook videos anymore

    MY iPad won't play videos anymore

    Hello there, Gelbke.
    The following Knowledge Base article offers up some great, practical steps for troubleshooting performance issues with apps installed on your iOS device:
    iOS: An app you installed unexpectedly quits, stops responding, or won’t open
    http://support.apple.com/kb/ts1702
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Safari won't play youtube videos anymore. I've never had trouble in the past. I switched to chrome but then back to safari and changed the default browser to safari. Now safari won't open any sites that require a user and password. Any suggestions?

    Hello everyone,
    I've recently been getting error messages on youtube videos when using safari. This never used to happen. I tried using chrome but it didn't take care of the problem. When I set my default browser back to safari, safari won't open any websites that require a username and password. Any suggestions?

    My case is different from those listed below.  First, I'm running OS X 10.8.5 and Safari 6.0.5.
    My problem is this:
    I run a Google search, say, "youtube somesong", and from the hit list returned from google I
    pick some selection. Youtube launches and plays the video without problems.  However, when
    i click on any of the alternate videos from the page's  vertical list, only the name of the chosen video
    appears beneath the video I just watched.  The new selection itself is not loaded by Safari.
    This occurs for any selection I choose.  My way around this problem is to force a Safari reload of
    the page by using the keyboard shortcut, Command-R.  This fills in the old video window with the
    video I just chose.  Can I conclude that this is a Safari issue alone, or is it a Safari/Youtube combo gotcha?  Anyway, the present condition *****.
    This problem began sometime after i upgraded to Mountain Lion.  I have reset Safari and have also
    deleted the Youtube.com Cache, Cookies, and Local Storage from the Privacy settings under
    System Preferences. I have also tested the problem by running Safari in 32 bit mode (no luck there).
    If anyone out there has experienced this scenario, I sure could use a little help here.

  • SWF Won't Play Locally or In Browser

    I put an .swf file on the home page of my site. When I try to play it locally (preview in Safari, Firefox, or Chrome) I am in given this message.
    When I try to view it online on any of 3 previous browsers I simply get a blank screen. On IE it attempts to download a later version of Flash but nothing happens.
    I'm guessing something is wrong with the .swf they are referencing but is was provided to me by Flash along with the actual .swf I exported. I imagine it will actually be necessary for the viewer of my site who doesn't have Flash. Any thoughts?

    This appears to be a Dreamweaver problem. I never, ever, use Dreamweaver, and so I'm not the best person to parse out a problem. I tried the same thing that you did with an .swf of my own and I got the same error message.
    It seems that the problem is with the default html that Dreamweaver writes when you embed a Flash file. There is a line:
    <param name="swfversion" value="17.0.0.0" />
    The number "17" is the problem. You need to change that to the number of the Flash player that you are designing for in Flash. If you've left Flash's Publish settings at their defaults, then you are designing for Flash Player 11. So you need to change that number 17 to 11 in the html.
    To find the Flash Player value that Flash is using, go to the File menu and select Publish Settings. A new window will open. In the upper left is an option labeled: Target. This is the player version that Flash is using.

  • Swf file not playing in browser

    I have a problem with a swf file which will not play in web browser.
    It played fine until I updated my site. I therefore suspected a pathing issue within dreamweaver and looked thorugh that forum for an answer.
    I tried typing the absolute path to the swf file in the browser address bar and found it straight away. When I clicked on it the screen stayed blank.
    I checked the path to the file and the flv file was relative to the document and not the site.
    swf plays fine in flash player, flash, and locally on dreamweaver.
    I moved the swf up the file tree and changed the links accordingly but still would not play.
    I also tried saving it as a new swf from flash, but that doesn't play either.
    I added another swf to the containing folder and that played fine in the browser.
    When I open the fla file in flash it only shows a flv playback movie, not the elements, I think this is because it was created in after effects.
    Here is the link to the containing folder, the swf file is Home_page_movie_V2.swf
    http://www.joinerycadsolutions.com/Flash/01 Home
    I have other swf files playing fine and this swf played ok originally so I still think it's a pathing problem but I am not that savvy on flash and cannot figure it out.
    Any help would be greatly appreciated, just bear in mind my low level of ability.
    Thanks
    Stuart

    The .swf is loading just fine... but it is expecting to load a .flv video file.
    The path inside the .swf to the .flv file is not correct. The path inside the .swf to the .flv file needs to be relative to the .swf as it's located on the Web page, NOT the physical location of the .swf.
    Here is the absolute address of the .flv:
    http://www.joinerycadsolutions.com/Flash/01%20Home/Home%20V1.flv
    Here is a test player using that address:
    http://www.cidigitalmedia.com/tutorials/flash/cidm_simple_vid_player.html
    So unless your .swf is broken, it just a pathing issue.
    From an old post:
    Pathing issues
    Almost always when it works on the local machine and not the server, it's a pathing problem.
    You can put your Flash related files in whatever folders you want, they do NOT have to be in the root, they do NOT all have to be in the same folder. But if you have a problem and if sticking them all in the root folder works, then you know that the issue was a pathing problem.
    Just remember that paths used in the .swf become relative to the Web page on which the .swf is placed, NOT it’s physical location.  So for example, if your .swf is in the flash/data folder and you use that .swf on a Web page in the root folder, you are in effect, removing that .swf from flash/data and putting it in root. So if the .swf is loading any related files (xml, images, video, etc), the path used inside the .swf to load the .xml file has to be relative to it's new location in root and then back down into flash/data. This is true even though when testing the .swf by itself, it can be inside flash/data and work just fine, since relative to it's location, the path is just fine, they are in the same folder. But if that same path is used when the .swf is placed on a page two folder levels up, the relative path has changed, the old "same folder" path will not work.
    In fact if you are placing the .swf on a web page in a different folder than the .swf is stored in, and that .swf calls external assets, then direct clicking and opening of the .swf in it’s folder should NOT work! That’s because the paths to the external assets should be relative to the Web page and not the physical location of the .swf.
    So just be sure that you use addresses relative to the final Web page locations (not physical file locations) and you can put the Flash related files in what ever folders you want.
    Best wishes,
    Eye for Video
    www.cidigitalmedia.com
    Best wishes,
    Adninjastrator

  • Some tracks won't play in iTunes anymore

    I have a number of .mp3 files that iTunes used to play, but now no longer will. Nothing happens when I double click on them or press play. Most of my other tracks play fine.
    When I "get info" about the problem tracks within iTunes, and I click on Summary, I notice that the Format, Channels, ID3 Tag, and Encoded With fields are no longer present. The file type is still MPEG, and when I locate the files through the finder and get info, they are .mp3 files with an .mp3 extension.
    I've read some discussion of this problem on these boards, and some have suggested that the problem occurs when one tries to play the files through QuickTime. This isn't my case. (Quicktime says "the movie could not be opened.") But I have noticed that the problem tracks do have in common album titles in which I have included a colon. I allow iTunes to organize my files, and usually--and even in the case of these problem files--an underscore replaces the colon when iTunes creates the album folder in my Music folder. I bring this up only to suggest that one common denominator for the problem files is the presence of a colon in the album name for the iTunes tag, although the presence of a colon is not a guarantee that the file will not play.
    I have tried copying a trouble file to the desktop, deleting the file from the library and from the Music folder (although I haven't emptied the trash) and then trying to restore the copy to my iTunes library. iTunes won't accept the file.
    Any ideas? What a crazy problem!
    MacBook   Mac OS X (10.4.6)  

    Unfortunately, you are not alone with this. However, I have yet to come across a solution to the problem after many hours trawling these discussion boards and the net.
    I have exactly the same symptoms. But my common denominator is ‘missing Album Artwork’. Although the album has Artwork, all the tracks that have ceased playing and are being ignored by iTunes, have lost their Artwork.
    This would suggest a problem with the ID3 tags i.e that they have become corrupted. Of course, the recent update from iTunes 6 to 7 which introduced the ‘Coverflow’ technology has coincided with the start of my problem. A quick glance at the ‘last played’ date of the problem tracks confirm that the corruption of the ID3 tag is DEFINETLY post iTunes7.
    I have tried editing the metadata with an ID3 tag editor, and can change everything except the Artwork field. If anyone has found a way to restore a track after the same problem, please post…many thanks.

  • SWF won't preview in browser.

    I changed/updated an SWF movie on my index page. It previews in fine in Live View, but reverts to the movie I replaced it with in FF and Safari. Forget about uploading it, it only uploads the old movie. I'm flummoxed.  HELP?

    Your code is messed up.  You've got too many <html> tags and too many <body> tags in your document.  Looks like you copy & pasted everything from one page into another.
    Look at corrected code below and note that the <body> tag goes inside the <html> tag.  And everything is closed at the end.  Repeat on your other site pages.  Use the W3C code validation tools to help you.
    CSS - http://jigsaw.w3.org/css-validator/
    HTML - http://validator.w3.org/
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Creative Troubleshooter</title>
    <meta name="description" content="Engaging and persuasuve advertising concepts for web,
    TV, print and social media." />
    <style type="text/css">
    body {
    background-color: #333333;
    padding: 0px;
    margin-left: 0px;
    margin-top: 40px;
    margin-bottom: 0px;
    .style8 {     color: #666666;
    font-family: Geneva, Arial, Helvetica, sans-serif;
    font-size: 9px;
    #Layer1 {
    position:absolute;
    width:116px;
    height:48px;
    z-index:1;
    left: 761px;
    top: 646px;
    font-size: 10px;
    #apDiv1 {
    margin-left: 30px;
    margin-top: 30px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #777777;
    </style>
    <script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
    <script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
    <script type="text/javascript">
    function MM_goToURL() { //v3.0
    var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
    for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
    </script>
    </head>
    <body>
    <div class="style8" id="Layer1" onclick="MM_goToURL('parent','http://www.creativetroubleshooter.com/sample1.htm');return document.MM_returnValue">Skip Intro</div>
    <script type="text/javascript">
    AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','1200','height','600','src','flash button/New Movie/big-open6b','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','flash button/New Movie/big-open6b' ); //end AC code
    </script><noscript>
    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="1200" height="600" id="FlashID" title="Creative Troubleshooter">
    <param name="movie" value="flash button/Web-open6b.swf" />
    <param name="quality" value="high" />
    <param name="wmode" value="opaque" />
    <param name="swfversion" value="7.0.70.0" />
    <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
    <param name="expressinstall" value="Scripts/expressInstall.swf" />
    <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
    <!--[if !IE]>-->
    <object type="application/x-shockwave-flash" data="flash button/Web-open6b.swf" width="1200" height="600">
    <!--<![endif]-->
    <param name="quality" value="high" />
    <param name="wmode" value="opaque" />
    <param name="swfversion" value="7.0.70.0" />
    <param name="expressinstall" value="Scripts/expressInstall.swf" />
    <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
    <div>
    <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
    <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
    </div>
    <!--[if !IE]>-->
    </object>
    <!--<![endif]-->
    </object>
    </noscript>
    <script type="text/javascript">
    var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
    document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
    </script>
    <script type="text/javascript">
    try{
    var pageTracker = _gat._getTracker("UA-xxxxxx-x");
    pageTracker._trackPageview();
    } catch(err) {}</script>
    <!-- Start of StatCounter Code -->
    <script type="text/javascript">
    var sc_project=563805;
    var sc_invisible=1;
    var sc_security="7bc9e854";
    </script>
    <script type="text/javascript"
    src="http://www.statcounter.com/counter/counter.js"></script><noscript><div
    class="statcounter"><a title="myspace profile counters"
    href="http://www.statcounter.com/myspace/"
    target="_blank"><img class="statcounter"
    src="http://c.statcounter.com/563805/0/7bc9e854/1/"
    alt="myspace profile counters" /></a></div></noscript>
    <!-- End of StatCounter Code -->
    <script type="text/javascript">
    swfobject.registerObject("FlashID");
    swfobject.registerObject("FlashID");
    </script>
    <!--end of body --> </body>
    <!--end of document --></html>
    Flash only sites don't typically do well with Search Engines.  You really should add some equivalent HTML content for the various devices and users who can't use Flash.
    Good luck,
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • After downloading newest android update video won't play from within photos.

    After updating to the latest Android software, the video playback will not work and the error message "Can't play video" appears when trying to access video from within the photos section, they are visible as thumbnails and first frames. .. They can still be played back from the videos section but it used to work on both. This has affected all videos that are on the phone. Does anyone have any ideas?  Thanks, 

    spoke to online help today, they told me to backup my phone carry out software repair using pc companion. it did nothing but wipe my apps, the problem on mine comes from it won't allow films to be downloaded to the memory card, it will however download to the phone, which is crap seeing how small the onboard memory is. i've submitted an email and no doubt in a week or 2 there will be another update to sort this. it seems that none of these updates are tested properely as when my xperia z updated once you lost loadspeaker till the came up with a patch file.
    my xperia z1 will play vids but when i updated there was about 40gb from video unlimited saved on the memory card, which immediately came up out of rental.... which is a pile of crap seeing as they were bought films. lets keep fingers crossed this is fixed quick.
    oilibear wrote:
    After updating to the latest Android software, the video playback will not work and the error message "Can't play video" appears when trying to access video from within the photos section, they are visible as thumbnails and first frames. .. They can still be played back from the videos section but it used to work on both. This has affected all videos that are on the phone. Does anyone have any ideas?  Thanks, 

Maybe you are looking for

  • Error Handling in OS 10gR3: How To's, Approaches, best practices

    I am trying to do error rhandling within OSB 10gR3 and looking for some guidance as to best practices and how to carry out the error handling based on my use-case as - Consumers ---> GenericProxyExt(WSDL based) ---> GenericProxyInt(Any SOAP) ---> Pro

  • JMF and Darwin Streaming Server.

    I have darwin streaming the sample files. I use JMF to connect to darwin. The connection is made, The server knows Jmf is connected , the server streams, verified with packet monitor. The problem is that JMFStudio just does not start playing the vide

  • I was finally able to get a movie into my movie folder

    but no matter what I try I can't burn it, what do I do once the movie is in the folder.

  • Can't delete Motion.app

    After a problematic (endless, failed) update from the App Store, I need to delete and maybe reinstall Motion but I can't. Emptying the trash is impossible (left hanging there with a blank progress bar for 12 hours or more...). I tried using Terminal,

  • Integrating SRM and Oracle using XI as middle layer

    Hi,   In our current scenario we are implementing stratagic sourcing,operational procurement in SRM 5.0 with backend as Oracle E-business suite using XI as integration layer. As i have seen SAP config guides in all acenario's are there between SRM an