InCopy Story double adornments

I know this probably belongs in the InCopy forum, but the InDesign Forum seems to get more traffic.
ID/IC CS6 (fully patched)
OS 10.6.8
I have recently upgraded to CS6 and a weird issue has come up.
When I export stories for InCopy, some of my files are getting both the regular "Story is available" icon AND a smaller icon behind it: the "Story checked out" icon.
This is not a case where there are two stories stacked on top of each other. There is only ONE text frame in the screen shot above. If I drag the frame, sometimes the "checked out" icon moves with the frame, sometimes it appears elsewhere on the page (not connected to a frame, just floating!)
I have tried clearing preferences, round-tripping the file through IDML, unlinking then re-exporting the InCopy files, but the double adornment remains.
The extra adornment remains (doesn't change icons) if I check the story out, or have someone else on the network check it out. The main adornment changes as expected, however.
I should note that these files are converted from CS5, not created natively in CS6. It doesn't happen with every file that I export, about 10%. If the double-adornment occurs at all, it occurs on all stories/frames in the document.
It doesn't seem to have any detrimental effects to the InCopy workflow, but it is very peculiar!

Hi there!
Story list files are common ... they are generated (as I recall) when a user renames a story in the Assignments panel (like renaming a layer or a paragraph style). This doesn't change the name of the linked ICML story, it's more of a "cosmetic" feature to more easily locate certain stories in the panel within ID and IC, especially when ID is auto-generating story names during export.  For example you might change a story's name in the Assignment panel from "05-AcmeLayoutABC-oneday" to "Headline".
There are other non-worrisome XML files that might be generated in the workflow, like if an InCopy user changes the order of stories in Story/Galley view by dragging their grey story bars up and down. Basically these files keep track of these sorts of changes so all users working on the project see the cosmetically-renamed stories in the panel/new order of stories in the Story/Galley view.
Nothing wrong with right-clicking to check out one at a time.
I've never heard of Story List files making stories invisible, but yes, you should be able to delete them without a problem. I would probably make sure no one has checked out any stories from the INDD file and that all stories are up to date, first, and then close the INDD file, before deleting them though.
AM

Similar Messages

  • Get selected InCopy story

    Hi
    How do I get a hold of the InCopy story (an UID) selected in the Assignment Panel ?
    Kind Regards
    Anne

    Hi Anne,<br /><br />I had a similar task when I needed to find selected datalink UIDs in the Links panel. Without error checking, the solution lookes like the following (you will definitely have to modify it):<br /><br />InterfacePtr<IPanelControlData> pPanel( Utils<IPalettePanelUtils>()->QueryPanelByWidgetID(kLinksPanelWidgetID) );<br /><br />//...<br />IControlView* pLView = pPanel->FindWidget(kLinksListWidgetID);<br />if (!pLView || !pLView->IsVisible())<br />     pLView = pPanel->FindWidget(kLinksListSmallWidgetID);<br /><br />//.... <br /><br />InterfacePtr<IListBoxController> pLBController(pLView, UseDefaultIID());<br />//.... <br /><br />K2Vector<int32> vSelection;<br />pLBController->GetSelected(vSelection);<br /><br />InterfacePtr< IListControlDataOf<IDataLink*> > pListData(pLView, UseDefaultIID());<br /><br />// now iterate through pListData using vSelection

  • Unlink InCopy story

    Hi everybody,
    Can anybody tell me how I can unlink an InCopy story.
    Thanks.

    Refer Deleting an assignment in sdk/docs/guides/solution.pdf, or sdksamples/codesnippets/SnpManipulateAssignment.cpp::DeleteAssignment.

  • Saving InCopy Story with Font and Style information...

    Dear All,
    Can anyone can shed any light on an InCopy story export problem I'm having?
    I've got two versions of a function in a shared library, one for CS4 and one for CS5, which is used for both InCopy and InDesign.
    The story export works okay and normally outputs the font and style information which is used by the story.
    I've just added code to include all font and style resources dependent on a system setting.
    The CS4 version works fine and I get a satisfying amount of file bloat if I turn the option on.
    The CS5 version works as expected in InDesign but not when it's called from InCopy.
    In fact if I turn the setting on in InCopy I get no font information at all, if I turn it off then I get the font info used by the story.
    The call to SetInCopyInterchangeExportOptions returns kNoError(nil), so I imagine it's worked...
    Is there anyway I can trace what's going on in the export in InCopy.
    Is this the right call to acheive my aim?
    Thanks in advance for any help forthcoming.
    Regards
    Caerwyn
    #if (CREATIVE_SUITE_VERSION == CS4)
    ErrorCode PrSnippetUtils::ExportInCopyStory( IPMStream *s , const UIDRef& storyUIDRef )
        ErrorCode    nResult = kFailure;
        Utils<IINXExportOptionsUtils> wsExportOptions;
        if ( !wsExportOptions )
            return kFailure;
        bool16 oldIncludeGraphicProxyData = wsExportOptions->GetOutputInCopyGraphicProxyData();
        bool16 oldIncludeAllResources = wsExportOptions->GetInCopyIncludeAllResources();
        InterfacePtr<IInCopyInterchangeExportOptions> storyExportOptions( storyUIDRef, UseDefaultIID() );
        if ( storyExportOptions )
            wsExportOptions->SetOutputInCopyGraphicProxyData( storyExportOptions->GetIncludeGraphicProxyData() );
            wsExportOptions->SetInCopyIncludeAllResources( SaveAllStoryResources() );
        INXOptions options = kINXExpanded;
        nResult = Utils<ISnippetExport>()->ExportInCopyInterchange( s, UIDList( storyUIDRef ), options );
        // restore export options
        wsExportOptions->SetOutputInCopyGraphicProxyData( oldIncludeGraphicProxyData );
        wsExportOptions->SetInCopyIncludeAllResources( oldIncludeAllResources );
        return nResult;
    #endif
    #if (CREATIVE_SUITE_VERSION == CS5)
    ErrorCode PrSnippetUtils::ExportInCopyStory( IPMStream *s , const UIDRef& storyUIDRef )
        InterfacePtr<IWorkspace> ws(PrIDContextUtils::GetExecutionContextSession()->QueryWorkspace());
        if ( !ws )
            return kFailure;
        InterfacePtr<IInCopyInterchangeExportOptions> wsExportOptions( ws, UseDefaultIID() );
        if ( !wsExportOptions )
            return kFailure;
        ErrorCode    nResult = kFailure;
        UIDRef    wsUIDRef = ::GetUIDRef( ws );
        bool16 oldIncludeProxies = wsExportOptions->GetIncludeGraphicProxyData();
        bool16 oldIncludeAllResources = wsExportOptions->GetIncludeAllResources();
        InterfacePtr<IInCopyInterchangeExportOptions> storyExportOptions( storyUIDRef, UseDefaultIID() );
        Utils<IInCopySharedUtils> iInCopySharedUtils;
        // set workspace export options
        if ( storyExportOptions && iInCopySharedUtils )
            bool16 bIncludeProxies = storyExportOptions->GetIncludeGraphicProxyData();
            bool16 bIncludeAllResources = SaveAllStoryResources();
            nResult = iInCopySharedUtils->SetInCopyInterchangeExportOptions( wsUIDRef,
                    kTrue, bIncludeProxies, kTrue, bIncludeAllResources );
        nResult = Utils<ISnippetExport>()->ExportInCopyInterchange( s, UIDList( storyUIDRef ) );
        // restore workspace export options
        if ( iInCopySharedUtils )
            iInCopySharedUtils->SetInCopyInterchangeExportOptions( wsUIDRef,
                    kTrue, oldIncludeProxies, kTrue, oldIncludeAllResources );
        return nResult;
    #endif

    That is a sign that your preference files are becoming corrupt. Something is wrong with your system if this is happening regularly.
    Bob

  • [CS3]  Custom Data Links for InCopy story

    Hi,
    I want to create custom data links for InCopy story.
    I am retrieving incopy story from the database and importing it on the document. I have created custom data link as shown in the samples but if I open the indesign document in InCopy I get message - no incopy story found - galley and story view are not avaiable.
    Also when I import InCopy file it is also added in Assignment Panel. I want to handle check-in/check-out on my own.
    Is there any special thing for creating InCopy Data Links ?
    Thanks in Advance.
    Anderson

    Hi Norio
    Thanks a lot for your help and your hints.
    Its my first time to solve a problem like this. And I have no idea what I have to do exactly. I mean I see the samples in the SDK, see the properties and so on. And I suppose I have to add my property to kINXScriptManagerBoss. But thats all at the moment.
    I don't know what I have to do exactly. I don't know what elements I have to add. I don't know how I can add a custom defined variable type as a property.
    I have a structure defined for my slugs:
    struct structTabFlowTableModelSlug
       int32 iUIDTableModel;   // ID des Tabellenmodells
       int32 iLinkPASHID;      // Entspricht der ID der Produktion LinkPASHID
       int32 iDtpTableID;     // Entspricht der ID der DTP Tabelle (Tabelle DtpTable)
      void reset() {
         iUIDTableModel = -1;
         iLinkPASHID = -1;
         iDtpTableID = -1;
    typedef structTabFlowTableModelSlug stTabFlowTableModelSlug;
    And I think I have to add this structure as a property. But does this work? How?
    In my plugin the slugs are added to a ITableModel interface. So I suppose I have to add the property to this scripting element. But I am not sure.
    Its a bit tricky for me to implement this.
    But anyway, thanks for your help.
    Regards
    Hans

  • Cannot exclude unused styles, fonts etc when exporting InCopy story

    My code:
      do
    //Find workspace
       InterfacePtr<IWorkspace> ws(GetExecutionContextSession()->QueryWorkspace());
       if(!ws)break;
    //Save old export options
       InterfacePtr<IInCopyInterchangeExportOptions> wsExportOptions(ws, UseDefaultIID());
       if(!wsExportOptions)break;
       wsUIDRef = ::GetUIDRef(ws);
       boldAllResources = wsExportOptions->GetIncludeAllResources();
       boldGraphicProxyData = wsExportOptions->GetIncludeGraphicProxyData();
    //Change only 'all resources' export option to indicate whether all resources or only those used by the exported story are to be included
       Utils<IInCopySharedUtils>()->SetInCopyInterchangeExportOptions(
                   wsUIDRef,
                   kTrue,
                   boldGraphicProxyData,
                   kTrue,
                   bnewAllResources);
       bSuccess = kTrue;
      }while(kFalse);
    //Export the story
      ErrorCode err = Utils<ISnippetExport>()->ExportInCopyInterchange(stream, uidList);
    Whatever the value of 'bnewAllResources' the file generated by 'ExportInCopyInterchange' contains ALL styles, fonts, swatches etc. I want ONLY those used by the story in uidList.
    I'm on Windows 7 with CS6 in InCopy.

    I have now discovered that if I change the export related options on the default workspace and then create a new document I get the desired reduction in xml when I export stories out of that new document. Is there a way to change the xml export options on an existing document?

  • Incopy changes not showing up in InDesign

    I have an InCopy story in which the editor made several edits and applied several style sheets; however, those changes are not showing up in the InDesign file. The InDesign file does not show that the story is "out of date." When I open the actual INCX file, the changes are in the file and if I unlink the story from InDesign, delete the text, then re-link the story, the changes now appear.
    We were able to fix this instance and did not loose any text; however, I just wondered if anyone else has had this happen and if there's a known cause for this.

    I think your understanding is correct - when double clicked it DOES open the appropriate InDesign file, and it DOES clear the "Package" icon in the assignments palette next to the assignment. But it DOES NOT show the modified incopy "incx" files as has been modified.
    Normally it would show it needing to be modified, in which case, like you said, you are prompted (well, there's not a dialog box at that time, but you see the yellow warning icon next to the "incx" file in the Links or Assignments palettes) to update the link(s).
    Again this is a hit or miss proposition. The designer and I worked on this for a few hours last week. My contention was that it had something to do with where she had the Exported InCopy "incx" files; where she created the assignment (clicking on the Change button in the New Assignment dialog); or where she put the "indp" package when it she received the modified edits. So we tinkered with changing these paths. We also switched from "Exporting Layer", which is our normal process to just Exporting an individual selected article. Using the "Exporting Layer" and keeping the assignment in the default path (with the InDesign file) seemed to work. But we didn't do enough of that scenario to prove it consistently worked. She will be doing that over the next few live jobs.
    But none of those really made sense to me as the culprit. I'm contemplating my next move for testing. Of course today with my local testing, I couldn't reproduce the problem. We're on Window's servers via SMB, maybe that's got something to do with it.
    ...Ron

  • Can you change a story or text frame's index? (re autonumbering)

    Does anyone know if there is a way to change the index of a text frame or story without changing the actual visual layout of an InDesign document? So far all I can come up with is to cut the frame and repaste it into the document. You can move a story within the index list of a document, but that visually cuts and pastes the story text.
    actDoc.stories.item(1).move(LocationOptions.BEFORE, actDoc.stories.item(0));
    I can't see any method to change the index of a text frame (other than cutting and repasting).
    I want to put together some tests. I have a bunch of questions. Each question is a single story in a single text frame in an InDesign document. The text frame is linked to an InCopy document. The first paragraph of the question has a "QuestionNumber" style but the para style has no numbering. I want to have only one version of each question (the InCopy story) but to put the questions into different tests in different orders with different numbering. What I do is to create an InDesign template for the tests that has a QuestionNumber para style that includes autonumbering with the "Continue Numbers across Stories" option checked. This works beautifully and the questions are numbered in the order in which the text frames (and stories) are (via a script) copied from the question document and pasted into the test paper document. When the same question/story/textframe is used in two tests it is numbered in the order in which it is pasted into each test paper (but the original stays the same because it has no numbering).
    The next step would be to be able to reorder the question numbers within the test paper (if you wanted to, say, swap questions 18 and 20). To do that you have to change the index of the story because the autonumbering across stories seems to depend on the index of the story.
    What seems to happen is that stories are indexed in the order in which they are pasted into a document, but text frames are indexed in the opposite order. If you paste a text frame with one story into a new document, it is textframe.item(0) and story.item(0). If you then paste a second one into the document it is story.item(1) but textframe.item(0). The first text frame becomes textframe.item(1). When you cut a text frame and repaste it, it is reindexed as if you were pasting it for the first time.
    The autonumbering also seems to be segregated by page. If you have questions 1 and 2 on page 1 and questions 3 and 4 on page 2, you can move around the text frames for 1 and 2 on the page but the numbering stays the same. Likewise for 3 and 4. If you drag 3 across to page 1 it stays as 3 but if you drag question 4 across to page 1 it becomes 3, and the original question 3 on page 2 becomes question 4. It is confusing but makes sense in a weird way once you get the hang of it.
    Anyway, I have probably answered my own question and the best way to renumber the questions in a test is to run the script again and create a new document using a new question order.
    But any other ideas are welcome.
    Thanks.

    hi Brian
    which version of InDesign you have ?
    I have checked these steps on CS3 and CS4:
    first I've set ON to option in preferences to preserve links when placing
    then I've placed DOC file as AnchoredTF in new Story
    then I've copied this AnchoredTF and pasted it on page, and then I've pasted it as another AnchoredTF - each time there was new lick created to the same DOC file
    then I've set OFF to option in preferences to preserve links when placing
    and even when I again copied and pasted this AnchoredTF with placed DOC file - it still add new link on Links palette
    so maybe with InCopy stories there is next bug or next "feature" ...
    [edit]
    ok - I've checked InCopy file - after exporting TextFrame as InCopy Story
    and it's like you've said - pasting on page - new link is created - pasting as Anchored - link isn't created ... no matter if option in preferences is set or not ...
    verdict - we've found new bug
    BUT ... if you link it again - by CTRL+D method - link is preserved even if option in preferences is set to off so you can have more than one InCopy Story placed as AnchoredTF in same parent Story ...
    robin
    www.adobescripts.co.uk

  • Indesign CS5 Crashes with Incopy Workflow

    I work for a large publishing company that publishes thousands of titles per year. Several divisions use Indesign, but only our Publishing Division uses the Indesign/Incopy workflow, and they are the only division experiencing widespread crashing in CS5. The divisions who do not use Incopy are not crashing. Here's what we know causes the crashing in Indesign CS5:
    1. Exporting stories to Incopy. This is a widespread, yet inconsistent problem. One time you crash, the next time you don't. We've done the IDML export to CS4, reopened the files and saved as CS5. This helped with some files, but not others. I talking about hundreds of different publications and files. All people are patched to the newest version. Some are on Snow Leopard and some are not. However, I'm on Snow Leopard and the crashing does happen on my computer too (sometimes). The problem continues. I've found workaround for some problems, but there's no workaround for exporting to Incopy. It's something you have to do in this workflow.
    2. Saving an Indesign files with an Incopy story checked out. This will cause a crash almost every time. We've been in the Indesign/Incopy workflow since CS2 and never had this problem in the past. This is an easy fix; just make sure you check in stories before saving, but it's a hard habit for some to break.
    These issues have been reported to Adobe, with absolutely NO explanation or resolution. After six years in this workflow, I'm at the point of having to consider abandoning Incopy -- not an easy thing to do in such a large organization.

    After 2 days straight, I FIGURED IT OUT!!!! I was trying everything, especially related to font book and fonts and resetting prefs, etc...
    I narrowed it down to 1 constant variable: it's happening on the 2012 macbook's, so I reset my mac and held command + R and re-installed Lion, then I DID NOT INSTALL THE UPDATE FOR THE MACBOOK 2012. Then I tried exporting a smallest file size pdf with overset text and also tried deleting a page with an object on it and BAM! No blank warning dialog and even more importantly: NO MORE CRASHES!!! Hey, I might not lose all my clients afterall!
    got the good ol' warning box we all love and missed:
    Again:
    - power off mac and turn back on while holding down Command + R (dont do it on an external keyboard just to be safe)
    - choose the re-install Lion option (I'm sure there is another way to re-install Lion, this is just the way I did it, not saying its the best or only method)
    - DO NOT INSTALL MACBOOK (Mid 2012) Software Update 1.0 - THIS SCREWS ADOBE UP!
    After you guys try this please let us know how your system is operating, I am noticing my macbook pro is so slow and when trying to send an email and choosing an email to reply to and attach something,etc.. each click triggers the beachball and I gotta wait a few moments..?? I'm sure we might be missing out on some good updates from not updating to the 1.0 software update....but....
    So my final question is:
    is this Apple's problem or Adobe's and who needs to do what here??? Why can't we all get along...

  • Can't replace a text in InCopy

    I am trying to replace a text with another text in an InCopy story using:
    iTextModelCmds->ReplaceCmd
    The parameters seem to be OK, as it works with the same parameters in InDesign, but I always get NULL for ReplaceCmd (I have no problem getting the ITextModelCmds interface).
    I should be able to replace a text in InCopy. Any ideas why I can't do this? Might it be locked somehow?

    You have to use the text touchup tool (there is a new name like text edit tool in AA X) to edit such text. It sounds like you are using the typewriter tool or something like it. Text editing in Acrobat is not for the weak at heart. It can be very frustrating and is not recommended except for very minor changes. If at all possible, you should edit the original and just recreate the PDF.

  • [CS3] What is Story List.xml?

    This file is created whenever an assignment (.inca) is opened from InCopy and contains story UIDs and names, but I can't find it documented anywhere. It seems to control which stories are visible in the incopy story editor but occasionally it will be missing stories that are part of the assignment so they will appear to have vanished when the assignment is re-opened.
    Without knowing more about this file I'm having trouble finding out if this is due to something wrong in my plug-in or something else. What determines when a Story List.xml file is created and which stories are included?

    Because the data for an RSS is usually cross domain, a normal SprySataSet cannot be used.
    Arnout Kazemier then created the SpryYQLDataSet which is based on the Yahoo Query Language (YQL). You can see his announcement here http://forums.adobe.com/message/2822388#2822388
    Using the SpryYQLDataSet is the same as using any of the other SpryDataSets.as can be deducted from my online sample.
    The main items to look out for are
    <script src="http://config.spry-it.com/js?f=1.7/data/1.7/jsondataset/nestedjsondataset"></script>
    <script src="SpryAssets/SpryDataYQLDataSet.js"></script>
    The first is the JS file for the SpryJSONNestedDataSet and the second is the newly created SpryDataYQLDataSet
    The dataset then has to be instantiated as follows making sure that the host URL is correct
    <script>
    var dsItem = new Spry.Data.YQLDataSet(
        'select * from xml where url="http://www.dutchnews.nl/news/index.xml"',
        false,
            format:"xml",
            preparseFunc: function( strxml ){
                var xml = Spry.Utils.stringToXMLDoc( strxml ), ds = Spry.Data.XMLDataSet.getRecordSetFromXMLDoc( xml, "rss/channel/item" );
                return ds.data;
    </script>
    The rest is like using the data from any SpryDataSet. I have used the master/detail setup, but any form of output is possible. Do remember though that not all RSS feeds are the same. My example was originally based on a feed from another domain, but they stopped their RSS feed. I then had to quickly find somewhere else to get the feed and it turns out that the information is slightly different, hence the blank lines in the example.
    The main thing is to extract the info cross domain, using the above or similar.
    Gramps

  • Incopy CS5 Images printed are pixelated

    Is there a way I can print an incopy story in layout view where it doesn't print in low quality?  I tried setting the display performance to high quality display and that made no difference in the print out.  For something that should seem so easy to figure out, I couldn't find a solution in the incopy online help pdf.

    Printing and PDF production in InCopy is limited to less than stellar quality.
    Bob

  • Incopy Preview in Bridge

    Does anyone know how to make Incopy stories preview in Bridge. Currently, when I look at my Incopy stories in Bridge, I see a preview of the first page of the Indesign file. I actually need to see a preview of the Incopy story.

    You have to have the correct version of Adobe Camera Raw for your camera.
    Check in the Adobe Camera Raw forum.

  • Some confusing issues and their solution while working with InCopy stories.

    Hi All,<br />Last few months I have been working on InDesign/InCopy workFlow.I faced lot many problems and able to find solutions for some of them.I am putting down some of  the problems I haved faced and the approaches I followed to get the solutions.<br />So here I go...<br />First I will put the issues I faced and then their common solution.<br /><br />Issue 1)A text frame exported as a InCopy file.<br />InterfacePtr<IDataLinkReference> dataLinkReference(frameUIDRef, UseDefaultIID());<br />if(dataLinkReference == nil)<br />break;<br />UID linkUID = dataLinkReference->GetUID();<br />If(linkUID == kInvlaidID)<br />Break;<br /><br />The linkUID is always equal to kInvalidUID.<br /><br />Issue 2)A graphics frame with image placed inside it and exported as an InCopy file.<br />In this case the linkUID will have a valid UID.<br />So the code ahead is<br /><br />UIDRef linkRef(frameUIDRef.GetDataBase(), linkUID); <br />InterfacePtr<IDataLink> dataLink(linkRef, UseDefaultIID()); <br />if(dataLink != nil)<br />{<br />  PMString linkedFilePath = *(dataLink->GetFullName());<br />}<br /><br />so here the linkedFilePath will be the file path of the linked incopy file and not of that image file.<br /><br />Issue 3)A graphics frame with image placed inside it but without any associated InCopy file.<br />The linkedFilePath is that of filePath of an image.<br /><br />The solution I found was..<br />The reason for this confusing behaviour is, InCopy frame has one more UIDRef associated with the InCopy story.<br />So to get the incopy related UIDRef we have to use the following code.<br /><br />UIDRef incopyStoryUIDRef = Utils<IInCopyWorkFlowUtils>()->GetContainingInCopyStory(itemUIDRef);<br /><br />The problem with above api is in case of the graphic frame the itemUIDRef should be the UIDRef of the frame and in case of text frame the itemUIDRef should be the UIDRef of the text story i.e the text model.<br />To get the proper UIDRef use following code<br />//code start<br />UIDRef storyUIDRef(frameUIDRef.GetDataBase());<br />InterfacePtr<IPMUnknown> unknown(frameUIDRef,IID_IUNKNOWN);<br />if(unknown == nil)<br />{<br />break;<br />}<br />UID textFrameUID = Utils<IFrameUtils>()->GetTextFrameUID(unknown);<br />if(textFrameUID != kInvalidUID)<br />{<br />isTextFrame = kTrue;<br />UIDRef textFrameUIDRef(frameUIDRef.GetDataBase(),textFrameUID);<br />InterfacePtr<ITextFrame> textFrame(textFrameUIDRef,UseDefaultIID());<br />if(textFrame == nil)<br />{<br />break;<br />}<br />ITextModel * txtMdl = textFrame->QueryTextModel();<br />if(txtMdl == nil)<br />{<br />break;<br />}<br /><br />storyUIDRef = GetUIDRef(txtMdl);<br />result =  Utils<IInCopyBridgeUtils>()->IsInCopyStory(storyUIDRef);<br />               <br />}<br />else<br />{<br />isTextFrame = kFalse;<br />result = Utils<IInCopyWorkFlowUtils>()->IsInCopyStory(frameUIDRef);<br />storyUIDRef = frameUIDRef;               <br />}<br />//code end.<br /><br />Then use<br />UIDRef incopyStoryUIDRef = Utils<IInCopyWorkFlowUtils>()->GetContainingInCopyStory(storyUIDRef );<br /><br />Once you have the proper incopyStoryUIDRef, the following code works uniformely and you will always get the incopy file irrespective of the type of frame.<br /><br />IDataLink * dLink = Utils<IInCopyBridgeUtils>()->QueryDataLink(incopyStoryUIDRef);<br />if(dLink == nil)<br />{                                   <br />break;<br />}<br />so dLink->GetFullName() will always give you the incopy file path associated with the frame.<br /><br />Hope this helps somebody working on InCopy stories.<br /><br />But I still could not find the way to find the image file path associated with the graphic incopy story.(refer issue 2 above.).Using above approach I always get the file path of associated incopy file.<br /><br />I will keep this thread updated as and when I encounter with some more issues and find their solutions.<br /><br />Thanks and Regards,<br />Yopangjo.

    I cannot explain why your iMac worked ok.  I too have seen situations where "lower cost" WiFi routers like Belkin and LInksys have "sort of" worked but had problems.
    Back in 2004 after buying a fairly large house I purchased an off-brand WiFi gateway that featured high power output so I could mount it centrally in the house and be able to use WiFi everywhere.  Even though this thing was rated well and had the high-power everyone said would help it gave me continuous problems.
    One day a buddy gave me an Apple Airport (the one that looks like a apple power adapter).  I plugged it in where I had the high power unit in place and suddenly I had amazing WiFi speed and coverage EVERYWHERE. I could not believe it!  That day I ordered an Airport Extreme and it has been fantastic.
    I then recommended this solution to a friend of mine that had an Apple MacBook and he had nothing but trouble and went back to his linksys.  So it is a mixed bag.
    Currently I have three WiFi devices:  A TimeCapsule downstairs, an Airport Extreme upstairs and a LInkSys in a utility closet.  The LinkSys is needed because my son's GF's Windows computer will not connect to anything else.
    Anyway glad you figured something out.

  • CS5 Complicated file in InCopy workflow crashes on updating stories

    I'm working on the first few lessons of what will be several hundred . . . setting up a template that will hopefully work for a massively complicated workflow. I'm using a lot of the features of InDesign along with a third party plugin. Got my first lesson laid out and exported it to InCopy so the editor could tweak the text and when I try to update the stories after his edits, ID thinks for a second or two and then crashes.
    The file was created fresh in ID CS5. It contains tables, spanning titles, anchored vector art (native AI), and achored text boxes that were created using InTools Side Heads plugin (some of which contain tables). ID has become very senstive--just working with several of these complicated files open at once can sometimes cause a crash (though I have noticed since moving to CS5 that having any sort of table in a document almost guarantees a crash eventually--especially if spanning text is in use). However, the crashes before usually didn't repeat--meaning I recovered the file and did what caused the crash with out a subsequent crash. The InCopy story update crashes every time. The editor says he just changed a few words--didn't cause any major reflow--but I cannot update. I've tried it on two different files with edits.
    Any idea how I can solve this problem? These files will have to be complicated--there is just no working around it--and I have to use IC with my editors. In the long run, this project will take hundreds of man hours, and I have to make the workflow as efficient as possible because I'm the only one doing the layout.
    I've tried opening and updating the docs on a Intel Mac running Leopard and a Windows 7 laptop.  It crashed in the same way on both computers. Both installations are fully patched.

    I just realized that I probably posted this in the wrong forum.  I was intending the main Indesign forum.  Sorry.
    I just experiemented with placing the IC story in a new document, and it placed without crashing.  I then copied it and pasted it over the offending story in the original file (after unlinking the story so I could edit without updating) and no crash.

Maybe you are looking for

  • Java Stack in BI 7.0.

    Hi, Friends Please help me in the foliwng situation.. We are using BI 7.0 and which is not having Java Stack. Please clarify me.. 1. Is it Mandatory to Install Java Stack in SAP BI. 2. When we need Java Stack in BI server. 3. We have Portal also, and

  • Songs arent in order on Ipod

    Hi all just a quick one i hope someone will be able sort out for me. Some albums i recently put on my ipod dont play in order. they are in order on itunes an even in order on my ipod when looked at on itunes but not when i disconnect an play! ive tri

  • Need an email address for Adobe

    What email address do I use to forward a copy of my invoice for Lightroom 5? There's a problem with the product number for registration purposes. During a "Chat" I was told to do so, but did not reveive an email address.

  • System performance degrades after server migration ???

    Hi Friends, System performance degrades after we migrate our BW 3.5 Server (Production) from UK to Germany. for details : 1. Data is coming to Informatica server from Informatica its going to POSDM Server (Point of Sales Data Management) from POSDM w

  • Flash tiled background

    Hi im trying to achieve a seamless tiled background that animates. www.efficient-heat.net I have created an animation in flash and have saved this out as a gif . I have then attached this gif to the body backgrouund : body { background:#E1E1E1 url(..