Placed SWFs in IND CS4 do not work

Hey,
I've been searching the Internet for forum-topics/posts on similar problems unsuccessfully. Now I hope to get some help on my prob from the "collective expertise" here ;)
My aim:
Creating a PDF-presentation including multimedia-contents (SWF-Files).
Workflow so far:
I created the presentation in InDesign CS4. On some pages I want to place SWF-Files which I've created in Flash CS4
(Export for FlashPlayer 9, Movie-compression activated).
Once finished the layout, I want to export the doc to PDF
(PDF Export options: PDF 1.7, Multimedia-Content embedded, no color-conversion, no compression )
My problem:
1) No preview of the SWF-File in the InD-Doc itself. Doc doesn't indicate that the movie was actually placed. Only movie-roll-picture is shown.
2) Movie doesn't load in Acrobat 9 Pro on opening the exported PDF (Buffering starts but no process is shown)
Is there something wrong with my export-options or can InD simply not handle SWF-Files (but export into SWF )?
Are there other export-formats in Flash CS4 I can place in InDesign?
My only "workaround" so far: SWF-files can directly be placed in a PDF via Acrobat, but is this the only way?

These two posts by David Blatner may help:
http://indesignsecrets.com/swf-embedded-in-indesign-pdf-problem-solved-mostly.php
http://indesignsecrets.com/preview-swf-files-inside-indesign-with-playswf-script.php

Similar Messages

  • Font missing CS4 script not working in CS5???

    hi, my font missing script is working in CS3, and CS4 but not working in CS4.
    I don't know why, any help please.
    Sam

    Object model has some changes in CS5.
    So use the below code in top of your script.
    app.scriptPreferences.version = 6.0;

  • Have a new mac with OS X 10.9.5 and my CS4 is Not Working anymore. It says to Contact Adobe Support regarding the licence- but that Seems impossible. Any idea how to solve this?

    I Have a new mac book pro with OS X 10.9.5 and now my CS4 is Not Working anymore. It tells me to Contact Adobe Support regarding the licence - but that Seems impossible. Any idea how to solve this?

    Use the web chat and just be patient.
    Mylenium

  • Swf with external .as files not working in Captivate

    Hello,
    I am using Flash Professional CS5.5 & Captivate 5.5 (purchased with eLearning suite).
    When I insert swf animations into Captivate that have external .as files they do not work.
    Tried both insert animation & insert animation slide - same results.
    I placed the .as files in the same file as my Captivate project and have tried multiple setting options.
    The FPS are set to 30.
    I had the same problem with external audio files and had to embed the audio into my fla to get it to play in Captivate.
    Does Captivate just not allow external files?
    Any help/insight is appreciated!!
    Les-

    The most likely reason for this failure is that since your SWF is now embedded into another SWF (the Captivate project) the paths to the AS files need to be altered in Flash to allow for this.
    You need to investigate how this would be done in AS code if your Flash SWF was a symbol inside another Flash SWF.

  • Loading multiple SWFs and storing them (code not working under Firefox 23 and Chrome)

    Hey guys,
    Anyone has any idea why this code suddenly don't work anymore? (It works under internet explorer but not firefox and chrome
    The code under is placed on my main swf to preload all my external swfs and store them for not having to wait too long to access them.
    Thx guys.
    I took the code from here btw: http://www.beautifycode.com/the-finer-art-of-loading-2-handling-multiple-swfs#snippet
    I'm running flash player 11.8.800.94... It used to work under Firefox and Chrome
    var _swfLoader:Loader;
    var _swfRequest:URLRequest;
    var _swfPathArr:Array = new Array("00.swf", "01.swf", "02.swf");
    var _swfClipsArr:Array = new Array();
    var _swfTempClip:MovieClip;
    var _loadedSWFs:int;
    startLoading(_swfPathArr);
    function startLoading(pathArr:Array):void {
    _swfLoader = new Loader();
    _swfRequest = new URLRequest();
    loadSWF(pathArr[1]);
    function loadSWF(path:String):void {
    setupListeners(_swfLoader.contentLoaderInfo);
    _swfRequest.url = path;
    _swfLoader.load(_swfRequest);
    function setupListeners(dispatcher:IEventDispatcher):void {
    dispatcher.addEventListener(Event.COMPLETE, onSwfComplete);
    function onSwfComplete(event:Event):void {
    event.target.removeEventListener(Event.COMPLETE, onSwfComplete);
    _swfTempClip = event.target.content;
    _swfTempClip.customID = _loadedSWFs;
    _swfClipsArr.push(_swfTempClip);
    if(_loadedSWFs <_swfPathArr.length - 1) {
    _loadedSWFs++;
    loadSWF(_swfPathArr[_loadedSWFs]);
    } else {

    Hi kglad,
    The problem was coming from my server.
    I recently played with some settings  from a "cache control tool" offered by my hosting but i thought i had it back at default. Turns out i must've missed something. Now i have the .html caching on and everything works good on all browser.
    I have another question tho...
    I'd like to know if there's a way to cache an html file without having to ask my hoster to cache all of my htmls...
    I'm using this code now but maybe there's a way to add something that will cache this page specifically?
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>title</title>
    <script language="javascript">AC_FL_RunContent = 0;</script>
    <script src="fluid_site.js" language="javascript"></script>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
    <link href="style.css" rel="stylesheet" type="text/css" media="screen"/>
    </head>
    <!--url's used in the movie-->
    <!--text used in the movie-->
    <!-- saved from url=(0013)about:internet -->
    <script>
        if (AC_FL_RunContent == 0) {
            alert("This page requires fluid_site.js.");
        } else {
            AC_FL_RunContent(
                'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
                'width', '100%',
                'height', '100%',
                'src', 'index',
                'quality', 'medium',
                'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
                'align', 'middle',
                'play', 'true',
                'loop', 'true',
                'scale', 'showall',
                'devicefont', 'false',
                'wmode', 'window',
                'id', 'index',
                'name', 'index',
                'menu', 'false',
                'allowFullScreen', 'false',
                'allowScriptAccess','sameDomain',
                'movie', 'index',
                'salign', ''
                ); //end AC code
    </script>
    <body>
    <noscript>
        <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="100%" height="100%" id="index" align="middle">
        <param name="allowScriptAccess" value="sameDomain" />
        <param name="allowFullScreen" value="false" />
        <param name="MENU" value="false">
        <param name=wmode value=window>
        <param name="movie" value="index.swf" /><param name="quality" value="medium" /><embed src="index.swf" quality="medium" width="100%" height="100%" wmode="direct" name="fluid_site" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
        </object>
    </noscript>
    </body>
    </html>
    Thanks

  • Flash CS4 Debug not working

    I have both CS3 and CS4 web preium installed on my system. I
    have started working in CS4 and found that the debug window will
    not work. I created a new Flash CS4 fla and added some breakpoints.
    It seems to run without stopping at the breakpoints and displaying
    my trace statements. I have a ticket into support but no one has
    answered it yet. I remember this happening when I installed CS3 web
    pre but can't remember what I did to fix it. Is a uninstall of all
    the products neccessary? Or should I just uninstall Flash. Any
    comments welcome. I hate calling support and talking to some person
    in another country that does not have a clue how to fix
    ANYTHING!

    The text in the output window reads:
    Attemping to launch and connect to Player using URL
    F:\CS4\NewTest.swf
    I have a breakpoint in there but the movie seems to ignor it
    and does not show anything or stop. When I close the swf debug
    window I get:
    Debugger launched failed. Debug session will terminate.
    Then I am back in. I think this happened in CS3 as well but
    can not remember what I did to fix it. I have made my own workspace
    and have tried others as well with the same results.
    THanks for getting back to me. Right now I don't have time to
    uninstall and reinstall. Project deadlines and all that. I am still
    using CS3 on the same machine.
    I really like the new interface design you guys built! Really
    helps with my Windows Vista Ultimate and issues with Flash CS3 as
    well.
    Thanks for getting back to me.

  • Media Encoder CS4 does not work

    CS4 Windows 7 Media Encoder does not work!?
    From PremierePro to the Encoder (fullHD to MPEG2)
    The encoder is very slow and stops after time.
    And I see that the encoder try to make a .mpg file but it also makes .m2v and .mpa. in the same time?
    What to do???

    You'll have better luck asking such questions in the Premiere and AME forums.... Could simply be running out of temp disk space or a problem with teh Media Cache.... anyway, ask the pros...
    Mylenium

  • PrevFrame() buttons in a swf file inserted in html not working in Firefox

    Hi!
    I have a very weird problem.
    I have created a photo gallery using AS3 in Flash CS5. I have used prevFrame() and nextFrame() actions for "previous photo" and "next photo" buttons as well as for "previous thumbnails" and "next thumbnails" buttons.
    All the buttons work fine when i run the swf files as well as when i run the swf files in Firefox 8.0 and IE9. However, once I insert this swf file into my html file using Dreamweaver CS5->Insert->Media->swf, the "previous" buttons dont work in Firefox 8.0! the previous image button works sometimes whereas the previous thumbnails button does not work at all!  They work fine in IE9. The next buttons also work fine in every browser. Heres my code:
    stop();
    thumbprev_btn.visible=false;
    next_btn.addEventListener(MouseEvent.CLICK, nextimage);
    prev_btn.addEventListener(MouseEvent.CLICK, previmage);
    thumbprev_btn.addEventListener(MouseEvent.CLICK, prevthumbs);
    thumbnext_btn.addEventListener(MouseEvent.CLICK, nextthumbs);
    function nextimage(event:MouseEvent):void
    if(mc_content.currentFrame==mc_content.totalFrames)
    mc_content.gotoAndStop(1);
    else
    mc_content.nextFrame();
    function previmage(event:MouseEvent):void
    if(mc_content.currentFrame==1)
    mc_content.gotoAndStop(mc_content.totalFrames);
    else
    mc_content.prevFrame();
    function nextthumbs(event:MouseEvent):void
    thumbprev_btn.visible=true;
    nextFrame();
    if(currentFrame==3)
    thumbnext_btn.visible=false;
    function prevthumbs(event:MouseEvent):void
    thumbnext_btn.visible=true;
    prevFrame();
    if(currentFrame==1)
    thumbprev_btn.visible=false;
    Please help.

    Thankyou Ned. The html file published by flash worked perfectly however the problem persisted even if i used this html file's code. But strangely, the problem disappeared after a few days! Now the original dreamweaver code is also working fine.

  • Photoshop CS4 - Help NOT working

    If I select Photoshop Help, from the Help pull down menu in Photoshop CS4 I just get the error "HTTP 404 Not Found". Is there a solution to this, I didn't have this problem with CS3?

    I definitely say that this is not fixed nor resolved. Two computers running Vista (one is Business 32, the other is Ultimate 64) both have this issue.
    Dreamweaver CS4 - not working
    Bridge CS4 - not working
    Flash CS4 - works correctly
    Contribute CS4 - not working
    Fireworks CS4 - not working
    Photoshop CS4 - not working
    After Effects CS4 - works correctly
    Premiere Pro CS4 - not working
    Encore CS4 - (still need to check)
    InDesign CS4 - not working
    Illustrator CS4 - not working
    Soundbooth CS4 - not working
    What I'm most curious about is the JavaScript code in the "white page" with the AH_ION=true pages, especially the comment on line 2 here that seems to indicate that I should have some setting in my preferences that should tell the browser to go to the correct help page or not. If that's true, where do I set that and WHY should I need to?
    if (document.location.href.indexOf("AH_ION=true") > 0) {
    // check the user help preference cookie "ah_userpref"
    // if its set to "wh_page", redirect to the help system
    if (document.cookie.indexOf("ah_userpref=wh_page") > 0 ){
    redirectUrl = "index.html";
    // otherwise ,redirect to the community help and support page
    }else{
    var loc = getLangName();
    redirectUrl = "http://www.adobe.com/go/lr_Dreamweaver_community_en";
    if (loc == "en_US") {
    var id = getSamcapId();
    if (id.length > 0) {
    redirectUrl = redirectUrl + "?trackingid=" + id;
    var pageTracker = _gat._getTracker("UA-2987543-3");
    pageTracker._trackPageview();

  • InDesign CS4 Debug not working on Windows

    Dear All,
    Two days back I purchased Bronze ASN memebership. This is the first time when I am trying debug version of InDesign. I have installed InDesign CS4 Debug on both Mac & Windows. On Mac it is working fine, but on windows it is not working.
    Debug Indesign is not getting launch and asking for re-installation. I have re-installed 2-3 times. Release version allready installed one my PC. I have tried with differeent combination like "install without Release version of InDesign", "insatalled on different drive", etc.
    I hope some one can help me to resolve this issue.
    Regards,
    Rajeev

    I think the Adobe terminology is Required not recommended, but the
    recommended build environment for CS4 plugins is Visual Studio 2005 plus
    service pack 1.
    As has been said many times on this list, and I can confirm from painful
    experience, you may have problems if you try to build your plugins with VS
    2008.
    Caerwyn

  • CS4 Install not working. Laptop crashed. New download link sent yesterday. Downloaded, but install will not work on new laptop. Help?

    Laptop crashing. Purchased new. Had 30 day free trial of CS4. Activated and used that.
    My serial # would not work when prompted for it.
    Yesterday, chat session helped me to download the software again. Download took 3 hours so chat session ended before install could be completed.
    Today I rand the install.
    The first time the session ended with a "failed to install" and a list of programs (all of them).
    Second and subsequent attempts result in getting to the "Cancel/Install" screen. Message says "Preparing to install" but nothing happens for a significant amount of time.
    Please advise. How do I complete the install? I do need to use this software very, very soon.
    Thank you!

    DAnderson which operating system are you using on this laptop?  Did you transfer/migrate/copy over your files, folders, and applications to this new computer?

  • EMail Link in SWF exported from InD CS5 does not work

    I'm trying to find a definitive answer on this. I have designed an interactive document in InD CS5 that has buttons and hyperlinks. When exported to SWF everything works except my e-mail hyperlink. It works fine in InDesign's preview pane. I've uploaded the file to my webserver for testing, the problem still occurs.
    I found one post in another forum that quoted an Adobe InD developer stating that as of CS4 email links were not exported. However, I've not been able to find any mention of whether this works in CS5 or not.
    Does anybody know for sure whether or not email links work in SWF files exported from CS5?

    Sorry, no offense was intended. I had found references to problems with CS4, but nothing about CS5, and said as much in my post -- was frustrated that I had spent a long time looking and hadn't found any responses yet.
    You mentioned using buttons rather than hyperlinks, and that worked for me -- but it might have just been a problem with my browser not properly reloading the flash file, too -- as I mentioned in my response.
    But in any case, THANK YOU FOR YOUR SUGGESTION!

  • Flash CS4 help not working

    Hi, I'm using Flash CS4. After updating my flashplayer, it no longer works with IE8. Therefor I recently
    tried Opera.
    When working with AS3 I did what I always do to access context-sensitive help. I placed the cursor in a
    blue word and hit the F1 key. This normally takes me where I want, but this time it didn't. First I was
    asked if I wanted to make Opera my default browser. I clicked no. Then Opera opened up and I could
    see the help home page.
    Now, this got me frustrated as I still have IE8 as my default browser. Why did Flash suddenly want to
    open the help files in Opera? I guess that would have been fine, though, had the correct page opened. I
    wanted to see info about my blue AS-word, not the help home page.
    I then uninstalled Opera as it clearly was unable to show me context-sensitive help. I then tried again.
    Now nothing happened. I tried selecting Flash Help from the help menu (which would normally take me
    to the help home page), but nothing happened.
    I also have Firefox installed. Something similar have happened to people when they installed Firefox.
    Anyway, Chrome has managed not to do this, I've had it installed for some time now.
    I have located my local copy of the help files and I'm able to access the AS3 index.html file and start
    trying to navigate to the correct class reference. But I hate it. It's inefficient. I have tried to see if there
    are anything helpfyl in the preferences, but I found nothing at all.
    Why does not Flash ignore which other browsers I have installed and just open help in my default
    browser?
    What can I do to once again access context-sensitive help?

    I still haven't found any solutions to this. Is there anything I can do?

  • SWF import to AE suddenly not working. HELP! Urgent!

    I have been importing SWF's fine in to AE CS5 then all of a sudden, it seems to have stopped allowing imports.
    Existing swf's remain in the project folder but show as missing.
    If I try to import a new swf, even into a new project, it is greyed out and there is no file format
    I have all the latest updates to AE cs5 (10.0.1) and flash etc it's on OSX 10.6  and it's been working since then - just seemed to have stopped.
    I have installed some plugins and scripts but again was all working before and After.
    Tried unistalling and reinstalling
    Help!? BIg important project. Dealine looms!
    Many thanks in advace for any help

    "But in the case of After Effects and Flash, all of my Flash geeks have learned not to even think about giving me their SWF files. We work together to figure out how their stuff gets into my stuff and it's usually a movie or a series of vector artwork I can manipulate."
    I can't even begin to explain how wrong you are. Flash IS a vector format and it's without doubt the best way to import animations to AE. 
    If you are exporting videos from Flash you have lost: built in transparency, Tiny file sizes, and infinite scalability
    I know that there have been problems in the past but CS5 flash and AE really does work seemlessly together.
    My VERY annoying problem came from an importer script that had an error in it which changed the Adobe importer.
    The solution...
       "Yar, hardly ever solves anything on a Macintosh, dunno why people bother with that."
    Unistall and reinstall - replacing the broken importer and never using the dodgy script again...

  • InCopy CS4 (PC) / InDesign CS4 (mac) not working

    My client and I are trying to establish an InCopy CS4 (PC) / InDesign CS4 (Mac) workflow. Neither of us has ever used InCopy and we are all getting frustrated now that our first production cycle has come and gone and the client is not recouping the money they invested on this software. Our trial system was successful for awhile and then it just stopped. The client says she can't open the icma/icml files and they need the indd file. So I send a new batch of files with the indd included and still no luck.
    I'm saving the assigments like I've been saving in our initial trial run. In ID I go to Incopy > Export > Add all Stories to Assignment. That creates the content folder and the .icma files. I zip everything and send it off via email attachment.
    Is there something I am doing wrong? Something my client needs to do? I prefer not to have to send the indd file. Should I have to do that for them to edit in Incopy? I appreciate any advice. Thank you.  Lynn

    Don't zip the files, that won't work.ID/IC is meant to work on a local server w/local staff. For a remote workflow you have to use a special technique.
    After you create the assignment, use the Package for InCopy command in the Assignments panel.That creates an ICAP file that you send to the client.
    When the double-click the ICAP file, it unpacks (it's like a zip file) on their computer and the assignment opens in InCopy. They work on the stories, and when they're done, they use the Return for InDesign command in *their* Assignments panel menu. That creates an IDAP file that they send to you.
    When you open the IDAP file, it unpacks, looks for the INDD file (be sure not to rename or move it in the meantime), and updates the stories w/the editors changes.
    Those are the broad strokes. It's covered more thoroughly in the online help file of both ID and IC ... you *and* your client should read up on it. And I cover it very thoroughly (4 videos ... Chapter 15) in my online Lynda.com tutorial on the CS4 workflow:
    http://www.lynda.com/home/DisplayCourse.aspx?lpk2=651
    (Chapter 15 isn't one of the freebie chapters, but you (or anyone) can use my 24-hour free pass for full access to their entire training library: http://lynda.com/freepass/amconcepcion)
    AM

Maybe you are looking for