Flash swf file not loading on webpage

Hi there,
I have put an swf onto my web page and everything works fine when i test it in my browser through dreamweaver.
When i go online to my website:  http://www.organicgrowshop.co.uk/     it doesn't load
I have uploaded the two script files to my webhost. I have the latest version of flash on my comp. I can get an FLV file to load ok in its place.
What am i doing wrong??
Any help is much appreciated!
Thanks,
Matt

Hi there,
Thanks very much for taking the time to help me!
Sorry, i have been messing around trying to get different things to work with no luck.
I did have the script files and the swf uploaded directly to my root folder, this didnt work so i tried making a scripts subfolder in my root folder to put the scripts in. This hasnt worked either.
The files are definitely in my root folder. Can you take a look again for me?
I dont understand why i can get it to work with an FLV file but not with the SWF file?
Thanks again,
Matt

Similar Messages

  • SWF Files Not Loading

    I created a master fla and swf files to load into the master
    file externally. Everything loads into the master file just fine
    when I view it in flash or flash player. However I need to add a
    background to it along with a couple other things that I only now
    how to do in dreamweaver. Dreamweaver will load the master flash
    swf but it wont load the external swfs. Please help if you can.
    Thanks.

    I am not sure I completely understand what you are trying to
    do. Can you give us a link to the page in question?

  • Flash video file not loading

    Hi,
    I'm having a problem getting some flash video files to load.
    So far it's affecting 2 files located on these pages:
    Martin
    O'Brien movie and
    John
    Gormley movie
    The .flv files are being hosted on amazon s3. I have done
    several things so far to try to figure out why they aren't loading:
    * Having the .swf file in the same folder as the web page
    (doesn't work)
    * Inserting a different .flv file from a different folder in
    amazon s3 (doesn't work)
    * Changing file permissions (doesn't work)
    * Linking to the .flv file in same manner from a different
    site on same ISP (video does work)
    * Embedding .swf file in a html file instead of a php file
    (doesn't work)
    I can only guess that it's something specific to the
    www.bmfconferences.com site. As I said i've tried the same .flv
    file on a different site with the same ISP (it says Bruce Robinson
    but it's the John Gormley video file (
    John
    Gormley movie on different site) and this works, but I don't
    know what else to look for to get the files to work on the bmf
    site.
    Any help would be much appreciated.
    Louise.

    Hi All
    I found the solution!... I had to add the MIME type .flv =
    video/x-flv to my web server (Windows 2003).
    Thank anyway
    Rit

  • Swf file not loading over Https(SSL) on Internet Explorer...

    hi ,
    I have a .swf file used in html file and i try to browse using "https(SSL)".it will loads fine in Firefox, but in Internet Explorer wont able to load. When right-clicking it says "movie not loaded".
    even i googling for the same and i got below option but i am still not able to get flash on html page. it will working fine in Internet Explorer,FireFox etc when we use"http".
    1) add headers like "Cache-Control: must-revalidate" or "Cache-Control: max-age=0" or "Cache-Control: no-store" etc
    2) use CrossDomain.xml
    we also able to load swf in https on Internet Explorer but for that we have to do below settings in Internet Explorer browser.
    1) Go to Tools --> Click on Internet Option --> click on Advanced tab --> Now in security section checked mark on "Do not save encrypted pages to disk".
    but above way is not a proper way to resolve the https issue
    Thanks.

    found this within the Adobe forums, seems to solve your issue.
    I would make sure to use the crossdomain file as well.

  • SWF files not loading onto page in Catalyst output.

    Hello,
    This is a new one that I have not yet seen.  I have a large assortment of SWF files set up in Scroll Panes and they are not loading up when I check the project using Firefox or Safari.  The site is here:
    www.electronic-lifestyle.com
    Go into any page linked from the top row and then hit a sub page.  When you see a scroll bar come up on the right side of the film strip yet nothing inside the film strip you will see the issue.
    This is really serious and could screw up my entire project so any advice would be really helpful.  I need to figure out why the SWF files are not loading in on the browser with the files from the server when they work just fine using the local deploy files.  Everything works just fine from the machine but when I try to get it to download from the server nothing.
    All of the SWF files are built in Flash CS5 using AS3 and contain some simple links and commands.  Some of the SWF files are coming up just fine, it is just the latest batch of files I have uploaded that are giving me the problem, but only off the server.  The same files work just fine in local mode.
    Thanks in advance,
    Brett

    Chris,
    This is not an apples to apples comparison but I think it will Illustrate the differences.  This is a sample of code from Catalyst that works:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Group xmlns:s="library://ns.adobe.com/flex/spark" xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:fclib="com.adobe.flashcatalyst.components.*" xmlns:d="http://ns.adobe.com/fxg/2008/dt">
        <fx:Script>
            <![CDATA[
                protected function mac_btn_clickHandler():void
                    navigateToURL( new URLRequest( encodeURI("http://www.mcintoshlabs.com")), "_blank");
                protected function integra_btn_clickHandler():void
                    navigateToURL( new URLRequest( encodeURI("http://www.integrahometheaters.com")), "_blank");
            ]]>
        </fx:Script>
        <fclib:SWFController loadForCompatibility="true" source="assets/images/ElectronicMain2c.swf" x="0"/>
        <s:Button skinClass="components.Button1" x="0" y="1328" d:userLabel="Mac_btn" click="mac_btn_clickHandler()"/>
        <s:Button skinClass="components.Button1" label="Button" x="0" y="1768" d:userLabel="Integra_btn" click="integra_btn_clickHandler()"/>
    </s:Group>
    This is an example of the AS3 code that was confounding the SWF load on the example I gave:
    button_1.addEventListener(MouseEvent.CLICK, fl_ClickToGoToWebPage);
    function fl_ClickToGoToWebPage(event:MouseEvent):void
        navigateToURL(new URLRequest("http://www.mcintoshlabs.com"), "_blank");
    button_2.addEventListener(MouseEvent.CLICK, fl_ClickToGoToWebPage_2);
    function fl_ClickToGoToWebPage_2(event:MouseEvent):void
        navigateToURL(new URLRequest("http://www.integrahometheater.com/"), "_blank");
    Now these are from the same page, the first of which is online right now here:
    www.electronic-lifestyle.com/AS/Main.html
    This particular code is used on the Electronics page.  When I look at the two side by side it seems there are some syntax differences but I do not know enough about AS3 to tell what the important differences are.
    Thanks for looking,
    Brett

  • How can I have a Flash SWF file to load a HTML page?

    I'm looking for a way to have Flash (CS5) to load and display a very simple HTML web page. Basically, the SWF file would be a standalone document sent by e-mail (or people would post on their web pages), and this SWF would display the content of another web page (consisting mostly in a live video on a black background)
    How can I have Flash CS5 to do that??
    Thank you!
    -sv

    Yeah maybe I wasn't clear enough... Here's the big picture.
    I run a live TV station, broadcasting 24/7 on the web via a Flash application (a projector basically). The video feed is streaming on my site, as well as on numerous web sites across the net. A Flash projector is also available as a standalone application, people download and use it to watch the movies without opening a web page.
    I am currently changing the broadcast method, from Flash stream to HTTP stream. But since my TV is already posted and linked in many places, I want to change the Flash object on my server with a new one, that has a HTTP stream instead of the Flash stream. It seems that HTTP stream cannot be embedded in a SWF, but it can be displayed on a HTML web page. The solution I came up with is to have a HTML page to load in the Flash player. All I would need to do is to have that HTML page to display the HTTP stream.
    So from there, most of my audience would not need to change anything to watch my streaming TV, while those who downloaded the old Flash projector would need to download a new one.

  • Flash .swf file not appearing in browser when publishing from iWeb 3.02

    I have been working on a site for the last couple of months that i created in iWeb 2.0 and had successfully had small flash movies that I embedded via html snippets from code provided by numerous sources and youtube videos demonstrating how to get flash movies into one's site.
    The url is
    www.almafoods.com
    Today i upgraded to 3.02 and had to make a change to the home page. The domain opened up fine with all the HTML code and .swf on the page exactly as I had it in version 2.0
    When I now publish to a folder, first of all it doesn't copy over the .swf file unless I create a link to the file, but even when I upload all the directories to my ISP's remote server, the movie isn't not showing up in the browser. The html code file and .swf file are in their correct directories on my ISP's remote server
    I'm baffled as to what is going on here as its the exact same domain that worked perfectly in 2.0 and this has peed me off no end
    Does anyone have any suggestions or encountered the same problem in 3.02?
    Any advice would be very much appreciated

    Your .swf files are in the same folder as the widget-markup files.
    Keep your custom files OUTSIDE the folder with the sitename iWeb creates.
    iWeb will overwrite everything when it needs to do that, wiping out your custom files.
    Put the files in a separate folder and determine the link to these files.
    Read this : Using the iWeb HTML Snippet
    Besides that, to display these tiny pictures I wouldn't use Flash.
    Read this : Create a Banner Slideshow
    And then look at this page : My House

  • Swf files not loading properly

    Hello, I'm new to Flash and recently downloaded the trial to make a few things to add to my website. Nothing too complex, I made a slideshow of images and turned some images into buttons. Either way, after I publish the files and import the swf files into Dreamweaver, I always get a flash player error when I try to look at the content on my website. It will tell me that I need to update my flash player to 11.2. I've downloaded 11.2 multiple times, reinstalled flash player, and made sure that I do indeed have the correct version of flash player on this computer. Just to ensure that it wasn't a problem with my laptop, I checked with a different computer as well and it had the same problem.
    Is this a problem because I'm trying to create content with the trial version? Or am I just doing something wrong? After I create whatever I'm making in Flash, I save it, publish it, and import the .swf file into Dreamweaver.

    As far as the trial version being the source of the problem goes, it is not likely because the trialversion is a fully functional version without restrictions on use. 
    What might be part of the problem could be allowing Dreamweaver to embed the Flash content into the web page rather than using the code that Flash will generate for embedding. 
    What you should do is publish an html page via Flash (set it up in the Publish Settings) and test that html page to see if you have the same issue.  If not, copy the code from that page and use it in place of whatever Dreamweaver created for it.

  • My Flash Swf file dont load

    Ok do i made a Flash Swf, when i view in on adobe flash it works fine, but i need to upload it so i can use it on my site problem is when i do nothing loads, images, text. Its just a black box where the content should be but it just says Loading.

    Was there an answer to this issue ever? I have this problem in Captivate after importing an swf. The swf shows up fine in editing mode on the slide... but when I preview or publish (even locally), it stops playing prematurely and jumps to the next slide.
    No content management system is involved in my case, and this is local, not online.
    Please help!!!

  • Flash SWF file not playing as HTML snippet!?

    Any Flash gurus out there? I'm trying to get a SWF flash file to play as a HTML snippet but it doesn't seem to be working. I'm using Artotems Flash code within the snippet. The SWF file was encoded using Flash v9.0 and it plays on it's own when I open it the file directly from a web browser. However, when it's referenced from my website through iWeb nothing shows up!? Any ideas? Here's a screenshot of the code I'm using. Maybe you gurus can tell me if my syntax is incorrect?
    http://i40.tinypic.com/2na7iq9.jpg
    Message was edited by: dropscience

    You're not using the full URL to the file.
    You have "/Media/knowledgereignssupreme.flv" in both instances where it should be...
    "http://www.websitename.com/Media/knowledgereignssupreme.flv"
    You can also open it with a simple iFrame code like at the bottom of this page......
    http://www.iwebformusicians.com/MusicPlayers/FlashskinsPlayer.html

  • Flash file not loading first time but loads on refresh

    I have a problem where a flash program is not loading when
    the webpage is first visited, it will get stuck on the loading
    screen. Now for this file to finish loading, it needs to load in
    another file. Once that file is done loading then the program will
    continue. But like I said the first time the program gets stuck on
    the loading screen and never continues. If you hit refresh in the
    browser then the program will continue past the loading screen.
    I've checked the code and everything seems fine there. Could
    this be a security issue? The two files are on the same domain. Or
    if anyone has any insight into this problem, it would be
    appreciated.

    "Dusarn" <[email protected]> wrote in
    message news:e3b9i7$qup$[email protected]..
    >I have a problem where a flash program is not loading
    when the webpage is first
    > visited, it will get stuck on the loading screen. Now
    for this file to finish
    > loading, it needs to load in another file. Once that
    file is done loading then
    > the program will continue. But like I said the first
    time the program gets
    > stuck on the loading screen and never continues. If you
    hit refresh in the
    > browser then the program will continue past the loading
    screen.
    >
    > I've checked the code and everything seems fine there.
    Could this be a
    > security issue? The two files are on the same domain. Or
    if anyone has any
    > insight into this problem, it would be appreciated.
    That is almost always caused by a faulty preloader code. Post
    your preloader code or a link to the website so it can be checked.
    tralfaz

  • Flash swf file with web link only opens my safari home page not the link

    I have a flash swf file with a simple web link. when i load the swf file and click the link it opens safari then loads up my homepage. It does not go to the link i clicked. if i choose internet explorer as my browser the swf file works fine.
    I am running 2 G4's 10.2.8 & 10.3.9
    safari 1.0.3 & 1.3.1
    PLEASE HELP

    Type '''about:addons'''<enter> in the address bar to open your Add-ons Manager.
    Hot key; '''<Control>''(Mac:<Command>)''<Shift> A)'''
    In the Add-ons Manager, on the left, select '''Extensions.'''
    Disable a few add-ons, then '''Restart Firefox.'''
    Some added toolbar and anti-virus add-ons are known to cause
    Firefox issues. '''Disable All of them.'''
    If the problem continues, disable some more (restarting FF). Continue until
    the problem is gone. After, you know what group is causing the issue.
    Re-enable the last group '''ONE AT A TIME''' (restarting FF) until the problem returns.
    Once you think you found the problem, disable that and re-enable all the
    others, then restart again. Let us know who the suspect is detective

  • Problems loading Adobe Flash SWF file

    Our users are experienceing problems loading Adobe Flash SWF
    files.
    One example of a problem file is:
    http://www.adobe.com/enterprise/accessibility/popup_acr8_accessibility.html
    User traffic is flowing through a Cisco ASA firewall - these
    problems do not seem to occur from home networks or a Netscreen
    firewall. The Cisco ASA does NOT have http deep packet inspection
    turned on, and any traffic initiated by clients inside the firewall
    should be allowed. The symptom is that Internet Explorer will begin
    to download the video, but will hang at some point along the way
    (for this particular URL it hangs at about 7%). No error messages
    are displayed, but the video never displays on the screen either. I
    would appreciate hearing from anyone who may have run into this
    before, or if someone can explain what is different about this type
    of file from regular Adobe Flash, that might help figure out what
    the ASA is objecting to. The ASA does not appear to generate any
    log messages about denying this type of traffic either.
    Thanks in advance for any help you can provide...

    Thanks, but I use publish/export settings with GPU hardware acceleration and flash version 11.2 (and 11.8) but nothing happening.
    And why gif file is not all transparenty then I insert on lightblue background? It can't export good quality? Also I use Photoshop, After Effects, Adobe Edge Animate. And nothing happening. Egde animate file .oam is not good for old website navigation. It can't be inserted in freeshop site from navigation... I use logo file .oam just for example here - http://e-shoptagras.graphicsrim.eu
    In reality I want swf file, but we don't find why logo flickering? here http://tagraseshop.graphicsrim.eu
    All file's are transparenty - https://mega.co.nz/#!f8B2CD5R!J8uCJt9Sdq4Suz4HLhTHz8bzJcSWXMBIKcKZgkD3z8c
    I need help! Please!

  • Dreamweaver embedded flash content will not load in IE7

    My company standard is IE7
    I'm charged with developing flv that will auto play on PC from a removable thumb drive.
    in addition it should be able to launch a url.
    I'm using CS4 Flash and Dreamweaver
    developing on a Mac.
    I've used action script 3 to program buttons that start, stop and launch url
    I've worked everything out on a Mac.it works fine in Mac environment.
    I've gotten swf files to autoplay on PC
    the PROBLEM?
    when I try load the html web page on the PC with IE7 the flash content (either a swf or flv embedded using Dreamweaver) does not load.
    IF I leave the IE specific html in the code IE7 returns a message that flash player needs to update. - IT has installed the latest version of flash player.
    if I extract the sniffer/alternative code the flash content does not load there is no message
    If the swf file auto loads and plays then Why is that a problem?
    action script -  to launch url execution launches as a security warning and the trusted settings window
    not very seamless eh?
    so the alternative is to play the flash content embedded in html and create launch url button in html . . . but ofcourse flash content won't load in IE7.
    I've not been able to test the code on any other version of IE
    I hope this is enough information to help if not let me know what you need to know . . .
    thanks in advance for any time you all spend on this.
    M

    So right now you have a SWF file that plays and FLV file and it's not loading in IE7.  Is the testing server that you are using NOT on your local machine?  The reason I ask this is because IE will typically block content if it is hosted on the local machine and treat it as a security risk, prompting the message you refer to.
    Also would it be possible for us to see the code you are using for the plugin?  Most users here will be able to help troubleshoot any issues with the HTML code if we can see it, however, there is a possibility that the fix may be in Flash, in which case you should cross-post this in the Flash forum as well for assistance just in case.

  • Flash content will not load in IE7

    My company standard is IE7
    I'm charged with developing flv that will auto play on PC from a removable thumb drive.
    in addition it should be able to launch a url.
    I'm using CS4 Flash and Dreamweaver
    developing on a Mac.
    I've used action script 3 to program buttons that start, stop and launch url
    I've worked everything out on a Mac.it works fine in Mac environment.
    I've gotten swf files to autoplay on PC
    the PROBLEM?
    when I try load the html web page on the PC with IE7 the flash content (either a swf or flv embedded using Dreamweaver) does not load.
    IF I leave the IE specific html in the code IE7 returns a message that flash player needs to update. - IT has installed the latest version of flash player.
    if I extract the sniffer/alternative code the flash content does not load there is no message
    If the swf file auto loads and plays then Why is that a problem?
    action script -  to launch url execution launches as a security warning and the trusted settings window
    not very seamless eh?
    so the alternative is to play the flash content embedded in html and create launch url button in html . . . but ofcourse flash content won't load in IE7.
    I've not been able to test the code on any other version of IE
    I hope this is enough information to help if not let me know what you need to know . . .
    thanks in advance for any time you all spend on this.
    M
    To the moderator I apologize for an earlier "test" post I was unaware nay ignorant of a test forum . . .

    I am having the very same problem and have done exactly the same... generated my html through flash professional CS5.  It works great in IE8 but is just a blank page in IE7.  You did not post the solution, did you find one? 
    My flash generated code is here http://www.asessippi.com/test/calendar.html will all of the supporting files in the same folder, and nothing else in there. 
    Any suggestions?

Maybe you are looking for