Swf loader not running on mov export

Using this actionscript 3 code :
var myLoader:Loader = new Loader();
loader_mc.addChild(myLoader);
var url:URLRequest = new URLRequest("banner-ad4.swf");
myLoader.load(url);
I loaded a swf file into my fla document. It looked good when published as swf. When I then try to export it as a .mov file the created file is distorted and the swf file does not load. I receive no error messages. Any thoughts about why this is happening?
Thank you.

Welcome to discussions Sateendra!
Personally I would have prefered to save as MPEG-4, to view on a PC-but I don't think that counts.When you look at the file in your PC does it look like a QT movie or it looks as a .DAT file? In case it doesn't have an extension, make a copy of it at your desktop and add the extension .mov manually.Otherwise, you can always try with the Get Info pane make it a QT movie directly from your Mac prior to exporting.
P.S. : I'd like to help further, but I'm now on iMovie6 and don't remember settings...

Similar Messages

  • How to get the content in embed swf file in Swf Loader on run time

    How to get the content in embed swf file in Swf Loader on run time
    [Bindable]
    [Embed(source="assets/index.swf")]
       private var SWFSRC:Class;
    <mx:SWFLoader id="_swfloader" source="{SWFSRC}" />

    Hi Flex harUI,
    Throw the error.
    Access of undefined property content

  • I have had FPCX since Sept, first used Oct.  I have not had one 'movie' export properly, first time since using FPCX.  Audio stops completely at some point and does not re-start.  Any ideas, folks?

    I have had FPCX since Sept, first used Oct.  I have not had one 'movie' export properly, first time since using FPCX.  Audio stops completely at some point and does not re-start.  Any ideas, folks?

    First, I suggest you limit the subject line of your question to a few words which will help someone identify the problem you are encountering. Putting the entire question there looks as though you are shouting.
    It would help anyone to identify your problem if you were to say what video codec (file format) you are using, and describe the method you are using in your attempts to export it.
    You could also list any relevant error messages you encounter.
    What version of FCP X are you using?
    All these things will make it easier for people to help you.
    Andy

  • SWF files not running from some lab computers

    Hello,
    Our Flash lab is experiencing strangeness on 8 of its 28 computers. When students create an animation and export it as an SWF file, the animation will not run. They can play the animation from within Flash itself (Enter cmd... watch the timeline progress)... but it just won't run as an SWF file.
    SWF files that are created on any of the non-problematic computers will run on the problem computers, but not the other way around (problem computer> good computer).
    I'm not familiar enough with Flash to troubleshoot this problem. I know that the entire lab was created from one image and all the computers are the same model Dell, running Creative Suite 4 Premium on XP Pro. It is becoming an issue for students as the lab is full and they are having trouble completing their assignments.
    Does anyone have an idea of what's going on... or where to start looking?
    Thanks,
    Alan

    Thanks for the reply Ned. I've checked and the lab is still at the same version. I did find that if we recreated the student's profile and they started out on one of the "good" computers that any future work on a "bad" computer would work.
    I also narrowed it down to a 3D animation... not just any animation that wouldn't work. It seems like the program isn't loading up everything when a student starts Flash for the first time on one of the "bad" computers. Students that first start on a "good" computer can run 3D SWF files successfully on a "bad" computer.
    Well, at least recreating the student profiles is a bandaide fix for now. But I'd like to figure out what went wrong with those 8 computers (I did reload CS on a couple of them... didn't help).

  • Network UNC paths and SWF files not running.

    Flash Player wont run SWF files from a network unc path. A map drive works. How can I resolve this?
    Our user profiles in window 7 are roaming and the my documents redirects using a unc path to the my documents area.  When the swf file is run, you just get a white background in the player.  The standalone player is version 8 .  We also deploy the latest flash player plugin for ie9 browser (currently 11.3).
    I have tried adding the unc path \\servername\pathname to a .cfg file in C:\Windows\System32\Macromed\FlashPlayerTrust  as described in the flash player administrator guide.  This did not work.
    I have also tried to update the global security settings panel with the unc paths required and copying the settings.sol file to users profiles but this has not made any difference.
    Can anyone help?
    Many Thanks
    Mark

    Thanks for replying Jeromie. 
    After a bit of digging, I discovered that the problem was with the profile path for users. I am not sure why, but when the profile path contains the fully qualified domain name in it , flash player fails i.e \\server.domain.co.uk\sharename\flash.swf.  when the path was changed to \\servername\sharename\file.swf , it worked.
    I changed all the users profile paths and removed their appdata to and now all users can play flash files with the new profile path.
    Regards
    Mark

  • Plan a daily load not run on Saturdays

    Hi Gurus,
    I need to plan a process chain to run every day except Saturdays.
    Do not know how to plan the job, as the only option that I like what I need, is execution on a daily, and the restriction of "Do not run on Sundays and public holidays."
    But this option is not worth me, because on Sundays and holidays if I want to run, I just want to exclude Saturdays.
    Sincerely,

    Hello,
    I think you can create an ABAP program to check the week day based on date.
    Make use of FM 'DATE_COMPUTE_DAy'.
    If its sat, then use FM 'RSPC_API_CHAIN_START' to trigger ur PC.
    Now schedule the abap program to run daily.
    Regards,
    Shashank

  • SWF animations not working properly when exported as PDF from InDesign

    I'm using InDesign CS5 and have created a document that I want to add interactivity and animations to. I've created buttons and page destionations, etc, which all work perfectly  when exported to a PDF but the simple animation that I wanted to include don't work. The animations have been created in InDesign then selection exported as a SWF file and then imported and placed in InDesign and then exported as an interactive PDF where the animations either don't work, haven't been picked up or don not work as they should. What am I doing wrong, how do I get the animations to work correctly?

    Try this tutorial:
    http://tv.adobe.com/watch/csinsider-design/indesign-creating-interactive-pdfs-with-page-tu rn-and-flash-animations/

  • SWF Loader - not loading from variables

    <mx:SWFLoader 
    id="imgComp" width="250" height="150" source="C:/projects/Flexprj/file1swf" autoLoad="true" complete="fnTest()"/>
    The above code is working find and it is loading the swf fine
    The problem comes when I read a list of files and load it..  I read a CSV file,  to get a list of SWF names.
    Then I have the following
    for  
    (var iLoop:int=0;iLoop<_arrBanners.length;iLoop++) {      imgComp.source =       imgComp.source =
    _arrBanners[iLoop];     imgComp.load();
    1. If I give something like this. It is not loading the SWF and
    2. If I give a URL for the imgComp.source , does that download the SWF each time. If so, is there any way to download all the files to local and load from thr.
    Thanks & Regards
    mxvx

    I'm not sure I understood the question, but if you use SuperImage from
    quietlyscheming.com, it will cache images in memory so if you try to get
    them again it will be very quick.

  • SWF File not running in Bin folder

    I developed flex program using flex builder 2.0. While click
    to run button, it works fine. But when i run the swf file (placed
    in bin folder) it shows the following error,
    [RPC Fault faultString="HTTP request error"
    faultCode="Server.Error.Request" faultDetail="Unable to load WSDL.
    If currently online, please verify the URI and/or format of the
    WSDL (
    http://weblogs.macromedia.com/mxna/webservices/mxna2.cfc?wsdl)"
    at mx.rpc.soap::WSDLParser/::dispatchFault()
    at mx.rpc.soap::WSDLParser/
    http://www.adobe.com/2006/flex/mx/internal::httpFaultHandler()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at mx.rpc::AbstractInvoker/
    http://www.adobe.com/2006/flex/mx/internal::dispatchRpcEvent()
    at mx.rpc::AbstractInvoker/
    http://www.adobe.com/2006/flex/mx/internal::faultHandler()
    at mx.rpc::Responder/fault()
    at mx.rpc::AsyncRequest/fault()
    at ::DirectHTTPMessageResponder/errorHandler()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at flash.net::URLLoader/flash.net:URLLoader::redirectEvent()
    Please tell me how can i fix this issue?

    I developed flex program using flex builder 2.0. While click
    to run button, it works fine. But when i run the swf file (placed
    in bin folder) it shows the following error,
    [RPC Fault faultString="HTTP request error"
    faultCode="Server.Error.Request" faultDetail="Unable to load WSDL.
    If currently online, please verify the URI and/or format of the
    WSDL (
    http://weblogs.macromedia.com/mxna/webservices/mxna2.cfc?wsdl)"
    at mx.rpc.soap::WSDLParser/::dispatchFault()
    at mx.rpc.soap::WSDLParser/
    http://www.adobe.com/2006/flex/mx/internal::httpFaultHandler()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at mx.rpc::AbstractInvoker/
    http://www.adobe.com/2006/flex/mx/internal::dispatchRpcEvent()
    at mx.rpc::AbstractInvoker/
    http://www.adobe.com/2006/flex/mx/internal::faultHandler()
    at mx.rpc::Responder/fault()
    at mx.rpc::AsyncRequest/fault()
    at ::DirectHTTPMessageResponder/errorHandler()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at flash.net::URLLoader/flash.net:URLLoader::redirectEvent()
    Please tell me how can i fix this issue?

  • Can a ring control be populated using a separate text file when VI loads (not running)?

    I would like to know if there is a way to populate a ring or enum control list using values maintained in a text file (or other format) outside of a VI.  I have to be able to call this VI from TestStand or LabVIEW, and would like to be able to use the drop down interface to pick from the list of selections.  As a result, the ring or enum list would need to be updated before the VI runs.  I want to avoid just using a string to prevent typo's from creating errors.  There would be several different VI's getting the list values from this text file.  Is this possible, or am I way off base?  Or does anyone have any other ideas or suggestions?
    Thanks everyone,
    q.

    Thanks for the replies.  I had a chance to play with ring controls and updating the string array dynamically.
    However, as I mentioned in my first post, one of the reasons I want to use dynamically updated lists is to have a readable drop down list in TestStand when you configure a step (i.e. Specify Module).  This would help serve as a part of a hardware abstraction layer, and for maintainability purposes we don't want to split the hardware map among a number of VI's.
    Unfortunately, TestStand doesn't seem to recognize the string list from a ring control.  And as mentioned above, there are issues with updating Enums.  Is it possible to accomplish a way of dynamically populating this list in such a way that TestStand will recognize it?  Is there another control that would work better (e.g. list boxes, combo boxes, etc.)?
    Thanks for your help,
    q

  • Swf does not load flv on server

    This has been asked before but it doesn't appear to
    have been answered... On my local workstations the swf loads and
    runs the flv fine. They are both in the same directory. When I
    upload the pair to a server (windows 2003) the swf no longer loads
    the flv file. I've tried multiple workstations and two servers with
    the same result. No matter where I put the swf/flv pair and no
    matter how I try to load the swf (direct URL, in an HTML page by
    itself or in the web page) the result is the same....
    When I imbed the video in the swf it runs fine, so, the swf
    runs okay it is specifically the loading and running of the flv
    file by the swf file on the server. I don't think it's a network
    issue because I've tested my workstations across the network and it
    works fine. It is specifically when the swf tries to load a flv on
    a server. I don't get an error message, just a blank swf holder.
    It's not the flash code because I've tried multiple playback
    components and they all give me the same resutl. Again, it appears
    to be specifically related to the swf loading the flv on the
    server.
    It appears to be something that has happened in the last few
    months (maybe I missed an update/) because I know it worked when I
    first uploaded the site. It appears to have stopped working in the
    last six weeks. I don't check my site on a daily basis but I last
    updated my site about the end of January and it was working then...
    I'm using studio 8...
    THANKS...

    quote:
    Originally posted by:
    jcasanova
    Is the path
    http://www.yoursite.yadayada/yadayada.flv
    right?
    Are you referring to the url in the object on the html page?
    Is that supposed to be the swf?
    <param name="movie" value="
    http://www.yoursite.yadayada/yadayada.swf"
    />
    tyroners,
    If you have found a solution, please post it! I have been
    working on this all day with no luck. Runs fine on localhost, but
    on my WIN2003 server, it just shows the blank swf. I did read that
    you also need to upload the skin swf file to the same directory if
    you are using one.
    I will post too when I fugure this one out
    Thanks
    G

  • Closing swf loaded into movie clip

    I have built a movie clip on my main flash file that I am loading separate swfs into. On the separate swfs I have a close button, but do not know what action script to attach to it to make the movie clip go away? I want these to go away every time you hit the close button on the separate Flash swfs loading into the main movie clip.

    if the target movieclip has a non-negative depth and the close button is encoded on the loaded swf's main timeline, you can use:
    var tl:MovieClip=this;
    path.closeBtn.onRelease=function(){
    tl.removeMovieClip();

  • Swf is not working properly when upload to server

    I develop 1.swf which is having 3 buttons each one having
    anather .swf to call 2.swf, 3.swf respectively.
    This application is running perfectly on my PC, but
    While uploading the swf to server the 2.swf and 3.swf is
    not running. Can any one tell how to recover from this kind
    of problem.

    justbipin wrote:
    > basically my code working perfectly,
    > but its not working properly when upload to server
    > can anybody having any ref. or link to solve this
    issues.
    why is that we insist on seeing the source file ?
    There is no one way of doing things in flash and no one can
    help
    you based on "does not work description".
    This is way to broad of a subject to even try to guess.
    Same as asking "my car does not work, what's up with
    that"....
    Please upload the problematic file and provide url for us to
    check.
    Otherwise you need to try to troubleshoot it yourself as we
    can't
    guess from here what possibly is wrong with that file.
    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>

  • Flex: Actionscript project swf is not working after export the release build...

    Hi guys..
       I tried to built a project with AS3 only in Flex. When I run the project in flex, everything looks fine, but when I export the release build, the images that are supposed to be added are gone. I appreciate if someone can help me about it.
              init();
                public function init(loadedVideoCount:Number):void{
                singleHolder=new singleVideoCont();
                singleHolder.x=loadedVideoCount*singleHolder.width+2;
                singleHolder.y=6;
                singleHolder.buttonMode=true;
                addChild(singleHolder);
                this.addEventListener(MouseEvent.CLICK,onClick);
                showTn();
            private function showTn():void{
                    imgLoader = new Loader();
                    imgLoader.load(new URLRequest(_tnPath));
                            imgLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS,onProgress);
        imgLoader.contentLoaderInfo.addEventListener(Event.COMPLETE,onImgLoaded);
            private function onImgLoaded(event:Event):void {
            singleHolder.progBar.alpha = 0;
                   var image:Bitmap = imgLoader.contentLoaderInfo.content as Bitmap;
                    image.width=TN_WIDTH;
                    image.height=TN_HEIGHT;
                    image.x=3;
                    image.y=3;
                    singleHolder.addChild(image); //this line work when I run the project inside flex but the images are gone when I test my release build...
                    imgLoader.contentLoaderInfo.removeEventListener(ProgressEvent.PROGRESS,onProgress);
                    imgLoader.contentLoaderInfo.removeEventListener(Event.COMPLETE,onImgLoaded);
                    //imgLoader = null;

    The link you provided is to the SWF file, not to an HTML
    file, so no one can test your HTML file.
    Have you checked the code for the embedding of the SWF file
    in your HTML file? I don't use Dreamweaver much, but I do know that
    if you start assembling a Dreamweaver file without first saving the
    HTML, embedded graphics and other items are inserted as direct
    links to the files on your computer, rather than as relative paths.
    There is one other possible issue: I note that your swf is
    called CWABanner.swf. Depending on your FTP settings, it is
    possible that your server is forcing all file names to lower case
    (a common practice). Which means the file on your server will be
    cwabanner.swf. Again, depending on how the web server is set up, if
    it is case sensitive, it will treat CWABanner and cwabanner as
    separate files. So if the HTML calls CWABanner.swf, but the FTP
    upload has forced a rename to lower case to cwabanner.swf, the HTML
    file will not find it. Check this out, or to be absolutely certain,
    rename everything to lower case: the file name itself and the
    reference in the HTML file.

  • Unable to load style(SWF is not a loadable module)

    While devoloping an App voor iOS we decided to use several StyleSheets.
    We are implementing the loading of Stylesheets as:
    event_dispatcher:IEventDispatcher = this.styleManager.loadStyleDeclarations2("assests/styles/default.swf");
     event_dispatcher.addEventListener(StyleEvent.COMPLETE, OnStyleLoaded);
    event_dispatcher.addEventListener(StyleEvent.ERROR, OnStyleError);
    running the app on the desktop simulators work fine.
    packaging the app with package method fast, and running the app on an iphone4 works fine.
    packaging the app with package method standaard, and running the app on an iphone4 gives an error:
    Unable to load style(SWF is not a loadable module): assets/styles/default.swf.
    Is there something im missing? Why does it work when packaging as Fast, and not as Standard?

    Hi,
            The source file is .swf ie(.css is converted to .swf).
             Main swf is running from local.
             Style module is from server.
    I set security domain. But it throws security sanbox violation.
    What should i do. Even some time if a use the local url means it thorws the same error Unable to load style(SWF is not a loadable module).
    thanks,
    Jayagopal.

Maybe you are looking for

  • IPhone 4S iOS 5.0.1 Dual Sim failure

    Hello, First of all I want to clarify what I mean by Dual Sim. I am using the iPhone with this SIM from the first 2G model, and it was working perfectly. It is one sim with two phone numbers (one forwards the calls to the other). This options is offe

  • Arrange bookmarks in a pdf in Preview

    Hi there. I'm using Preview for reading pdf's... BIG pdf's!, so I use bookmarks a lot to navigate my way around. However I can't seem to find anywhere to organize these bookmarks. They are just displayed in the order I added them. Is there any way to

  • Customer Order in MRP

    I created a customer(XD01) Account Group: Customer (general) created a sales order (VA01) Req.delivery date: 24/04/2010 added the material and saved..... No issues Finished product strategy group 10. Run MRP (MD02) and found Customer Order w/ referen

  • Find the date for Monday

    Hi, I have to find Monday of any week. Suppose user input a date '24-Oct-2007' then I have to find '19-Oct-2007' i.e Monday. And also I have to find Week, i.e '22-Jan-2007' is Week 4 of the year. I have done it by manipulating the logics. Is there an

  • What is the latest firmware for the 5th Gen?

    And where is it located, have there been any problems with it? Thanks, Jim