Unload swf problem with unloadMovie()

hi,
i have an application in which there are users and their avatars. they can change their avatars. i load avatars in a movieClip using loadMovie and unload with unloadMovie. If the current avatar is an image file, it can be unloaded and loaded new image. However, if the current avatar is swf file, it cannot be unloaded. i tried this process in a empty fla, loaded and unloaded a swf after another one and it works, but it doesnt in my application.
How can it be solved? any suggestions...?
thanks...

publish an html and swf and open the html in a web browser.  any problem?

Similar Messages

  • SWF Problems with CS5.5

    I am trying new Flash CS5.5.  Has some new features that I need but having lots of trouble with posting the SWF.  I created a scrolling text "panel" to insert into an HTML document.  I admit I've never built that particular object HOWEVER, when I previewed it via Control > Test Movie, it worked great.
    Then I exported the file via File > Export > Export Movie, double clicked it on the desktop ... also worked great.  HOWEVER, when I emailed this file to a friend, the systems (both windows and Mac OS) asked user to select program the created the file.  It would not open without Flash in the background.
    I've used Flash CS4 and have never had a problem like this.  BUT, that's not the end of it.  When I went ahead and inserted the file into the HTML doc in Dreamweaver, then hit File > Preview in Browser > Safari (or Firefox), the following message popped up:
    "Adobe Flash Player has stopped a potentially unsafe operation. 
    The following local application on your computer or network:
    /Users/john/Desktop/jimednorman/Scripts/expressinstall.swf
    is trying to communicate with this Internet-enabled location:
    fpdownload.macromedia.com
    To let this application communicate with the Internet, click Settings.
    You must restart this application after changing your settings"
    The problems are two:
    1. I have no idea what to do in "settings".  It is not clear at all as to what I'm supposed to change.
    2. This still does not solve the problem with the swf file NOT playing unless Flash is running in the background.
    Hey, I'm on my knees!  Please help.  I've never seen this and especially never had an issue with swf not playing on its own ... given that the "test movie" ran great.
    What did I do wrong OR what have I left undone?  Or do I need a spiritual advisor? (Don't answer that

    Hello:  I, too, am new to both the forum and Flash CS5, and am having a similar problem trying to get a Flash .swf file to play on my website.  I've done all the things suggested here.  I have tried "publishing" the fla , but, as dunb as this may sound, once the file has been published, I have no idea where it went.  I can't find it anywhere on my system, and it's not in the site directory in Dreamweaver CS5.  When I test the movie and the scene, it plays perfectly.  When I double click the file, it plays perfectly.  When I export the file to the Dreamweaver page (insert>media>SWF) the gray box appears on the page and when I save the page, all the files get uploaded.  A "Script" directory is created under the root, with 2 files, and the .SWF file is in the root directory as well.  The settings in Dreamweaver are all standard and there is nothing large or weird about the SWF itself.  Essentially, it's a rotating graphic.  Very basic.  But when I open the web page, nothing appears. (Using Firefox).  Even when I switch to IE, the page opens, but the SWF does not play.  I've Googled every web site forum that addresses this issue and I can find nothing to make this work.  When I "publish", I understand an .HTML file is created that should be put into the root of the server, but I have no idea what that file is or where it goes once it's created.  A search for .html files on my system finds nothing more than the files I have created myself.
    When I open my web site, instead of just displaying the title "Home Page", it says Home Page - Flash Player Installation - Index.html.
    I just upgraded to Adobe Flash, Photoshop, Dreamweaver CS5 after years with Dreamweaver MX and Photoshop CS2.  I've never had Flash Pro at all.
    Can someone please tell me what I'm missing or doing wrong?  My hair, fingernails, keyboard, ulcer, high blood pressure and dog all thank you.

  • Transition_Manager and unloading external swf problems

    Hi there
    I´m having a few problems with my project which i although it work it has some unpleasant bugs that i´m trying to solve for days.
    When i load external swf´s they show up on top of the Menu button.Maybe because the button i´m pressing is inside the same movieclip as the Menu.
    Explaining better here´s a little diagram of my site:
    con2 MC (Instance of Menu) ---> cont3 MC (Instance of subMenu) and mainButton MC (Instance of Main)
    Here´s the general code which is inside the Painel.as
    package {
        import com.greensock.TweenLite;
        import com.greensock.TweenMax;
        import com.greensock.*;
        import com.greensock.easing.*;
        import flash.display.*;
        import flash.events.*;
        import flash.display.MovieClip;
        import fl.transitions.*;
        import fl.transitions.easing.*;
        import flash.net.URLRequest;
        import flash.display.Loader;
        import flash.events.Event;
        import flash.events.ProgressEvent;
        public class Painel3 extends MovieClip
            private var inFocus:MovieClip;
            public function Painel3():void
                setupClips();
                addEventListener(Event.ENTER_FRAME, loop);
            private function setupClips():void
            con2.mainButton.addEventListener(MouseEvent.ROLL_OVER, onOver);
            con2.mainButton.addEventListener(MouseEvent.ROLL_OUT, onOut);
            con2.mainButton.addEventListener(MouseEvent.CLICK, onClick);
                var len:int = con2.cont3.numChildren;
                for(var i:int=0; i<len; i++)
                    var mc:MovieClip = MovieClip(con2.cont3.getChildAt(i));
                    mc.buttonMode = true;
                    mc.loc = [mc.x, mc.y];
                    mc.addEventListener(MouseEvent.CLICK, onClick);
                    con2.cont3.visible = false;
            private function onOver(e:MouseEvent):void
            private function onOut(e:MouseEvent):void
            private function onClick(e:MouseEvent):void
                con2.cont3.visible = true;
    TransitionManager.start(con2.cont3, {type:Wipe, direction:Transition.IN, duration:1, easing:None.easeNone, startPoint:5} );                       
            private function loop(e:Event):void
                var distx:Number = mouseX / 1400;
                var disty:Number = mouseY / 1400;
                TweenLite.to(con2, 2, {
                            rotationY:(-70 +(145*distx)),
                            rotationX:(70 -(145*disty)),
                            ease:Expo.easeOut
    And then inside the subMenu.as class for the movieclip subMenu i have the buttons that load the external swf´s:
    package  {
        import com.greensock.TweenLite;
        import com.greensock.TweenMax;
        import com.greensock.*;
        import com.greensock.easing.*;
        import flash.display.*;
        import flash.events.*;
        import flash.display.MovieClip;
        import flash.net.URLRequest;
        import flash.display.Loader;
        import flash.events.Event;
        import flash.events.ProgressEvent;
        import fl.transitions.*;
        import fl.transitions.easing.*;
        public class subMenu extends MovieClip {
            public function subMenu() {
                // constructor code
                menu1.buttonMode = true;
                menu2.buttonMode = true;
                menu3.buttonMode = true;
                menu4.buttonMode = true;
                 menu1.addEventListener(MouseEvent.CLICK,link1);
                 menu2.addEventListener(MouseEvent.CLICK,link2);
                 menu3.addEventListener(MouseEvent.CLICK,link3);
                 menu4.addEventListener(MouseEvent.CLICK,link4);
            function link1(e:MouseEvent) {
               function startLoad()
                var mLoader:Loader = new Loader();
                var mRequest:URLRequest = new URLRequest("AugmentedReality_v1.swf");
                mLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onCompleteHandler);
                mLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, onProgressHandler);
                mLoader.load(mRequest);
    function onCompleteHandler(e:Event):void {
    var swf:DisplayObject = e.target.content;
    swf.x = -400;    
    swf.y = -300;    
    addChild(swf);
    function onProgressHandler(mProgress:ProgressEvent)
           var percent:Number = mProgress.bytesLoaded/mProgress.bytesTotal;
           trace(percent);
    startLoad();
            function link2(e:MouseEvent) {
                function startLoad()
                var mLoader:Loader = new Loader();
                var mRequest:URLRequest = new URLRequest("Fotos.swf");
                mLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onCompleteHandler);
                mLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, onProgressHandler);
                mLoader.load(mRequest);
    function onCompleteHandler(e:Event):void {
    var swf:DisplayObject = e.target.content;
    swf.x = -400;    
    swf.y = -300;    
    addChild(swf);
    function onProgressHandler(mProgress:ProgressEvent)
           var percent:Number = mProgress.bytesLoaded/mProgress.bytesTotal;
           trace(percent);
    startLoad();
            function link3(e:MouseEvent) {
            function link4(e:MouseEvent){
                function startLoad()
                var mLoader:Loader = new Loader();
                var mRequest:URLRequest = new URLRequest("Texto.swf");
                mLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onCompleteHandler);
                mLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, onProgressHandler);
                mLoader.load(mRequest);
    function onCompleteHandler(e:Event):void {
    var swf:DisplayObject = e.target.content;
    swf.x = -400;    
    swf.y = -300;    
    addChild(swf);
    function onProgressHandler(mProgress:ProgressEvent)
           var percent:Number = mProgress.bytesLoaded/mProgress.bytesTotal;
           trace(percent);
    startLoad();
    Like i said the swf´s show up on top of the Menu and i need it to dissapear.
    Also i want to unload the swf currently in scene so that when i load another one they don´t pile on top of each other.
    Pls help. Thanks

    Oh btw, i´m having an error 1069 Property TransitionManager not found in subMenu and there is no default value
    at fl.transitions::TransitionManager$/start()
        at Painel3/onClick()
    This doesn´t happen when i uncheck the Export for actionscript in the subMenu class but i can´t do that or else the buttons wont work.

  • Problem with unstable and slow SWFs

    Good evening,
    Some of my users are reporting problems with the SWF output of my intensive Captive file which includes significant software simulation. I knew that these files were going to be resource intensive due to the nature of the project, but I felt comfortable with system requirements of at least 2 gb RAM and a mid-range processor.
    Unfortunately, some of my users who meet this criteria are reporting problems including text animations not playing in full and slow slide transitions. I cannot replicate this problem on any of my machines.
    I have been playing around trying to compress images as much as possible and otherwise reduce file size. What else can be done? What are the top five things I can do to remedy this problem?
    My presentation is about 50 slides and the SWF output is about 4.5 mb.
    Thanks

    I've seen this type of thing many times, especially in corporate environments.
    My top suggestions:
    If you've taken all reasonable steps to make your project as web-friendly as possible by this time, don't make any more changes to your project until you've exhausted the possibilities below.  It is most likely NOT your project that is at fault.
    Find out more details from the users that are complaining.  If at all possible, actually go and sit with them to watch the behaviour they're talking about.  Don't believe everything you hear.
    Check that users are on the correct version of Flash Player. For example, Flash Player 10 can play significantly better than Flash 9.
    Ask the user to check defragmentation on their PC.  Most users DON'T know how to do this and never defragment. As a result, I have seen PCs in corporate IT environments that had not been defragmented in years.  Their hard drive showed up mostly red when the fragmentation analysis was done.  This lack of PC housekeeping can contribute to many issues, especially with Flash or multimedia playback.  Ask the user to defragment 2 or 3 times to be on the safe side.
    Watch the CPU on Task Manager while the PC is playing the Captivate presentation.  The performance monitor should tell you if the CPU is struggling and unable to decode the content fast enough.
    Try to have another user log onto the same machine using a different profile and see if they experience the same issues.  This can tell you whether the issue is due to a corrupted user profile.  Conversely, have the same user log onto a different machine, creating a new profile for themselves on that PC to see if they experience the same issue.  If it seems to be their profile at fault, they may need to get some IT dude to blow away their profile and set it up afresh.
    Check whether or not the issue could be due to server latency.  This is especially the case where LMSs are involved.  Users will often experience latency issues such as slow transitions from one quiz slide to the next because the course module has to wait for the LMS to respond before it can move forward.  If this is occurring for a significant number of users, you can try using the optional SCORM template that only sends tracking data at the end of the module instead of all the way through.
    In my experience, if 95% of your user base is playing the content without issue, you don't need to change anything.  Chances are that whatever is going wrong for the few that are complaining about poor playback wouldn't necessarily improve no matter what you did to your project.  In the vast majority of cases, you need to isolate what exactly is causing the issue for these users and correct it ON THEIR END.
    Rod Ward
    www.infosemantics.com.au
    UPDATE: I just realised that a lot of this information would probably help others, so I created a blog post documenting these steps: http://www.infosemantics.com.au/debug_slow_playback

  • Problems with Adobe Flash Professional CC (CS6 too) to save animated .gif file or perfect .swf file

    Hello,
    I have a problem with Adobe Flash Professional CC and CS6 to save animated .gif file. Here is very simple work with logo. But I can't save a perfect file swf or gif and it's so bad news for me. Logo .swf file save with bugs. Bugs just see then file insert in freeshop page. Here is just example test page, it let you see logo bugs - http://tagraseshop.graphicsrim.eu . Here is real page, but it's not my, it's freeshop with old logo and I have corect it - http://www.tagras.lt
    Animated .gif file absoluted not saved in Flash CC. Just gif picture. And why? My os Windows 8.1 .  Indeed I try to save on Adobe Flash Professional CS6. It's not save too...
    Gif "animated" - https://mega.co.nz/#!D8pEVaRR!Gjg-nI4T-0vROV9xCa1XfXz4br1X9lpQfUR0nQNT LK4
    Swf with bugs - https://mega.co.nz/#!jo5lSRyS!1x6GjWqYsf7n4KknUs6eF8EqZXEv9e8RsSpGd8h5 jGQ
    Fla - flash document - https://mega.co.nz/#!C94nCDSS!7yKF9FIBvYtVC9r8kYiJ0l0xzUm_R2HwgoXks6iM zUA
    Perfect animation speed is here - http://e-shoptagras.graphicsrim.eu
    Who can help to me?
    Any ideas?
    Thanks for your help in advance!

    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!

  • Calling javascript from swf (which is source file of frame) - problems with OPERA

    hey,
    right now i have the swf-file as the source file for a frame,
    because i want the swf-width depend on the browser-size.
    it looks kinda like this:
    <frameset cols="10,*,10">
    <frame src="border.htm" name="leftFrame">
    <frame src="file.swf" name="mainFrame">
    <frame src="border.htm" name="rightFrame">
    </frameset>
    from the swf i call a javascript-code that is located in the
    'border.htm'
    file.
    the javascript simply opens a popup window.
    function open_popup() {
    MM_openBrWindow('popup.htm','pop','toolbar=no,location=no,status=no,menubar=no,scrollbars =no,resizable=no,width=400,height=500');}everything
    works fine ine firefox, ie, netscape (at least in another tab),but
    when it comes to the opera browser (and apparently also safari)i
    don't get any reaction at all ...i told opera to allow
    popup-windows, so that shouldnt be the reason.now i am thinking
    maybe some browsers have a problem with callingjavascripts from
    within swfs that are not located in that specifichtml-file?maybe
    some of you encountered the same problem ...would be grateful for
    any advices ...thanx,eva

    hey,
    right now i have the swf-file as the source file for a frame,
    because i want the swf-width depend on the browser-size.
    it looks kinda like this:
    <frameset cols="10,*,10">
    <frame src="border.htm" name="leftFrame">
    <frame src="file.swf" name="mainFrame">
    <frame src="border.htm" name="rightFrame">
    </frameset>
    from the swf i call a javascript-code that is located in the
    'border.htm'
    file.
    the javascript simply opens a popup window.
    function open_popup() {
    MM_openBrWindow('popup.htm','pop','toolbar=no,location=no,status=no,menubar=no,scrollbars =no,resizable=no,width=400,height=500');}everything
    works fine ine firefox, ie, netscape (at least in another tab),but
    when it comes to the opera browser (and apparently also safari)i
    don't get any reaction at all ...i told opera to allow
    popup-windows, so that shouldnt be the reason.now i am thinking
    maybe some browsers have a problem with callingjavascripts from
    within swfs that are not located in that specifichtml-file?maybe
    some of you encountered the same problem ...would be grateful for
    any advices ...thanx,eva

  • (Eng/Esp)  Problem with .SWF in DW/Problema con .SWF en DW.

    Hello,
    Sorry for my English, im learning, but im not yet a expert.
    I have  problem  with my Dreamwaver, when I put a .swf (I've done my web with Flash) and press F12 i cant see my SWF. And the error mensager is the follow:
    Could u help me, plz?
    Thnx.
    Andrés
    Buenas tardes,
    Estoy diseñado mi pagina web. La he hecho en Flash, pero a la hora de exportarla a Dreamwaver y al darle al F12 para verla como seria en el FireFox, me sale este mensaje
    Si le doy aceptar, me aprece el fondo de mi web, pero donde esta la parte de flash se queda totalmente en blanco. He probado otros exploradores y me sale el mismo mensaje. He actualizado el flash a la última versión, etc. Alguien me podría ayudar?.
    Muchas gracias,
    Andrés

    On lines 33 and 42, change this:
    <param name="swfversion" value="20.0.0.0" />
    To this:
    <param name="swfversion" value="8.0.35.0" />
    Nancy O.

  • Problems with embedding swfs into Director 11.5

    Hello everyone,
    I am hoping someone can help me and please bear with me - I don't know a lot about director - I can do some Lingo and get around in the program to make things work.
    Right now I am working on an interactive presentation where the user can click a button to view an animation. I am using Director 11.5 for my presentation and have made my animations in After Effects CS3 -- from there I converted my .mov files to .flv files using the Adobe Media Encoder CS4... then I took my .flv file into Flash and published it as a swf file.
    The problem that I am having is that when I play the presentation (within Director and after publishing the .app/projector file) the swf files are playing - but there is all this glitchy-artifact stuff all over them. Does anyone know why this would be happening? When I play the swf files in the flash player they look great. Before, when I was using Flash MX and Director MX, I never had any problems with embedding my swf animation files - and they played great - without any artifact. Any and all help would be much appreciated as this project is due in the next few days and I would prefer to figure out a solution rather than uninstalling Flash CS4 and Director 11.5 - and going back to MX.
    I toyed with the thought that my video card isn't good enough but I tested the .app file on another machine and the glitchy-artifacts were still there. I have attached a jpg showing the artifact that appears.
    I am running Mac OS X 10.5.7
    Dual 2 GHz G5 PowerPC
    ATI Radeon X800 XT
    Thank you!

    Sorry... here is the image again and I think the problem might be my machine -- it is very old (~4+ years) and when I tested my .app on a newer intel mac here it worked fine... but maybe I am missing something -- it seems odd that I can see the swf fine in flash player but it is glitchy when played through director or the .app projector file

  • Problem With Swf File. Please Help!!!!

    Hi! I recently got adobe flash cs4 and i tried to create swf wallpaper (flash lite 1.1), so everything looked good, untill i opened the file. The problem is its constantly blinking, like its refreshing with every second or frame or something. Then i transfered it to my phone and theres no change. I had the same problem with CS3...I attached the sample, if someone cares to see...Please can somebody help me??? Thank you!

    I think (at a first look) that you should put a stop() command at each frame of your movie.
    Playhead is running through your movie from one frame to another and back to beginning if you don't stop it with stop() command.
    What I mean is:
    in frame one of your movie put ActionScript: stop();
    in frame two of your movie put ActionScript: stop();
    etc.
    If navigation through your movie is linear, like some animations then don't put this AS in frames, but it seems to me that this will solve your problem.
    For more (if this isn't helping) upload your movie along with ActionScript.

  • Problem with exporting from CS5 to swf ???

    I have an InDesign CS5 document with 10 pages in 5 spreads. I need to export every single pages to a seperate swf file, with no action at all, but CS5 export each spread to a swf file, and not each page ??? It was not a problem in CS4. Anybody knew what to do ?????

    No my document is like below.
    I have unchecked "facing pages" in the Document Setup and I do remember to choose the "range number" in the export menu,
    but still the swf file shows the whole spread ???
    Message was edited by: Rikke Toftgaard

  • Help with load and unload swf file.

    hello, just now i try, to  load my file using the code snippet 'load and unload' i manage to load the next file succesfully but why my recent file still appear in the background? how do i make it gone?

    When you load another SWF you're loading it 'inside' the current SWF but it appears that you want to replace the current SWF entirely with the new SWF, is that correct?
    If so you should make what's usually known as a 'stub' or a loader. Make an empty project that merely acts as a loader. It should load your first SWF and when you press a button on that first SWF to load a second SWF, it should signal the 'stub' it's loaded inside to unload the first SWF and then load the second.
    e.g. a stub.swf (just coding out of memory, not error checked, just to give a general idea):
    // make a new loader to do all the loading of SWFs
    var loader:Loader = new Loader();
    // and display
    addChild(loader);
    // a function to load a SWF into the loader (replacing any existing SWF)
    function loadSWF(path:String):void
         // assure path is defined or do nothing
         if (!path) return;
         // load requested SWF
         loader.load(new URLRequest(path));    
    // load initial SWF
    loadSWF('/path/to/1.swf');
    For your 1.swf to use the function, you're currently inside the .content property of a Loader so I believe you can just run a command like: Object(this.parent.parent).loadSWF('/path/to/2.swf');
    This example obviously lacks any error checking or transitions but you can add those and season to taste.

  • Problem with swf file on website

    I created a swf file with flash CS4. I can do the publish
    preview and the video plays just fine. I can even view the
    generated html file on my local machine and it works. I upload to
    my website and it does not work. Here is the link
    http://www.streamlineprofits.net/movies/Potential.html
    The player skin is acting like it cant find the swf file but
    it is in the same directory. Also, when i go to the publish
    settings for the html I select the "Paused at start" but the video
    plays when I load the local html file in my browser. Any ideas or
    suggestions would be greatly appreciated.
    Brian

    I don't think it's a permission problem, but somehow the
    Flash Player thinks (I think) the stream is coming from another
    domain. With me a error pops up that goes like this:
    SecurityError: Error #2148: SWF-Datei
    http://www.streamlineprofits.net/movies/Potential.swf
    kann nicht auf lokale Ressource C:\Documents and Settings\Acer
    Valued Customer\My Documents\web
    projects\streamlineprofits.net\movies\Jan09_Open.m4v zugreifen. Nur
    SWF-Dateien in der Sandbox 'local-with-filesystem' sowie
    vertrauenswürdige lokale Dateien dürfen auf lokale
    Ressourcen zugreifen.
    at flash.net::NetStream/play()
    at fl.video::VideoPlayer/
    http://www.adobe.com/2007/flash/flvplayback/internal::_play()
    at fl.video::VideoPlayer/
    http://www.adobe.com/2007/flash/flvplayback/internal::_setUpStream()
    at fl.video::VideoPlayer/
    http://www.adobe.com/2007/flash/flvplayback/internal::_load()
    at fl.video::VideoPlayer/load()
    at fl.video::FLVPlayback/doContentPathConnect()
    Have you tried a super-simple <object>-style embed of
    your video?
    I really do think it's the Adobe-AC-JS-stuff that's messing
    things up?
    You could instead consider using swfobject
    http://code.google.com/p/swfobject
    But first I think you should try an <object>-embed to
    see if it's the JS or the Flash that's messing things up.

  • Problem with .swf playback

    Hello,
    I have a problem with .swf animation playback in captivate 4. I created the .swf in flash with as3 on one frame. The animation is contained in a movieclip. I exported from flash and made sure the framerates between captivate and flash work. I import the animation to a slide and notice that the duration of the animation is .01 (could this be a red flag?). When previewing my captivate file the animation does not play it shows up static. I have my captivate file set up with continue buttons but I tried taking the button off the animation slide and it still shows up with the static what would be animation. Has anyone else encountered this? I'm really at a loss as to whats going on
    For bonus points: I'm still getting a transition that fades to white briefly even after I put no transition. Is their a way to just have an abrubt transition without the fade?
    Cheers
    -Matt

    Alright now it makes more "sense".
    Your SWF problem is caused by a bug in Captivate. I have encountered this many many times. Basically if you import a Flash animation and you have more than 1 slide in Captivate it will play to the end before you get to the slide with the animation. It's a really annoying bug that also occurs if you insert an SWF created in Captivate into a master Captivate project.
    There are a couple of solutions to your problem.
    1. Try and Externalize your animations when you publish your Captivate project. This can sometimes remove the problem. You can edit the settings in Preferences - Publish Settings.
    2. Create a loader in Flash that will pull in your animation SWF. Basically you just need to do a loadMovie shell in Flash and then have that pull in your animation SWF. I use this all the time for AS2 projects, but I guess that it will work just the same for AS3 projects.
    As for your fade in / fade out issue. Did you by any chance set a transition effect on your slides? Check the Slide Properties for a transition effect. If that's not it - is your fade in issue only occuring on the first slide? The "master" setting for a Captivate project has a default to fade in on the first slide. You can change that in Preferences - Project - Start and End.
    /Michael
    Visit my Captivate blog with tips & tricks, tutorials and Widgets.

  • Is there a problem with ending a URL with somefile.swf?

    I have a swf button that launches a new window (ex: http://domain.com/index.html) with the javascript:new.window method. I am finding that sometimes (1 or 2 times out of every 5 clicks) the window is nothing but blank white. I have found, by mistake, that if the javascript:new.window launches directly to (http://domain.com/somefile.swf) then it works everytime.
    I think the problem with the blank browser window might be related to slower Internet connections. I can't seem to find anyone else with the blank browser window issue, so I'm wondering what side effects or problems might arise by using the swf as that url instead of an html file that runs the swf.
    Flash player detection?
    Could a browser decide to download the file (for saving) instead or running it?

    I can't quite say what the issue with your swf not loading in the html is. It almost sounds more like an issue of the swf not loading.
    If the user has Flash Player installed on their machine (which they should if they are getting your original button) then you probably don't have to worry about the browser trying to download the swf - its probably not going to.
    What you might want to be more concerned about is window resizing.  If the user can resize the window from the specified size in your js (if you have any) than Flash Player will resize. If the user extends the window beyond the height OR the width, then anything on stage but out side of the fla stage bounds will be visible. You can constrain the size in your js, and set resize = no.
    But mainly, youre perfectly fine linking directly to the swf if that is all you need.

  • Problem loading .swf embedded with HTML

    Hi All,
    I have embedded .swf file with HTML. It is working fine with
    win xp and win 2003. But not working on win 2000 server.
    I have set the MIME in IIS for .swf.
    Please let me know what setting I should configure.
    Thanks,
    Aung

    does container exit on the timeline that contains your code?
    is master.swf in the same directory with your flash swf and
    html?

Maybe you are looking for

  • Editing Actual Text in PDF File

    Is there any way or a third party software that will allow me to actually edit text in a PDF??? Right now, I have a PDF file that was emailed to me for printing and some text in the file needs to be modified. I would just like to edit the actual text

  • Help me with mastering in adobe 1.5

    please help on steps and effects to use on mastering tracks with adobe 1.5

  • Will i lose all my information if i change operating systems

    Will I lose all my personal information, documents, music, movies, and apps, if I change operating systems?

  • Process Chain & DTP

    Hi, I am New to BI 7.0 but with some little knowledge about BW3.5. I would like to ask for some brief explanation about Process Chain & Data Transfer Process. What are they? I replicate a DataSource as BI7.0 datasource version, and I found that I mus

  • Why i can't change store

    why i can't change store? I have in my Balance 0.03$ and I can't spend it so I cant change the store