Wallaby dosenot work for flash files Indesign CS 5.5

Wallaby when used for flash files created from Indesign CS5 are successfully exported in HTML5
on the contratry flash files created from Indesign CS 5.5 are not

Just to be perfectly clear, have you tried trashing your preferences
Trash, Replace, Reset, or Restore the application Preferences: http://forums.adobe.com/thread/526990
After that well, when InDesign hangs, there are two chunks of data we can look at to see why it hangs. Please save both of them and upload them to http://pastebin.com/, and post a link here. Please don't post the data here, it is too large for this forum and makes the forum un-navigable.
Obtain both by running Activity Monitor and selecting InDesign.
1. Sample Process. Save to file.
2. View > Send Signal: Abort (SIGABRT). You'll get a crash report. Save to a file.
Upload both and post links here.

Similar Messages

  • Can any one find a solution to this problem [ID CC 2014 has stopped working] for this file{link included}

    Hi all,
    Can any one find a solution to this problem [ID CC 2014 has stopped working] for this file{Dropbox - Questions CH-5 .indd}
    Note: I could open it, but suddenly I have faced this issue with just this file no any other of my files.
    Thanks for your help.

    try the blind export to .idml script at Adobe Community: InDesign 6 is crashing when attempting to open a particular document. All others are opening OK.

  • How IE works for  flat file

    Hi all:
         As we all know that, when IE gets a idoc's service name from SLD, then use it with idoc's message type and Idoc type to do receiver determniation, what about flat file ? how can we know its Service name and interface name  if there is only a flat file on FTP?  how IE works for Flat file ?
         Couldn't thank you more

    Hi,
    For any idoc scenarious, you would use business systems rather than business service which is stored in SLD. So the IE would fetch it from SLD at runtime.
    For file based scenarious also, you can create business system as type third party and use the same.
    Is that answer your question?
    Regards
    Krish

  • In the product/app Adobe Acrobat reader mobile.it would be good to have layer support working for pdf files.

    In the product/app Adobe Acrobat reader mobile.it would be good to have layer support working for pdf files.

    http://winsupersite.com/article/windows8/windows-8-tip-change-file-associations-144102

  • Oracle text search not working for  WSDL files

    I have a table (resources) with blob data type column (xml_data) and I've created context type index on that column. I've XSD and WSDL files stored in that blob column.
    I can search XSD and XML files with a query with contains operator. But any search on the words from wsdl file returns zero results.I am not able to perform search on wsdl file.
    Please advise me whether oracle text can work for WSDL files also ?
    Query details
    ===========
    create index myIndex on resources (xml_data) indextype is ctxsys.context;
    select * from resources where contains(xml_data, 'searchword') > 0
    Thanks a lot,
    Santhi

    Even though it isn't listed specifically, I can't see why it wouldn't work. The WSDL file should be a simple XML file, so in theory it shouldn't be any different to Oracle Text than the XML file that you loaded and searched successfully. Did you get any errors during indexing, and what do your tokens look like in the DR$MYINDEX$I.TOKEN_TEXT column?
    Do you have a mini test case that didn't work for you? Perhaps we could play with it a bit.
    Long term you might want to consider using section groups so that you can search "within" tags.
    -Ron

  • Ad rotator - add supporting gif for flash file

    Hi there, I am using the ad rotator to host 3rd party advertising. I have been supplied with a flash file (swf) and also a gif version of the ad. I want to be able to point to the gif file if the swf file is not able to be played by the browser/device. Is this possible within the ad rotator to have a fall-back gif file?
    thanks

    This functionality isn't native to BC but I've done this before for a client.  Just beware that using an .swf (flash) file embed for the ad won't let you track the BC Ad Rotator links.  Typical, image-only ads in the AdRotator can be tracked in BC's reporting but using a .swf file doesn't work and you have to embed the link in the actual .swf file itself.  Before we get you working with a flash fallback solution, if you have access to the .swf file or can tell your client what URL to use in the flash ad then you should use the AdRotator trackign URL if you can.  Do do that, setup an image-only ad rotator item first in one of your ad rotators.  Add that rotator to a demo page to get the URL of the ad rotator (it contains the unique id of your ad for tracking). Once you have that URL you can update your flash file to use that URL to take advantage of tracking on BC or give it to your customer to update the flash file themselves before sending you the flash file.
    Once you've taken care of the link in the flash ad or if you don't care about not tracking flash ad clicks in BC's reporting system, let's move on to building a flash fallback ad solution. We'll be using SWFObject which is the correct way to embed flash with fallback content.  The hardest part of this whole scenario is we have to get the ID of the ad rotator item (not the ad rotator ID) below.
    The javascript I came up with requires jQuery and it's usually already loaded on many sites. Make sure jQuery is loaded in the HEAD of your page or page template where you'll be serving the ads in the ad rotator.
    Download the SWFObject project and unzip it locally.
    Upload the whole "swfobject" folder to the root of your website.
    In your page template or page that you will be serving your ads on, add this script reference to the HEAD of your HTML doc:<script src="/swfobject/swfobject.js"></script>
    Download my custom javascript function and upload it somewhere on your website. For this example we'll assume you are placing it in the "js" folder in the root of your site.
    In your page or page template where you'll be serving ads, reference the script you just downloaded. Make sure it goes after our swfobject.js and jquery references in the head of your HTML doc:<script src="/js/adRotatorFlashFallback.js"></script>
    Now that our jQuery, SWFObject & adRotatorFlashFallback scripts are in place in the HEAD of our page or page template, let's move on to creating your ads with fallback content
    Upload the backup image you want to use for non-flash devices to your website and remember the URL/path of that image. For our example we'll use "/images/demoad.gif".
    Upload your .swf file to your site and rember the URL/path to that file. We'll need it later.
    Once the image and flash file are uploaded we'll create our ad rotator item for that ad:
    Create a new ad rotator item
    Choose the Item Type as HTML
    Add your Label (title) and Item Click-thru URL
    In the Item HTML box manually insert your HTML markup for the image:
    <img src="/images/demoad.gif" width="125" height="125" />
    (I won't be covering styling the ad so you can wrap a div around that image if you want to use some CSS to target the ad:(Optional) <div class="ad-item"><img src="/images/demoad.gif" width="125" height="125" /></div>
    Save the ad first before we add the flash option. We need to get that ad rotator item's ID first before we can hookup javascript to embed the flash over the backup image. If you have many ad rotator items already in place you might want to temporarily disable all the ads already setup except the one you are working on so you don't have to refresh the page a bunch of times to wait for your ad to randomly appear.
    Goto a test page and use BC's module manager to insert your AdRotator.
    Preview your test page with your ad rotator and once you see your ad you are creating, right-click the ad (this works in Chrome for sure) to copy the URL of the ad. You can also see what the URL is just by hovering over the ad in most browers.  The goal here is to jot down or grab the ID of the web app item and that should be in the URL similar to this: "/BannerProcess.aspx?ID=32713&URL=%2ftest".  I bolded the ID we'll be grabbing. This ID is unique to each ad rotator item and we need that so that we can embed a specific flash file for that specific ad rotator item. 
    Once you've got your ID of the item, head back to the Ad Rotator Item you just created in the BC Admin.
    You'll want to add some javascript after your image markup in the "Item HTML" box
    Before we had: <img src="/images/demoad.gif" width="125" height="125" />
    and it becomes:<img src="/images/demoad.gif" width="125" height="125" />
    <script>adRotatorFlashFallback('32711','/demoad.swf', '125', '125');</script>
    Replace the bolded items above with the ID of your ad rotator item we pulled from the URL before and the URL to the flash file we uploaded to the site before.  In our case, I uploaded "demoad.swf" to the root of the website. Also, the '125' and '125' above are the width and height, respectively for your flash file. For instance if your flash movie is 300 pixels wide and 100 pixels in height then calling our functions with those dimensions would look like:<script>adRotatorFlashFallback('32711','/demoad.swf', '300', '100');</script>
    Make sure the ad rotator item is enabled and you're all set.
    You can see a demo of it working at http://www.chrismatthias.com/demos/swf-fallback-ad-rotator
    After your initial setup of downloading the javascripts and referencing them in your page or template, the hardest thing about creating new ad rotator items with fallback is getting the ID of the ad rotator item from the URL in steps 12-14, but it's the only way I know of to get the ID of the ad rotator item. I can't find it in the BC Admin anywhere.

  • Reconnectin Media only works for one file at a time...

    Hi,
    After having many times relinked hundreds of off-line media files in one go, FCP now doesn't want to reconnect more than one file at a time. Although all other files are in the relative path, it seems as if I have to relink 1200 files one by one...
    I've found another thread in here, unfortunately closed, but wonder if that bug hasn't been fixed yet. Does anybody know a solution for this?
    Best regards and thanks for your support,
    Thomas

    AND... don't forget that "relative path ALSO refers to the perhaps many bins you have inside FCP. So it's possible to connect everything in a particular bin, as long as all those files are in the same folder on your drives, whether it be capture scratch, or another folder of imported material. some people I know like to put EVERYTHING in the capture scratch folder for that reason. I personally don't, but I've got a system that works for me.
    EDIT: I had a mentor once, many years ago, who suggested strongly that you ought to leave the cutting room every day set in such a way as ANYONE could walk in the next day and pick up right where you left off, just in case you got run over by a car. And dang it, that's just what happened to me. Ralph, you doomed me!
    Now, while he was talking film, the same rules apply. Best not to have files floating all over the place, where you've got to go searching for them.
    Whether there is a bug with a specific version, I have no idea.
    Message was edited by: Jim Cookman

  • File.execute() not working for bat file

    Dear all,
    The purpose of my function copyToWinClipboard (text) is to get a string directly into the Windows Clipboard. The purpose is to allow the user of my project just to paste into the open-dialog of the application EndNote. I’m not certain whether the FM clipboard (supported by the copy/cut/paste methods for Doc) really fills into the Windows Clipboard also.
    In the PhotoShop script forum I found the idea how to do this.
    #target framemaker
    // note the blank in the path
    copyToWinClipboard ("E:\\_DDDprojects\\FM+EN escript\\FM-11-testfiles\\BibFM-collected.rtf");
    function copyToWinClipboard (text) {
      var theCmd, clipFile = new File(Folder.temp + "\\ClipBoardW.bat");
      clipFile.open('w');
    //  theCmd = "echo \"" + text + "\" | clip"; // this doesn’t help either
      theCmd = "echo " + text + " | clip";
      clipFile.writeln (theCmd);
      clipFile.close ();
      clipFile.execute ();
    Running this script provides a short flicker (the command prompt), but the clipboard does not contain the expected string. However, when double clicking on the generated I:\!_temp\ClipBoardW.bat the clipboard is filled correctly.
    IMHO the execute method does not work correctly for bat files. In another area of my project-script i run an exe file with this method correctly.

    Hi Klaus,
    sorry for my late response.
    execute definitely works witch batch-files
    Here's a "batch" - example you can test.
    There are two methods to prevent window from closing:
    "|more" - kind of pagebreak
    "pause"
    var oTemp = app.UserSettingsDir + "\\tmp";
        var MyDosCommand = "ipconfig.exe /a|more";
        var MyPath = new Folder (oTemp);
        if (!oTemp.exists)
            var MyPath = new Folder (oTemp);
            var lFehler = MyPath.create();
        oTemp = oTemp + "\\" +"nw.bat";
        var MyFile = new File (oTemp);
             MyFile.open ('w');
               if (MyFile.error > "")
                    alert("ERROR");
            MyFile.writeln(MyDosCommand);
            MyFile.writeln("pause");
            MyFile.close();
            MyFile.execute();

  • "Open With"  CS3 not working for JPEG file

    Operating system is XP. I am trying to get CS3 to automatically open all JPEG files when I double click on them in windows explorer.
    I open windows explorer, right click on the image that I want to open, then click "open with" ....
    ...at this point CS3 is not one of the choices on the "open with" menu so I already smell a problem ....
    ..... so I click "choose program" and navigate to the adobe photoshop cs3 folder and point to photoshop.exe, then click the "always use the selected program" box, click open, and bada-boom, bada-bing, the image opens in photoshop CS3, right? WRONG.
    The image opens in the Quicktime Picture Viewer program and NOT IN PHOTOSHOP CS3.
    I feel that I have entered the Twilight Zone, otherwise known as The Adobe Messed Up Someting In The Registry Upon CS3 Install Zone. Does anyone have any hints on how to get PS CS3 working as the default program for JPEGs when I double click them from explorer on my XP computer?
    Thanks,
    Mark

    After a long search I found the answer:
    To associate all jpeg files with Photoshop CS3 so that they will open into CS3 when double clicked:
    Click Start, Run and type in: Control Folders.
    Click the file Types Tab.
    Wait for the list of file types to populate.
    Single click on the jpeg file type.
    Click the Advanced button.
    Highlight open and click the edit button.
    Browse to the location of photoshop.exe in the CS3 folder.
    A few OK's and you are done.
    AND ANOTHER THING .........
    After the change above was made, jpg files would open directly to photoshop cs3 when doubleclicked, but the maintained the same goofy quicktime pictureviewer icon when viewed in windows explorer. To change the icon for jpeg files displayed in all folders to the photoshop icon, do this:
    Start / My Computer
    Click Tools at the top of the screen.
    Click folder options .... then the file types tab
    Click on jpeg in the list and click the advanced button
    Click change icon and browse to the photoshop.exe for CS3
    A list of ocon choices will appear .... I chose the second row first icon
    A couple of OKs and you are done

  • Performing a mass rename on originals to get rid of backslashes in file names. Worked for most files but failed for some with OSSStatus -43. Can't find any info on error -43. Any ideas?

    I'm moving all my managed files to be referenced so I can access from both Aperture and lightroom. Needed to do a rename on 16,000 files to get rid of backslashes in the file names. Most of the time it worked but for 1093 files it gave OSSStatus -43. I've tried googling the error and got nothing. Any ideas where to begin looking?
    Thanks
    Jim

    How are you renaming the files? In the "File > Relocate original file" dialog panel? Are you using a custom name format?
    Have you checked in Aperture, if the originals, that are giving you the error message, are still inside the Aperture library?

  • I'm using the latest version of Firefox V29.0.1 Firefox cache settings no longer working for SWF files. can you help on

    Firefox caching on SWF files (Adobe Flash files) are not caching at browser level. But the same SWF Files are caching at other browsers like Google Chrome and IE.
    But when i see the about:cache service information, I can see SWF Files are there in the disk cache device. When ever i hit the same page, the SWF files are downloaded from the server not from the browser, but the fetch count for that SWF file will get increase in disk cache device. So it's taking time to load the SWF files every time when i hit the page.
    I'm requesting your help on this SWF File caching.

    <i>Moderator Comment<br>
    (Duplicate thread closed. Continue at [/questions/1000178]) -m) </i>

  • Color checker profile (in lightroom) only work for JPEG file?

    I followed all tutorials for color checker-lightroom and succeeded to sync my JPEG images into the camera profile I want.
    However, these are JPEG images from the camera. I want to work with raw file or at least PSD file.
    So my retouch pipeline was:
    - opened my raw file
    - save it as PSD
    - back to lightroom and open it there
    - and intended to sync this PSD file image with the camera profile
    But this is impossible to do, because suddenly all the camera profile  options (the ones we generated via color checker passport and the  default adobe profile) are dissapeared. The only option of camera  profile now is "embeded".
    That's it. So does it mean that I have to convert my raw file into JPEG first ?
    If yes, it's very unpractical and I can loose a lot of data bcause I  thought saving it to PSD or TIF keep the image data better than into  JPEG.
    Confused..
    Thanks for your point of views.

    In LR Preferences / External Editing you can control things about the LR-to-PS transfer:  the file format (PSD/TIFF), the color profile (sRGB, AdobeRGB, ProPhotoRGB), and the bit-depth (8 vs 16). 
    My Edit-in-Photoshop is set to use PSD, ProPhotoRGB, 16-bit.  I have chosen this because it gives me a large colorspace, with millions of distinct colors and a file-format that can contain smart-layers and other Photoshop-specific things.  LR, itself, is using a color-sapce as large as ProPhotoRGB and I don’t want to lose colors just because I’m editing in Photoshop, at least not until I’ve finished my adjustments in PS.
    A large colorspace with millions of colors gives more freedom for extreme adjustments before color banding (posterization) or color-shifting (channel clipping) at the bright end of the histogram.  The downside is that before I can save my photo as JPG for general viewing is that I need to set PS / Edit / Convert Profile to sRGB and PS / Image / Mode to 8-bit.
    It sounds like you are saving your photos as 8-bit ProProtoRGB not realizing you also need to convert to sRGB as your color profile.  For browsers and operating-systems that don’t do color-management correctly, which is most browsers and Windows-halfway, your ProPhotoRGB color numbers in the JPG are being interpreted as sRGB which makes them much duller and less saturated.   It may be that you have your External Editing set to 8-bits, which is not a good idea if you are using ProPhotoRGB as your colorspace, so set it to 16-bit.

  • Encode Video Files not working for avi files

    Hi,
    I've been trying to convert some .avi files to apple format using Lion's native 'Encode video files' function however keep getting a 'avconvert: source file not found for source file://fileparthhere avconvert: failed to create an export session. Check setup
    I can't work out why as this has worked before in Lion and works fine for other video formats. The only thing I've done is remove Final Cut Express HD and can't add it again as I don't own it anymore
    Suggestions? Is there a encoder to make this work or should it work anyway?
    Thanks

    If you click Yes the project file will be updated when you save it. That has nothing to do with the media.
    Are the Lesson and Media folders still in the Book Files folder (or whatever it's called)?
    Select one of the clips in the browser and use Edit>Item Properties. One of the first lines is Source. That gives you the file path for where your media is supposed to be located. What does it say? If nothing is there, use the File>Reconnect function and point the application to where the media is located.

  • Quick look not working for office files from mail

    I installed the new Microsoft Powerpoint on my ipad to check it out.  I didn't really like it so I uninstalled it.  Now when I am in mail and try to view a Powerpoint presention (or any other office file), quick look opens with just the name and size of the file rather than letting me view the file.  I am assuming installing Powerpoint somehow disabled Quick View for those files.  How do I fix this?  I really need to be able to read office files from Mail on my ipad!!

    It sounds like you may have 2 different programs that support quicklook differently. I suspect the .doc files are different formats that are using one or the other application.
    A quick test - select a file with the full preview. Get info on it in the Finder (File > Get Info) see what application it is set to open with by default. I suspect this will be TextEdit or MS Word. Compare this to a file that has no preview in quicklook. Change over the default application to the other application and see if the preview appears.
    My understanding is that the software has to be aware of quick look to parse the document and create the preview. It could be that one of the softwares needs an update, or is too old to support quicklook.
    you should be able to see the version number by opening the application and using the About menu under the Application menu. Post them here if the above doesn't work.
    You may also compare the 'Kind' in the info dialog, it could be that they are slightly different formats. Opening and saving may generate the previews (keep the originals if you do this!)

  • QuickLook not working for SVG files

    Hi,
    I get a blank white rectangle when I QuickLook SVG files. Is it working for anyone else?
    I'm testing with this file, which renders correctly in Safari, and shows a preview in Finder. I'm running OS X 10.10.2.
    qlmanage -d 1 -p SVG_logo.svg says that it's using the Web.qlgenerator.

    Apple closed my radar as a duplicate of #19639311.
    A quick google search revealed that this same bug is affecting html files as well.
    http://apple.stackexchange.com/questions/169948/updating-to-os-x-10-10-2-broke-q uick-look-previews-for-html-files
    10.10.2 quick look broken for HTML files

Maybe you are looking for

  • Canon MP450 Printer will not print after OS X 10.4.9 Upgrade

    After installing the software update, I'm unable to print. I went to download the lastest driver from Canon and installed it but I'm still having the same problem. Does anyone know how to revert back to OS X 10.4.8, without having to reinstall from t

  • Movies fail to display

    I have just realized I have an issue with my MBPro and iTunes. Music album art is fine, but with Movies and TV shows almost all are missing their cover art place holder images. Many of these were purchased from the iTunes store. These poster images a

  • How do I install an APP from ITunes to my IPhone?

    how do I install an APP from ITunes to my IPhone?

  • RunDLL error

    I'm using Windows 7 Ultimate, 64-bit, and I'm having problem with RunDLL error, every time I start my computer there is small window with notification that specified module could not be found, Appdatta/Roaming/newnext.me/nengine.dll  How can I solve

  • Better than dust n scratches

    Hello, can you please give me a hint on how to get rif of dust that is visible when making very high quality scans? Iam aware of the "dust n scratches" filter but im not very happy with its outcome results, it kinda degrades quality and yes i know on