Add / Save paragraph and characters styles in PDF

Hi all,
We recently did some tests with PDF to ePub export (different settings, different tools). What we saw is that none of the tools were able to respect paragraph and text styles. They just threw some text back to the screen (ePub Reader). This brought us to the philosophical discussion whether it is possible to export / add character and paragraph style information in a PDF, as we know it from e.g. Adobe InDesign (via the content stream, through metadata) so "a" tool can access that information to use it for exporting (properly) to ePub or another file format. So is there a PDF-standard or 'variant' (PDF/X, PDF/VT, PDF/A, ISO 32000 as such) that would make such a construction possible? And if so, would 'a' tool (e.g. PDF to ePub conversion tool) be able access that information to translate the style info etc. to another file format (e.g. a proper e-Pub file). BTW: we tried 'Create tagged PDF' out of Adobe InDesign, but that didn't help the outcome very much.
Thanks in advance!

Yes, it is quite possible and in fact Adobe InDesign will/can produced Tagged PDF that incorporates this information.
Of course, that means that tools needs to respect it when they read/convert the PDF.  to my knowledge, NONE of the 3rd party PDF conversion tools support PDF tags/structure ☹.

Similar Messages

  • Unable to save paragraph and character styles

    I noticed an issue popping up for me in CS6 yesterday. I thought it was originally because of Fireworks saved PSD but an effort re-create the file from scratch in PS I'm coming across the same issue. In PS when I have a large amount of text layers and create a paragraph or character style, when I have ANY layer/group in my document locked I'm unable to save any paragraph or layer styles. Regardless of the layer or group being locked and regardless of what layer is highlighted I'm unable to save styles / any settings / name etc. The error I get for character styles for example is:
    "Could not complete the Modify Named Character Style command because a specified layer is locked."
    I did notice that in the Fireworks created PSD that without any layer even being locked I'd still get an error. It may be that this other document got some bad mojo from the Fireworks PSD. When creating a test doc and only creating a couple text layers and a bunch of empty groups and layers I'm unable to reproduce this. It appears to happen to me when I have a slew of text layers.
    Has anyone else experienced this and figured out a more solid workaround?

    If you want to add the styles to an already created document:
    1) Create you Character style containing only the character color
    2) Find and Replace, searching for text with red color and replace formatting with the new character style. (Don't type anything in the text part of the Find and Replace dialog)
    3) Create and apply your paragraph style to all. The text with the Character Style applied will stay red.

  • Paragraph and Character styles in Fireworks

    Hi
    i used fireworks for a while, when it was still macromedia product, glade to see all the improvments in CS5.
    i used Photoshop to create a very specific prototyping (including all CSS properties) of my website, but when i come to prototype the rest of the pages i totaly lost control, than i realize Photoshop is not the right tool for prototyping a whole website.
    fireworks shuld be the answer of my prays, as i could read in the articles, in CS5 you can set all properties for text and fireworks will export it as CSS file, than al you have to do is copy and paste code according to your CSS structure, that grate time saver.
    but one thing is really betters me, you cant do really good prototyping if you dont have the ability to create a paragraph and character styles (as you would with InDesign)
    can fireworks create styles in the level of Indesign? and if not, what is the right workflow between Fireworks and Indesign?
    Thanks
    S

    Window > Find and Replace will enable you to change all the instances of a text color in the entire document.
    You can create your own character styles by saving them in the Styles panel. To do this, click on an instance of a style you want to save, and then on the little down arrow at the top right of the Styles panel to open the New Style menu. Select which characteristics you want to save, then click the OK button to close the panel. To apply your custon style, select the object you want to apply it to, then click on your custom style.

  • Script needed to generate a list of paragraph and character styles from the Book Level

    Hello,
    I am using FrameMaker 11 in the Adobe Technical Communication Suite 4 and I need to find a script that will generate a list
    of paragraph and character styles from the book level.
    I am working with unstructured FrameMaker books, but will soon be looking at getting a conversion table developed
    that will allow me to migrate all my data over to Dita (1.1 for now).
    Any thoughts, ideas on this is very much appreciated.
    Regards,
    Jim

    Hi Jim,
    I think the problem you are having with getting a response is that you are asking someone to write a script for you. Normally, you would have to pay someone for this, as it is something that folks do for a living.
    Nonetheless, I had a few minutes to spare, so I worked up the following script that I believe does the job. It is very slow, clunky, and totally non-elegant, but I think it works. It leverages the book error log mechanism which is built in and accessible by scripts, but is spendidly unattractive. I hope this gives you a starting point. It could be made much more beautiful, of course, but such would take lots more time.
    Russ
    ListAllFormatsInBook()
    function ListAllFormatsInBook()
        var doc, path, fmt;
        var book = app.ActiveBook;
        if(!book.ObjectValid()) book = app.FirstOpenBook;
        if(!book.ObjectValid())
            alert("No book window is active. Cannot continue.");
            return;
        CallErrorLog(book, 0, 0, "-----------------------------------------------------------");
        CallErrorLog(book, 0, 0, "** Book format report for:");
        CallErrorLog(book, 0, 0, book.Name);
        var comp = book.FirstComponentInBook;
        while(comp.ObjectValid())
            path = comp.Name;
            doc = SimpleOpen (path, false);
            if(doc.ObjectValid())
                CallErrorLog(book, 0, 0, "-----------------------------------------------------------");
                CallErrorLog(book, 0, 0, "-----------------------------------------------------------");
                CallErrorLog(book, doc, 0, "");
                CallErrorLog(book, 0, 0, "-----------------------------------------------------------");
                CallErrorLog(book, 0, 0, "-----------------------------------------------------------");
                CallErrorLog(book, 0, 0, "Paragraph formats:");
                fmt = doc.FirstPgfFmtInDoc;
                while(fmt.ObjectValid())
                    CallErrorLog(book, 0, 0, "  - " + fmt.Name);
                    fmt = fmt.NextPgfFmtInDoc;
                CallErrorLog(book, 0, 0, "-----------------------------------------------------------");
                CallErrorLog(book, 0, 0, "Character formats:");
                fmt = doc.FirstCharFmtInDoc;
                while(fmt.ObjectValid())
                    CallErrorLog(book, 0, 0, "  - " + fmt.Name);
                    fmt = fmt.NextCharFmtInDoc;
            else
                CallErrorLog(book, 0, 0, "-----------------------------------------------------------");
                CallErrorLog(book, 0, 0, "!!!  Could not open: " + comp.Name + " !!!");
                CallErrorLog(book, 0, 0, "-----------------------------------------------------------");
            comp = comp.NextComponentInBook;
    function CallErrorLog(book, doc, object, text)
        var arg;
        arg = "log ";
        if(book == null || book == 0 || !book.ObjectValid())
            arg += "-b=0 ";
        else arg += "-b=" + book.id + " ";
        if(doc == null || doc == 0 || !doc.ObjectValid())
            arg += "-d=0 ";
        else arg += "-d=" + doc.id + " ";
        if(object == null || object == 0 || !object.ObjectValid())
            arg += "-O=0 ";
        else arg += "-O=" + object.id + " ";
        arg += "--" + text;
        CallClient("BookErrorLog", arg);

  • [JS InDesign CS3] Style groups, begone! (or: How do I take paragraph and character styles out of style groups?)

    Sorry for this question (and my terrible English, by the way), I'm a javascript noob and I know when I've reached my limits.
    Well, I'm trying to take a set of paragraph and character styles out of the style groups they are placed in, in hundreds of InDesign documents (that cannot be treated as a book). As far as I've tried (thanks to the invaluable help of previous posts in this forum) I've been able to move a style into a group and change it's position inside the group, inside the root level or even between groups. But it doesn't matter how I try, I don't know which move reference should I try in case I want to take every style out of their style group and place them after their original group folder, at the [Root] style level .
    I have tried:
    var doc=app.activeDocument;
    var pGroups=doc.paragraphStyleGroups;
    for (i=pGroups.length-1; i>=0; i--){
         var pStylesInGroup=pGroups[i].paragraphStyles;
         for (j=pStylesInGroup.length-1; j>=0; j--){
    // Here I am, trying to move a style outside the folder that contains it, and failing miserably.
              pStylesInGroup[j].move (LocationOptions.after, pGroups[i]);
    It didn't work, the script sent an invalid parameter value in the reference field, so I cant use the group folder itself as reference.
    Tried other (obviously wrong) solutions, like use the first available style as reference. Therefore, my second script was
    var doc=app.activeDocument;
    var pStyles=doc.allParagraphStyles;
    var pGroups=doc.paragraphStyleGroups;
    for (i=pGroups.length-1; i>=0; i--){
         var pStylesInGroup=pGroups[i].paragraphStyles;
         for (j=pStylesInGroup.length-1; j>=0; j--){
    // Now I try placing the styles after the [Basic Paragraph], that is, the second paragraph style in the document style list
              pStylesInGroup[j].move (LocationOptions.after, pStyles[1]);
    It didn't work either, another invalid parameter in the reference field. Similar results with my other attempts (I even tried "[Root]" as literal with similar luck).
    So, my question is: Which command (or script, in case my whole approach is utterly wrong) should I use to achieve my goal?
    Thanks in advance to whoever decides to spend more than a minute thinking about my humble worries, and my apologies for shamelessly ripping some of your lines of code for my purposes.

    Okay, tried a few things and got really weird results!
    1. You can move a style around inside its group.
    2. You can move a style out of a group "to" another, but it will appear 'inside' that style. I got my test style as a sub-item of [Basic Paragraph], using index #1. With index #0 ([No Paragraph Style]) InDesign crashed.
    3. You can duplicate the style, but then you get a copy in the same group. Still no luck.
    4. Finally! What is the parent of a paragraph style?
    Document | Application | ParagraphStyleGroup
    "Application" is easy -- that's when you make a style global. So what's the difference between 'Document' and 'paragraphStyleGroup'? Simple -- well, when you finally get it...
    pStylesInGroup[j].move (LocationOptions.AT_END, doc);
    moves the style out of the group and to the end of the list in the document. I don't think it's possible to move it directly to a specific position into the main style list -- you first have to move it out of a group, then move it around in its own list.
    Fortunately, it returns its new position as a ParagraphStyle again, so if needed, you can use
    newStyle = pStylesInGroup[j].move (LocationOptions.AT_END, doc);
    newStyle.move (LocationOptions.AFTER, pStyles[1]);
    -- I didn't really try that out, but it should work.

  • Unused paragraphs and character styles in the catalogs?

    How could I delete automatically the unused paragraphs and character styles from the catalogs?

    David,
    I downloaded it and placed the file in my plug-in folder, but it doesn't show up under File>Utilities. Is there anything else I should do?
    I am running FM9 with all updates.
    Thanks,
    ls

  • Changing fonts in paragraph and character styles (AppleScript, Grep or JavaScript)

    I have been trying the javascripts in this discussion:
    Adobe Community: Specified font need to be changed in all paragraph styles
    but I cannot get any of them to work. I have been putting them into CodeRunner then saving them into the InDesign Scripts folder but I have specific error messages for the ones I have tried. I am wondering if they actually solve my problem anyway, which is:
    Helvetica Neue LT seems to add another LT to its description thus: "Helvetica Neue LT LT 45" instead of just "Helvetica Neue LT 45".  InDesign does not recognise this and thus when I open each file I get a list of Fonts to be found. I have dozens of styles (Paragraph and Character) in dozens of files and have changed some of the styles manually - a laborious task. The styles must be changed otherwise I am still stuck with Helvetica Neue LT lurking away, waiting for the style to be applied. So I cannot use "Find font..." in the Type Menu.
    I am changing to "Helvetica Neue LT Std" with many faces: 35 Thin, 45 Light, 46 Light Italic, 65 Medium, 75 Bold...
    from the similar faces in Helvetica Neue LT. These currently display in the Styles Menu as [Helvetica Neue LT] [LT 45 Light]
    Sometimes when I change to Helvetica Neue LT Std manually the face sticks (even though I have changed it) so I have "Helvetical Neue Ltd Std [LT 45 Light]" and I have to go through the styles again and again. This is very tedious.
    So if anyone can help me with this problem I'd be eternally grateful.
    Using InDesign CS6, MacMini 2012, Mountain Lion (though I had the same problem in Lion)

    Hi James. Just a few threads down the list there is this: http://forums.adobe.com/thread/1198632?tstart=0
    Even the name of the thread is similar to yours.
    But first, you should do a bit of housecleaning in your font library. From your description it sound like a big mess.
    Do you use any font management tools? Most of the times they do more harm than good (but i am aware that it's a necessary evil for the most part).
    The fonts you are trying to use are in the font library or in the indesign document's folder?
    While Mac is a lot better than Windows in managing multiple fonts/font versions, it's also a lot more "fragile" if something goes wrong with a font.
    Try cleaning the font cache first:
    sudo atsutil databases -remove
    the restart the font server
    sudo atsutil server -shutdown
    sudo atsutil server -ping
    have a look here also:
    http://forums.adobe.com/thread/1201617?tstart=0

  • Problem with paragraph and character style

    Recently I have noticed that when I alter a paragraph or character style that the text won't change to the changes I performed.
    It doesn't matter whether it's just the preview mode or when I clicked "OK"- no changes will be performed whether it be typeface or size.
    Does anyone know what can be wrong?

    My bet is that you haven't got a clear understanding of the difference between character styles and paragraph styles, and that you are using the former incorrectly.
    Paragraph styles include basic font formatting information that is applied to all text in a paragraph UNLESS that text also has either a character style or a local format override (select the text and change something) applied. The formatting heirarchy works with paragraph style at the bottom, character styles trump formatting applied in the paragraph style, and local formatting trums everything else.
    Select the text in question. Look in the the Paragraph Style field in the Control panel, or open the Paragraph Styles panel to see what is applied. If there is a plus sign next to the name local formatting overrides have been applied (hold the Alt or Opt key and click the style name to remove them), but character styles are not considered overrides, so if there is no plus sign, check the Character Style field in the control panel or ope the Character Styles panel to check if any character styles are also applied.

  • Map Paragraph and Character Styles

    Hello all,
    I am trying to import Word documents based on the Word Import Preset documents.
    Here's an example smp document
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <Sangam-Import-Preset reader-type="Word/RTF">
        <!--Style mappings take the form of key-value pairs consisting of:
    style-name: Source document's style name, for example RTF style name.
    This attribute is mandatory and the value cannot be an empty string.
    mapped-to: Target InDesign document's style name.
    This attribute is mandatory but can take an empty string as its value.-->
        <Style-Mappings>
            <Paragraph-Style-Mappings>
                <Mapping style-name="Body Text" mapped-to="Body 2" />
                <Mapping style-name="Heading 1" mapped-to="Heading 1" />
                <Mapping style-name="Normal" mapped-to="Normal 2" />
            </Paragraph-Style-Mappings>
            <Character-Style-Mappings>
                <Mapping style-name="Hyperlink" mapped-to="Hyp" />
            </Character-Style-Mappings>
        </Style-Mappings>
        <!--Each Import Preference has two mandatory attributes:
    name: Name of the preference (cannot be an empty string).
    value:Value of the preference (cannot be an empty string).
    For boolean preferences, type 0 for false and 1 for true.-->
        <Import-Preferences>
            <Preference name="import-toc" value="1" />
            <Preference name="import-index" value="1" />
            <Preference name="import-hyperlink" value="1" />
            <Preference name="import-tables" value="1" />
            <Preference name="import-footnotes" value="1" />
            <Preference name="import-endnotes" value="1" />
            <Preference name="import-track-changes" value="1" />
            <Preference name="import-preserve-graphics" value="1" />
            <Preference name="spacing" value="1" />
            <Preference name="break-before-para" value="0" />
            <Preference name="use-typographers-quotes" value="1" />
            <Preference name="convert-tables-to" value="0" />
            <Preference name="remove-formatting" value="0" />
            <Preference name="dont-strip-char-formatting" value="0" />
            <Preference name="bring-unused-styles" value="0" />
            <Preference name="para-style-clash-option" value="0" />
            <Preference name="char-style-clash-option" value="0" />
            <Preference name="use-style-mappings" value="1" />
            <Preference name="convert-BN-to-text" value="0" />
        </Import-Preferences>
    </Sangam-Import-Preset>
    Everything should be easy to set in the WordRTFImportPreference except for the mappings.
    I tried using app.activeDocument. paraStyleMappings.add("Normal","Normal 2",   MapType.STYLE_MAPPING_RULE) after setting app.generalPreferences.mapStylesOnContentPlace = true
    Doesn't work . I suspect the mappings are only good for XML placements and not Word ones, in which case I guess the way to do it would be to us changeText() on the styles.  This is not a great solution as the changes would be done after placement unlike when using the UI before the placement.
    Has anyone done this or got any ideas?
    Regards,
    Trevor

    Paragraph Tools from SiliconPrairieSoftware.com will do it and it's cheap.
    Note that you may not want to convert H1 to Heading1, but convert in the
    opposite direction. A lot of expert Framers use the keyboard to choose
    paragraph tags instead of the mouse-- it's faster-- and have set up short
    names for paragraph formats to make that go even faster. (Someone who uses
    the technique can explain it better than I.) If you have members of your
    team who use this method, changing to the longer tagname may slow them down
    and bring down a hail of grumbles.

  • Safari Freezes in Yosemite on File/Save As and File/Export As pdf

    Since I installed Yosemite a few days ago I can no longer save a webpage to a file or export to a pdf.  All I get is the spinning beach ball on top of a finder window and need force quit safari.
    The same problem occurs in Safe Mode.  The problem does not exist when I log-in as Guest.  I tried deleting the safari cache and removing extensions and plug-ins.
    The problem appears to be linked some how to my user account.
    Here are the system log messages:
    4/25/15 6:34:34.944 PM pkd[274]: enabling pid=1318 for plug-in com.getdropbox.dropbox.garcon(1.10) 5368377E-1311-4626-A27F-7C5019BE0855 /Applications/Dropbox.app/Contents/PlugIns/garcon.appex
    4/25/15 6:34:34.946 PM Safari[1318]: assertion failed: 14D136: libxpc.dylib + 62495 [D35D0DB2-D7BD-3BE4-8378-062BFE545E1D]: 0x89
    4/25/15 6:34:35.028 PM taskgated[102]: no application identifier provided, can't use provisioning profiles [pid=1352]
    4/25/15 6:34:35.239 PM garcon[1352]: Failed to connect (colorGridView) outlet from (NSApplication) to (NSColorPickerGridView): missing setter or instance variable
    4/25/15 6:34:35.240 PM garcon[1352]: Failed to connect (view) outlet from (NSApplication) to (NSColorPickerGridView): missing setter or instance variable
    4/25/15 6:34:35.000 PM kernel[0]: Sandbox: appleeventsd(49) deny file-read-metadata /Library
    4/25/15 6:34:35.000 PM kernel[0]: Sandbox: appleeventsd(49) deny file-read-metadata /Library
    4/25/15 6:34:35.000 PM kernel[0]: Sandbox: appleeventsd(49) deny file-read-metadata /Library
    4/25/15 6:34:35.000 PM kernel[0]: Sandbox: appleeventsd(49) deny file-read-metadata /Library
    4/25/15 6:34:35.000 PM kernel[0]: Sandbox: appleeventsd(49) deny file-read-metadata /Library
    4/25/15 6:34:35.000 PM kernel[0]: Sandbox: appleeventsd(49) deny file-read-metadata /Library
    4/25/15 6:34:35.000 PM kernel[0]: Sandbox: appleeventsd(49) deny file-read-metadata /Library
    4/25/15 6:34:35.000 PM kernel[0]: Sandbox: appleeventsd(49) deny file-read-metadata /Library
    4/25/15 6:34:35.000 PM kernel[0]: Sandbox: appleeventsd(49) deny file-read-metadata /Library
    4/25/15 6:34:35.000 PM kernel[0]: Sandbox: appleeventsd(49) deny file-read-metadata /Library
    4/25/15 6:34:35.000 PM kernel[0]: Sandbox: appleeventsd(49) deny file-read-metadata /Library
    4/25/15 6:34:35.000 PM kernel[0]: Sandbox: appleeventsd(49) deny file-read-metadata /Library
    4/25/15 6:34:35.000 PM kernel[0]: Sandbox: appleeventsd(49) deny file-read-metadata /Library
    4/25/15 6:34:35.000 PM kernel[0]: Sandbox: appleeventsd(49) deny mach-lookup com.apple.ocspd
    4/25/15 6:34:35.000 PM kernel[0]: Sandbox: appleeventsd(49) deny mach-lookup com.apple.ocspd
    4/25/15 6:34:35.000 PM kernel[0]: Sandbox: appleeventsd(49) deny mach-lookup com.apple.ocspd
    4/25/15 6:34:35.273 PM sandboxd[287]: ([49]) appleeventsd(49) deny file-read-metadata /Library
    4/25/15 6:34:35.000 PM kernel[0]: Sandbox: appleeventsd(49) deny mach-lookup com.apple.ocspd
    4/25/15 6:34:35.000 PM kernel[0]: Sandbox: appleeventsd(49) deny mach-lookup com.apple.ocspd
    4/25/15 6:34:35.000 PM kernel[0]: Sandbox: appleeventsd(49) deny mach-lookup com.apple.ocspd
    4/25/15 6:34:35.000 PM kernel[0]: Sandbox: appleeventsd(49) deny mach-lookup com.apple.ocspd
    4/25/15 6:34:35.295 PM sandboxd[287]: ([49]) appleeventsd(49) deny file-read-metadata /Library
    4/25/15 6:34:35.316 PM sandboxd[287]: ([49]) appleeventsd(49) deny file-read-metadata /Library
    4/25/15 6:34:35.347 PM sandboxd[287]: ([49]) appleeventsd(49) deny file-read-metadata /Library
    4/25/15 6:34:35.373 PM sandboxd[287]: ([49]) appleeventsd(49) deny file-read-metadata /Library
    4/25/15 6:34:35.400 PM sandboxd[287]: ([49]) appleeventsd(49) deny file-read-metadata /Library
    4/25/15 6:34:35.422 PM sandboxd[287]: ([49]) appleeventsd(49) deny file-read-metadata /Library
    4/25/15 6:34:35.429 PM sandboxd[287]: ([49]) appleeventsd(49) deny file-read-metadata /Library
    4/25/15 6:34:35.477 PM garcon[1352]: Initialized badges.
    4/25/15 6:34:35.477 PM garcon[1352]: Connecting to Dropbox on 'com.getdropbox.dropbox.garcon.cafe_501'
    4/25/15 6:34:35.481 PM garcon[1352]: Connected to Dropbox on 'com.getdropbox.dropbox.garcon.cafe_501'.
    4/25/15 6:34:35.482 PM garcon[1352]: Invalidating watch set.
    4/25/15 6:34:35.486 PM garcon[1352]: Watch set is now: {(
        file:///Users/Stu/Dropbox/
    4/25/15 6:34:51.027 PM CoreServicesUIAgent[352]: unexpected message <OS_xpc_error: <error: 0x10f019c60> { count = 1, contents =
      "XPCErrorDescription" => <string: 0x10f019f70> { length = 18, contents = "Connection invalid" }
    }>
    4/25/15 6:34:51.036 PM garcon[1352]: host connection <NSXPCConnection: 0x60800011ccb0> connection from pid 1318 invalidated
    4/25/15 6:34:51.038 PM com.apple.xpc.launchd[1]: (com.apple.WebKit.Networking.EEAAD1AC-3824-490A-BB44-7D151535B0AA[1321]) Service exited with abnormal code: 1
    4/25/15 6:34:51.074 PM com.apple.xpc.launchd[1]: (com.apple.WebKit.WebContent.01B5D3C2-0BC0-4E32-880A-753A378711E0[1320]) Service exited with abnormal code: 1
    4/25/15 6:34:51.119 PM com.apple.xpc.launchd[1]: (com.apple.Safari.53708[1318]) Service exited due to signal: Terminated: 15
    4/25/15 6:34:51.416 PM UserNotificationCenter[1356]: *** WARNING: Method userSpaceScaleFactor in class NSWindow is deprecated on 10.7 and later. It should not be used in new applications. Use convertRectToBacking: instead.
    4/25/15 6:34:53.702 PM spindump[456]: Saved hang report for Safari version 8.0.5 (10600.5.17) to /Library/Logs/DiagnosticReports/Safari_2015-04-25-183453_Stuarts-MacBook-Pro.ha ng
    4/25/15 6:34:56.954 PM Problem Reporter[1360]: Failed to connect (_imageWell) outlet from (ProblemReportWindowController) to (NSImageView): missing setter or instance variable
    4/25/15 6:34:57.231 PM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    4/25/15 6:35:22.976 PM SubmitDiagInfo[457]: Submitted problem report file:///Library/Logs/DiagnosticReports/Safari_2015-04-25-183453_Stuarts-MacBook -Pro.hang
    Please help.
    Thanks,
    Stu

    Looking at the system log messages, I solved my own problem.
    Seeing Dropbox in the list a few times led me to conclude Dropbox was the problem.  When I pause synching on Dropbox, everything works perfectly.
    Stu

  • Showing Paragraph and Span styles in TLF

    Hi,
    Can we show Paragrpagh and Span styleNames applied to a TLF text ?
    Something like the image below shows the Style Names in the Red box:
    Thanks.

    TLF doesn't support that natively.  You'd have to add to TLF to build that.  I'd propose adding listeners to the TextFlow for editing and scrolling events and then synchronizing the alternate view of the data.
    Hope that helps,
    Richard

  • Add audio files and control play in pdf

    Hi, newbie here.  I have a set of large text documents in Word and corresponding mp3 audio files.  I am trying to create pdf's with the audio files embedded at specific points in the text.  I can put audio in and play it, but there is no controls for the audio.  I have seen a pdf file with a play-pause-stopbar that works, but cannot figure out how to do it.  Any and all help is greatly appreciated. Using Acrobat Pro7 (can upgrade if needed).  Thanks
    Just another thought, is there a small flash player that can be mbedded into a pdf?

    Thanks. I have upgraded and used the new conversion to Flash for the mp3 and
    it works well.  The look of the player isn't the greatest but it suits my
    needs.  Thanks again.

  • Add additional pages and remove pages in pdf form

    Hi all,
    I'm trying to achieve 2 things with my form:
    How can I remove the first blank page (its giving me a headache)
    How can I script the 'add page' button to automatically add unlimited additional pages (page 4 to be precise) to my form?
    My form is in the link below. I would appreciate your help.
    Thanks.
    http://www.4shared.com/document/ye12txZS/gavin.html

    Hi,
    If you select page1 and go to the Object > Pagination palette and change the Place from "Top of next page" to "Follow previous". The additional page will disappear.
    To add new instances of page3, you need to go to the Object > Binding palette and specify that that subform is to be repeated.
    Then in the click event of the add page button, you would have the following JavaScript (please note that "_" is shortand for instanceManager).
    _Page3.addInstance(true);
    Here is your form back.
    https://acrobat.com/#d=DIiQhLm9ERTV*PQjV-FH5Q
    Hope that helps,
    Niall

  • Why have my keyboard shortcuts in Paragraph and Character styles quit working? (indesign cs6)

    I can click on the style in the window, but the keyboard shortcut suddenly does nothing.

    Hi James. Just a few threads down the list there is this: http://forums.adobe.com/thread/1198632?tstart=0
    Even the name of the thread is similar to yours.
    But first, you should do a bit of housecleaning in your font library. From your description it sound like a big mess.
    Do you use any font management tools? Most of the times they do more harm than good (but i am aware that it's a necessary evil for the most part).
    The fonts you are trying to use are in the font library or in the indesign document's folder?
    While Mac is a lot better than Windows in managing multiple fonts/font versions, it's also a lot more "fragile" if something goes wrong with a font.
    Try cleaning the font cache first:
    sudo atsutil databases -remove
    the restart the font server
    sudo atsutil server -shutdown
    sudo atsutil server -ping
    have a look here also:
    http://forums.adobe.com/thread/1201617?tstart=0

  • How do i add images in the header and footer to a PDF using iText

    Hi ,
    I want to add images to the header and footer of every page while i am genrating a pdf i have created a separate class called EndPage which i am instanceiating its default constructor in another class 's button action method.
    The above code genrates a PDF for me however it genrates a file with file size zero bytes and does not open it following is my sample code
    //**********Any Help would be appreciated
    Thank You
    public class My_Class
    public String pdf_action()
    EndPage ep=new EndPage();
    return null;
    }//My_class Ends
    class EndPage extends PdfPageEventHelper
    * Demonstrates the use of PageEvents.
    * @param args no arguments needed
    public EndPage()
    try {
    com.lowagie.text.Document document = new Document(PageSize.A4, 50, 50, 70, 70);
    PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream("D://proposals/endpage.pdf"));
    writer.setPageEvent(new EndPage());
    document.open();
    String text = "Lots of text. ";
    for (int k = 0; k < 10; ++k)
    text += text;
    document.add(new Paragraph(text));
    document.close();
    catch (Exception de) {
    de.printStackTrace();
    public void onEndPage(PdfWriter writer, Document document) {
    try {
    Rectangle page = document.getPageSize();
    PdfPTable head = new PdfPTable(3);
    for (int k = 1; k <= 6; ++k)
    head.addCell("head " + k);
    head.setTotalWidth(page.width() - document.leftMargin() - document.rightMargin());
    head.writeSelectedRows(0, -1, document.leftMargin(), page.height() - document.topMargin() + head.getTotalHeight(),
    writer.getDirectContent());
    PdfPTable foot = new PdfPTable(3);
    for (int k = 1; k <= 6; ++k)
    foot.addCell("foot " + k);
    foot.setTotalWidth(page.width() - document.leftMargin() - document.rightMargin());
    foot.writeSelectedRows(0, -1, document.leftMargin(), document.bottomMargin(),
    writer.getDirectContent());
    catch (Exception e) {
    throw new ExceptionConverter(e);
    }

    Hi,
    Thanks for the quick response.
    The problem is that when I keep the logo as a watermark, the pdf is not adjusting itself to include the logo as header.
    But if I add a header text via Tools -> Headers and Footers, the pdf is adjusting itself so that the header text is at the beginning , not overlapping with the contents of pdf.
    But while using logo as watermark, some times overlapping of the pdf contents and logo is happening.
    Is there any way to add a logo in the Header and Footer via the option in Tools -> Headers and Footers
    Thanks,
    Vidhya

Maybe you are looking for

  • How do I edit a DVD on FCP 4.0?

    Hi...hope someone can help. I've ripped a TV show (with consent of the producers) onto my computer. How do I convert that folder (a dvd file where audio_ts and video_ts are seperate) into a file that I can import and edit on FCP 4.0? Thanks.

  • Deleting photos from disk via LR

    When deleting photos in LR and choosing 'delete from disk' to delete these too from the disk, these photos are only deleted from LT but not from disk. How can I solve this problem?

  • Can I extend the range with an Airport Extreme?

    Hi there, Is it possible to extend a wireless network's range with an Airport Extreme (just like you can do with an Airport Express)? Currently I have a Billion wireless modem/router but need to extend the range so I can use my PS3 in my bedroom. I w

  • Order cannot be a sender

    Hi all, I have a doubt. In reposting, an order can be a sender; where as in distribution an order can not be a sender. can any body explain me why this is so? Thanks in advance. Anantha Prakash.

  • Providing mail relay

    With apologies for possibly not finding the answer to this elsewhere, I'm looking for advice on setting up my server to be a relay for other people's. On other words... I specialise in selling to small businesses; they typically run their own mail se