Why isn't my .swf file showing on the web?

It's embedded in Dreamweaver, I can see it in Dreamweaver..
but it doesn't show on the web? I'm using the latest version of
I.E.
It is embedded in the column between the two Youtube vidoes:
http://www.webrevamps.com/assignment8/index.html
Edit: I should of noted that if you pull up the file
directly, it will show:
http://www.webrevamps.com/assignment8/images/animals.swf

Motleyscrew wrote:
> It's embedded in Dreamweaver, I can see it in
Dreamweaver.. but it doesn't show
> on the web? I'm using the latest version of I.E.
>
> It is embedded in between the two Youtube vidoes:
>
http://www.webrevamps.com/assignment8/index.html
>
Your codebase refers to Director player version 10, not flash
player:
http://download.macromedia.com/pub/shockwave/cabs/director/sw.cab#version=10,1,1,0
It should read:
'codebase', '
http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
Best Regards
Urami
"Never play Leap-Frog with a Unicorn."
<urami>
If you want to mail me - DO NOT LAUGH AT MY ADDRESS
</urami>

Similar Messages

  • Why isn't my status bar showing for the home sharing? Neither the settings or 'show items not in my library' button are not coming up.

    I just want to share music with other computers but the status bar is not popping up. The other libraries are but I can't do anything with their media and vice versa.

    Hello there, aslasi.
    The following Knowledge Base article offers up some great steps for troubleshooting your issue:
    Troubleshooting Home Sharing
    http://support.apple.com/kb/ts2972
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Why doesnt my swf file play on the server?

    why doesnt my swf file play on the server? but it plays on my computer.
    what do i need to do to make it work?

    It easier to see why the file might not be playing on the server if you provide a link to the file on the server.  That allows for checking if files are where they should be.
    In your case you may want to do some repairs on the html file that you linked.  It appears as though the tags are out of whack and possibly the embedding is as well.  What you should do is let Flash generate the html page when you publish the swf.  You are normally going to get the best results letting Flash create the embedding code.

  • Why isn't my iTunes Library showing up on my iMac?

    I updated my iTunes version and now my iTunes library is not showing up on my iMac even when i plug in a device, etc.

    Why isn't my iTunes library showing up on the cloud?
    How are you trying to access your Music in the cloud?
    Have you signed up for iTunes match and let it upload your library? Are you signed in, when you are trying to download from the cloud?
    See this help document for common troubles with iTunes Match:  http://support.apple.com/kb/TS4054

  • Why isn't my phone not showing up in itunes?

    Why isn't my phone not showing up in itunes?

    Funny, I had the same problem today for the first time.  I had to connect it with the sync cable for it to show.  Normally, it's always there waiting for a wireless sync.  Strange!

  • HT201272 why isn't my contact app showing ?

    Why isn't my contact app showing?

    I'm having the same problem as well - on both the iPhone4 and iPad.  I can see my subscriptions if I sign in via Safari on either of the devices, but if I try to use the built in YouTube app, it says I have no subscriptions.  This started sometime on the 11th for me. I remember watching videos that morning through the app, but they were gone when I tried that afternoon.

  • URL, email links in Flash swf files shows up in search engine

    Hi, can you please help? I post this problem a while ago.
    My problem is: I developed a website in Flash 8 on the Mac.
    The Flash swf file is displayed via Dreamweaver doc. When I do a
    search and, when the site is found in Google, all the links used in
    the Flash swf file appears in the snippets below the main title. I
    would like to know where I'm going wrong, and how can I prevent
    Google from displaying the URL and email details.
    Do I need to use a preloaded, or do I need to put the Flash
    swf movie file in a table in Dreamwever.
    Many thanks,
    Blue_Mac

    >I don't know how this is happening then. Search engine
    spiders don't
    >read through compiled files like Flash.
    Thanks, this is reassuring. Although it seems to have done
    just that.
    The following action script is where the details are coming
    from. I've used the name 'whatever" as an example. I don't mind the
    URLs on view as much as I mind my email address because of security
    issues.
    on (release) {
    //Goto Webpage Behavior
    getURL("mailto:[email protected]","_blank");
    //End Behavior
    I'll check my files again to see if I've miss anything out -
    I have done this so many times already.
    Regards,
    Blue_Mac

  • Remove / unload external swf file(s) from the main flash file and load a new swf file and garbage collection from memory.

    I can't seem to remove / unload the external swf files e.g when the carousel.swf (portfolio) is displayed and I press the about button the about content is overlapping the carousel (portfolio) . How can I remove / unload an external swf file from the main flash file and load a new swf file, while at the same time removing garbage collection from memory?
    This is the error message(s) I am receiving: "TypeError: Error #2007: Parameter child must be non-null.
    at flash.display::DisplayObjectContainer/removeChild()
    at index_fla::MainTimeline/Down3()"
    import nl.demonsters.debugger.MonsterDebugger;
    var d:MonsterDebugger=new MonsterDebugger(this);
    stage.scaleMode=StageScaleMode.NO_SCALE;
    stage.align=StageAlign.TOP_LEFT;
    stage.addEventListener(Event.RESIZE, resizeHandler);
    // loader is the loader for portfolio page swf
    var loader:Loader;
    var loader2:Loader;
    var loader3:Loader;
    var loader1:Loader;
    //  resize content
    function resizeHandler(event:Event):void {
        // resizes portfolio page to center
    loader.x = (stage.stageWidth - loader.width) * .5;
    loader.y = (stage.stageHeight - loader.height) * .5;
    // resizes about page to center
    loader3.x = (stage.stageWidth - 482) * .5 - 260;
    loader3.y = (stage.stageHeight - 492) * .5 - 140;
    /*loader2.x = (stage.stageWidth - 658.65) * .5;
    loader2.y = (stage.stageHeight - 551.45) * .5;*/
    addEventListener(Event.ENTER_FRAME, onEnterFrame,false, 0, true);
    function onEnterFrame(ev:Event):void {
    var requesterb:URLRequest=new URLRequest("carouselLoader.swf");
    loader = null;
    loader = new Loader();
    loader.name ="carousel1"
    //adds gallery.swf to stage at begining of movie
    loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioError);
    function ioError(event:IOErrorEvent):void {
    trace(event);
    try {
    loader.load(requesterb);
    } catch (error:SecurityError) {
    trace(error);
    addChild(loader);
    loader.x = (stage.stageWidth - 739) * .5;
    loader.y = (stage.stageHeight - 500) * .5;
    // stop gallery.swf from duplication over and over again on enter frame
    removeEventListener(Event.ENTER_FRAME, onEnterFrame);
    //PORTFOLIO BUTTON
    //adds eventlistner so that gallery.swf can be loaded
    MovieClip(root).nav.portfolio.addEventListener(MouseEvent.MOUSE_DOWN, Down, false, 0, true);
    function Down(event:MouseEvent):void {
    // re adds listener for contact.swf and about.swf
    MovieClip(root).nav.info.addEventListener(MouseEvent.MOUSE_DOWN, Down1, false, 0, true);
    MovieClip(root).nav.about.addEventListener(MouseEvent.MOUSE_DOWN, Down3, false, 0, true);
    //unloads gallery.swf from enter frame if users presses portfolio button in nav
    var requester:URLRequest=new URLRequest("carouselLoader.swf");
        loader = null;
    loader = new Loader();
    loader.name ="carousel"
    loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioError);
    function ioError(event:IOErrorEvent):void {
    trace(event);
    try {
    loader.load(requester);
    } catch (error:SecurityError) {
    trace(error);
    addChild(loader);
    loader.x = (stage.stageWidth - 739) * .5;
    loader.y = (stage.stageHeight - 500) * .5;
    removeChild( getChildByName("about") );
    removeChild( getChildByName("carousel1") );
    // remove eventlistner and prevents duplication of gallery.swf
    MovieClip(root).nav.portfolio.removeEventListener(MouseEvent.MOUSE_DOWN, Down);
    //INFORMATION BUTTON
    //adds eventlistner so that info.swf can be loaded
    MovieClip(root).nav.info.addEventListener(MouseEvent.MOUSE_DOWN, Down1, false, 0, true);
    function Down1(event:MouseEvent):void {
    //this re-adds the EventListener for portfolio so that end user can view again if they wish.
    MovieClip(root).nav.portfolio.addEventListener(MouseEvent.MOUSE_DOWN, Down, false, 0, true);
    MovieClip(root).nav.about.addEventListener(MouseEvent.MOUSE_DOWN, Down3, false, 0, true);
    var requester:URLRequest=new URLRequest("contactLoader.swf");
    loader2 = null;
    loader2 = new Loader();
    loader2.name ="contact"
    loader2.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioError);
    function ioError(event:IOErrorEvent):void {
    trace(event);
    try {
    loader2.load(requester);
    } catch (error:SecurityError) {
    trace(error);
    addChild(loader2);
    loader2.x = (stage.stageWidth - 658.65) * .5;
    loader2.y = (stage.stageHeight - 551.45) * .5;
    // remove eventlistner and prevents duplication of info.swf
    MovieClip(root).nav.info.removeEventListener(MouseEvent.MOUSE_DOWN, Down1);
    //ABOUT BUTTON
    //adds eventlistner so that info.swf can be loaded
    MovieClip(root).nav.about.addEventListener(MouseEvent.MOUSE_DOWN, Down3, false, 0, true);
    function Down3(event:MouseEvent):void {
    //this re-adds the EventListener for portfolio so that end user can view again if they wish.
    MovieClip(root).nav.portfolio.addEventListener(MouseEvent.MOUSE_DOWN, Down, false, 0, true);
    MovieClip(root).nav.info.addEventListener(MouseEvent.MOUSE_DOWN, Down1, false, 0, true);
    var requester:URLRequest=new URLRequest("aboutLoader.swf");
    loader3 = null;
    loader3 = new Loader();
    loader3.name ="about"
    loader3.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioError);
    function ioError(event:IOErrorEvent):void {
    trace(event);
    try {
    loader3.load(requester);
    } catch (error:SecurityError) {
    trace(error);
    addChild(loader3);
    loader3.x = (stage.stageWidth - 482) * .5 - 260;
    loader3.y = (stage.stageHeight - 492) * .5 - 140;
    removeChild( getChildByName("carousel") );
    removeChild( getChildByName("carousel1") );
    // remove eventlistner and prevents duplication of info.swf
    MovieClip(root).nav.about.removeEventListener(MouseEvent.MOUSE_DOWN, Down3);
    stop();

    Andrei1,
    Thank you for the helpful advice. I made the changes as you suggested but I am receiving a #1009 error message even though my site is working the way I wan it to work. I would still like to fix the errors so that my site runs and error free. This is the error I am receiving:
    "TypeError: Error #1009: Cannot access a property or method of a null object reference."
    I'm sure this is not the best method to unload loaders and I am guessing this is why I am receiving the following error message.
         loader.unload();
         loader2.unload();
         loader3.unload();
    I also tried creating a function to unload the loader but received the same error message and my portfolio swf was not showing at all.
         function killLoad():void{
         try { loader.close(); loader2.close; loader3.close;} catch (e:*) {}
         loader.unload(); loader2.unload(); loader3.unload();
    I have a question regarding suggestion you made to set Mouse Event to "null". What does this do setting the MouseEvent do exactly?  Also, since I've set the MouseEvent to null do I also have to set the loader to null? e.g.
    ---- Here is my updated code ----
    // variable for external loaders
    var loader:Loader;
    var loader1:Loader;
    var loader2:Loader;
    var loader3:Loader;
    // makes borders resize with browser size
    function resizeHandler(event:Event):void {
    // resizes portfolio page to center
         loader.x = (stage.stageWidth - loader.width) * .5;
         loader.y = (stage.stageHeight - loader.height) * .5;
    // resizes about page to center
         loader3.x = (stage.stageWidth - 482) * .5 - 260;
         loader3.y = (stage.stageHeight - 492) * .5 - 140;
    //adds gallery.swf to stage at begining of moviie
         Down();
    //PORTFOLIO BUTTON
    //adds eventlistner so that gallery.swf can be loaded
         MovieClip(root).nav.portfolio.addEventListener(MouseEvent.MOUSE_DOWN, Down, false, 0, true);
    function Down(event:MouseEvent = null):void {
    // re adds listener for contact.swf and about.swf
         MovieClip(root).nav.info.addEventListener(MouseEvent.MOUSE_DOWN, Down1, false, 0, true);
         MovieClip(root).nav.about.addEventListener(MouseEvent.MOUSE_DOWN, Down3, false, 0, true);
    //unloads gallery.swf from enter frame if users presses portfolio button in nav
         var requester:URLRequest=new URLRequest("carouselLoader.swf");
         loader = new Loader();
         loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioError);
         function ioError(event:IOErrorEvent):void {
         trace(event);
         try {
         loader.load(requester);
         } catch (error:SecurityError) {
         trace(error);
         this.addChild(loader);
         loader.x = (stage.stageWidth - 739) * .5;
         loader.y = (stage.stageHeight - 500) * .5;
    // sure this is not the best way to do this - but it is unload external swfs
         loader.unload();
         loader2.unload();
         loader3.unload();
    // remove eventlistner and prevents duplication of gallery.swf
         MovieClip(root).nav.portfolio.removeEventListener(MouseEvent.MOUSE_DOWN, Down);
    //INFORMATION BUTTON
         //adds eventlistner so that info.swf can be loaded
         MovieClip(root).nav.info.addEventListener(MouseEvent.MOUSE_DOWN, Down1, false, 0, true);
         function Down1(event:MouseEvent = null):void {
         //this re-adds the EventListener for portfolio so that end user can view again if they wish.
         MovieClip(root).nav.portfolio.addEventListener(MouseEvent.MOUSE_DOWN, Down, false, 0, true);
         MovieClip(root).nav.about.addEventListener(MouseEvent.MOUSE_DOWN, Down3, false, 0, true);
         var requester:URLRequest=new URLRequest("contactLoader.swf");
         loader2 = null;
         loader2 = new Loader();
         loader2.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioError);    
         function ioError(event:IOErrorEvent):void {
         trace(event);
         try {
         loader2.load(requester);
    }      catch (error:SecurityError) {
         trace(error);
         addChild(loader2);
         loader2.x = (stage.stageWidth - 658.65) * .5;
         loader2.y = (stage.stageHeight - 551.45) * .5;
    loader.unload();
    loader2.unload();
    loader3.unload();
         // remove eventlistner and prevents duplication of info.swf
         MovieClip(root).nav.info.removeEventListener(MouseEvent.MOUSE_DOWN, Down1);
    //ABOUT BUTTON
         //adds eventlistner so that info.swf can be loaded
         MovieClip(root).nav.about.addEventListener(MouseEvent.MOUSE_DOWN, Down3, false, 0, true);
         function Down3(event:MouseEvent = null):void {
         //this re-adds the EventListener for portfolio so that end user can view again if they wish.
         MovieClip(root).nav.portfolio.addEventListener(MouseEvent.MOUSE_DOWN, Down, false, 0, true);
         MovieClip(root).nav.info.addEventListener(MouseEvent.MOUSE_DOWN, Down1, false, 0, true);
         var requester:URLRequest=new URLRequest("aboutLoader.swf");
         loader3 = null;
         loader3 = new Loader();
         loader3.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioError);
         function ioError(event:IOErrorEvent):void {
         trace(event);
         try {
         loader3.load(requester);
    }      catch (error:SecurityError) {
         trace(error);
         addChild(loader3);
         loader3.x = (stage.stageWidth - 482) * .5 - 260;
         loader3.y = (stage.stageHeight - 492) * .5 - 140;
         loader.unload();
         loader2.unload();
         loader3.unload();
         // remove eventlistner and prevents duplication of info.swf
         MovieClip(root).nav.about.removeEventListener(MouseEvent.MOUSE_DOWN, Down3);
         stop();

  • Is there anything I can do in dreamweaver so my swf file always fills the whole browser screen?

    Hi
    I am deploying my flash swf in dreamweaver, however i have a
    problem my image is not fillng the whole of my browser screen
    idealy 1000 x 600 and I am getting horible white borders around my
    artwork.
    I have
    A used the properties settings in flash and sett my both my
    stages to 1000 x 600 including my preloader
    which the main swf loads into
    B used the publish settings to match my document setting in
    percent so they align in the middle of the page
    Is there anything I can do in dreamweaver so my swf file
    always fills the whole browser screen?
    thanks
    matt

    > I am deploying my flash swf in dreamweaver, however i
    have a problem my
    > image
    > is not fillng the whole of my browser screen idealy 1000
    x 600 and I am
    > getting
    > horible white borders around my artwork.
    A flash file is proportional, and a web browser viewport
    isn't necessarily
    proportional.
    So, unless you are forcing a persons web browser to a set
    size (and I'd
    STRONGLY not recommend doing that...ESPECIALLY at the size
    you want) then
    you'll need to confine your actual SWF file to a specific
    size on the page
    itself.
    > A used the properties settings in flash and sett my both
    my stages to 1000
    > x
    > 600 including my preloader
    > which the main swf loads into
    The stage in Flash is not what tells the web browser what
    size to set the
    SWF on the HTML page itself. That's done in the HTML when you
    'publish/export' your SWF file from flash using the HTML tab.
    > Is there anything I can do in dreamweaver so my swf file
    always fills the
    > whole browser screen?
    Well, you set the width and height to 100%, but that will
    distort your SWF
    file if people change the aspect ration of their browser from
    that of the
    SWF file.
    -Darrel

  • Why can't I change file ownership in the Finder when logged in as root?

    Why can't I change file ownership in the Finder when logged in as root?
    I can change it in the Finder if logged in as admin or via the terminal as root.
    Xserve   Other OS  

    N8 Thomas wrote:
    I then went into my finder preference section and changed my "New finder window show" to my computer's name.  At that point I could view and find anything within it.  this part got the job done. 
    "You don't, they only appear in open file dialogs and in tool panels like in iMovie, iPhoto.
    To view your media, you open the app that you use to manage that type of media." this on the other hand was zero help
    What you did doesn't show the Media Browser. It just shows the folders where your media is stored. You may be correct that was all that cobacc wanted. 
    The Media Browser shows the actual media in thumbnails so that you can preview the media.
    However, neither requires any Sharing services to be enabled.

  • Getting the swf file name of the module

    i have a parent application and it loads a module xyz.swf.
    however, i don't know the name of the module the parent application is loading.
    is there a way i can get the module's swf file name in the module code without knowing it beforehand?
    thanks

    Hi All,
    Iam able to do this by checking the Option ASMA in only sender adapter itself
    Regards
    Bopanna

  • Why my old emails are not showing on the blackberry

    Hi Guys,
    I have just bought Blackberry Curve 9360. Can somebody, please tell that why my old emails are not showing on the blackberry. May be it has not synchronized my whole mailbox.
    Kindly advise how can I do that.
    Regards... Murtaza

    Old emails, in what manner? As in previous to installing the account on this device?
    Did you use the Device Switch Wizard found in the BlackBerry Desktop Software?
    How did you move your old emails over from the old device to the new?
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Why isn't my screen turning sideways on the iPhone 4s.

    Why isn't my screen rotating horizontally? The portrait lock is not on and I have even turned it off and on. It still doesn't work. I have also turned my phone off and tried it. I know that the app supports it because it has since I have bought it. The apps that I have tried so far are gmail and apple's messaging, the one that comes with the phone.

    Thank you At first it didn't rotate but when I clicked off of it and clicked back on it worked. It just needed so time. Thank you again

  • Why is my texing keyboard not showing on the screen? I have the latest version sw of 6.0 on a 4S

    Why is my texing keyboard not showing on the screen? I have the latest version sw of 6.0 on a 4S

    Double tap Home button, delete Messages from the multitask-bar.
    Do a reset (Hold Sleep/Wake and Home buttons about 10 secs or more till Apple logo appears, ignore the Slide to Power Off that appears)
    Note: You will not lose any data.

  • Why are my Whatsapp photos not showing in the Camera Roll? I have checked all the settings and everything seems ok.

    Why are my Whatsapp photos not showing in the Camera Roll? I have checked all the settings and everything seems ok.

    Have you enabled "Save incoming Media"
    in your whastapp\Setting\Chat setting\Save Incoming Media?

Maybe you are looking for