IOS frame work for .issue file

Has adobe released any framework that can be used on iOS that can render .issue (folio) file that's created in DPS?
If not, what are my other options to integrate .issue publication within my native app?

.folio is not an open file format. you cannot build your own viewer.
—Johannes
(mobil gesendet)
Am 31.08.2011 01:57 schrieb "haneul512" <[email protected]>:
>
Has adobe released any framework that can be used on iOS that can render
.issue (folio) file that's created in DPS?
If not, what are my other options to integrate .issue publication within
my native app?
>

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

  • Is there any Documentation frame work for OAF development

    hi
    Is there any Documentation frame work for OAF development like AIM Documentation for RICE components ?
    Hence , it is very clear that, MD50 and MD70 template is not for the OAF java development.
    Is there any need to document the oaf development, hence it is using MVC architecture and all the components of the OAF development is very transparent.
    thanks

    You can extra sections if needed based on the customizations / extensions / personalizations.
    Cheers
    AJ

  • 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

  • How to find present app in ios 6 work for ios 7?

    if i upgrade to ios 7,  will all of my present applications working in ios6 can be used in ios7? if yes or no how to find whether an application work for ios 7 or not

    I can only say that any, other than an Apple Numbers Application, will not read a Numbers file created on my MBP. I have read that some are having difficulties with numbers files when using the IOS v7 Numbers app.

  • 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 in "iBooks" button has stopped working (for PDF files)..plz help!!

    The "open in iBooks" prompt was working just fine until last night..but when I tried the same today on a PDF file (as usual..) ..it did not work:(

    That issue can be caused by an extension that isn't working properly.
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • "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?

  • 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!)

Maybe you are looking for

  • How to access TC from a Windows 7 PC off my home network?

    Can someone please tell me how to gain access to my personal home networked TC from my work provided Win 7 PC? I do not take my Mac into the office so can I get to crucial data stored on my TC from work? FTP client perhaps? Map a drive via IP address

  • TOC doesn't show in View Primary Layout

    OK, this has got to be some minor little thing I'm not doing. I created a project by importing a PDF and creating topics based on a given style. In the Project Manager pod (?), under Project Files, I have 6 files. Each of the 6 files appears to be on

  • Error in AS2 Adapter

    Hi All, I am sending files through AS2 Adapter but I see the status message as Could not deliver as2 message to partner: java.net.UnknownHostException: http # null. Can any one tell me what is causing this error ? Thanks Laks Edited by: lakshmi s on

  • Problem in creating PO

    Hi All, I was creating PO for customer.that time it showed plant is not avaiable because that I am unable to save PO. but everything is fine because I have already mentioned Delivering plant for material. Can you SAP Gurus please help me out Its urge

  • Web Service config problem

    Hello, I have configured a Web Service but I am stuck at the Url format. This should be the format: http://host:port/XISOAPAdapter/MessageServlet?channel=party:service:channel My problem is that I do not know the default port for Web Services and I d