Copy-Pasted Object Reopening Original Document

Ok. I made an object with rollover and click states in one document, then copied it into another document. I did a bunch of futsing to make it work as a multi-state object (since my on-click states got lost when transfered to digital publishing, which kinda made sense). Now whenever I try to drill down to edit the object by double clicking, it opens the document that I originally coppied from.
I have no idea if I did something weird or even what to look for, so let me know if there's more information I can provide. If it's "a feature, not a bug", please tell me how to turn it off.
Thanks,
-T

Nope. No Hyperlinks. It was a button, but only with rollover states. No external addresses associated with it. And the button part was nixed anyway.

Similar Messages

  • Copy & Paste objects to original xy coordinates

    Is it possible to copy an object from one file to another file and have it pasted using the xy coordinates from the original document?
    I'm new to illustrator, came from using Corel but there it would paste using the original coordinates and not the center of the active window. It can get time consuming if I have to always enter the coordinates manually.
    Any help would be muchly appreciated.

    Thanks for the reply Larry, I see what you mean. One quick question, is
    there a way to paste it on to a new artboard within the same document
    but still keeping the coordinates? Say a logo set in 2" from the left
    edge and 2" for the bottom edge of artboard 1 to be pasted on to
    artboard 2 (same size) to the same location (2" in from left and 2" from
    the bottom)?
    Paul Musselman
    Sr. CADD/Graphic Design Technologist
    Technology Services
    Corporation of the City of Cambridge
    50 Dickson Street, 4th Floor
    P.O. Box 669
    Cambridge ON
    N1R 5W8
    Tel: 519.740.4685 ext. 4663
    Fax: 519.740.7599
    www.cambridge.ca
    P please consider the environment before printing this email

  • How to copy-paste frames from one document to other with there respective layers intact?

    Hi All,
         I am facing an issue while copy paste frames from one document to other. I have a 3 frames in first documents each one on different layer. First document has 3 layers. The second document too have 3 layers , I am copying frames from first document to scrapdata using 'ICopyCmdData ' and 'kCopyCmdBoss'. I have 'Paste Remembers Layers' menu 'Checked' on Layer panel. I am using following function to copy frames to scrapdata.
    bool16 copyStencilsFromTheTemplateDocumentIntoScrapData(PMString & templateFilePath)
         bool16 result = kFalse;
        do
            SDKLayoutHelper sdklhelp;
            PMString filePathItemsToBeCopiedFrom(templateFilePath);  //("c:\\test\\aa.indt");
            IDFile templateIDFile(filePathItemsToBeCopiedFrom);
            UIDRef templateDocUIDRef = sdklhelp.OpenDocument(templateIDFile);
            if(templateDocUIDRef == UIDRef ::gNull)                 
                break;
            ErrorCode err = sdklhelp.OpenLayoutWindow(templateDocUIDRef);
            if(err == kFailure)                 
                break;
            InterfacePtr<IDocument> templatedoc(templateDocUIDRef,UseDefaultIID());
            if(templatedoc == nil)               
                break;
            InterfacePtr<ISpreadList>templateSpreadUIDList(templatedoc,UseDefaultIID());
            if(templateSpreadUIDList == nil)                  
                break;
            IDataBase * templateDocDatabase = templateDocUIDRef.GetDataBase();
            if(templateDocDatabase == nil)                  
                break;
            UIDRef templateDocFirstSpreadUIDRef(templateDocDatabase, templateSpreadUIDList->GetNthSpreadUID(0));
            InterfacePtr<ISpread> templateSpread(templateDocFirstSpreadUIDRef, IID_ISPREAD);
            if(templateSpread == nil)                 
                break;
            UIDList templateFrameUIDList(templateDocDatabase);
            if(templateSpread->GetNthPageUID(0)== kInvalidUID)                  
                break;      
            templateSpread->GetItemsOnPage(0,&templateFrameUIDList,kFalse,kTrue);  
            InterfacePtr<ICommand> copyStencilsCMD(CmdUtils::CreateCommand(kCopyCmdBoss));
            if(copyStencilsCMD == nil)                
                break;
            InterfacePtr<ICopyCmdData> cmdData(copyStencilsCMD, IID_ICOPYCMDDATA);
            if(cmdData == nil)                 
                break;
            // Copy cmd will own this list
            UIDList* listCopy = new UIDList(templateFrameUIDList);
            InterfacePtr<IClipboardController> clipboardController(gSession,UseDefaultIID());
            if(clipboardController == nil)              
                break;
            ErrorCode status = clipboardController->PrepareForCopy();
            if(status == kFailure)                  
                break;
            InterfacePtr<IDataExchangeHandler> scrapHandler(clipboardController->QueryHandler(kPageItemFlavor));
            if(scrapHandler == nil)                 
                break;
            clipboardController->SetActiveScrapHandler(scrapHandler);
            InterfacePtr<IPageItemScrapData> scrapData(scrapHandler, UseDefaultIID());
            if(scrapData== nil)                
                break;
            UIDRef parent = scrapData->GetRootNode();
            cmdData->Set(copyStencilsCMD, listCopy, parent, scrapHandler);
            if(templateFrameUIDList.Length() == 0)       
                return kFalse;      
            else      
                status = CmdUtils::ProcessCommand(copyStencilsCMD);    
            if(status != kFailure)
              result = kTrue;
            sdklhelp.CloseDocument(templateDocUIDRef,kFalse,K2::kSuppressUI, kFalse);
        }while(kFalse);
        return result;
    After this I need to close first document. Now I am opening the second document from indt file which has same number of layers as first document. I am trying to paste frames from scrap data to second document using '' 'ICopyCmdData ' and 'kPasteCmdBoss' as shown in follwoing function
    bool16 pasteTheItemsFromScrapDataOntoOpenDocument(UIDRef &documentDocUIDRef )
        bool16 result = kFalse;
        do
               InterfacePtr<IClipboardController> clipboardController(gSession,UseDefaultIID());
                if(clipboardController == nil)
                    break;
               InterfacePtr<IDataExchangeHandler> scrapHandler(clipboardController->QueryHandler(kPageItemFlavor));
               if(scrapHandler == nil)               
                    break;
               InterfacePtr<IPageItemScrapData> scrapData(scrapHandler, UseDefaultIID());
                if(scrapData == nil)
                   break;
                     //This will give the list of items present on the scrap
                UIDList* scrapContents = scrapData->CreateUIDList();
                if (scrapContents->Length() >= 1)
                    InterfacePtr<IDocument> dataToBeSprayedDocument(documentDocUIDRef,UseDefaultIID());
                    if(dataToBeSprayedDocument == nil)
                       break;
                    InterfacePtr<ISpreadList>dataToBeSprayedDocumentSpreadList(dataToBeSprayedDocument,UseDef aultIID());
                    if(dataToBeSprayedDocumentSpreadList == nil)
                         break;
                    IDataBase * dataToBeSprayedDocDatabase = documentDocUIDRef.GetDataBase();
                    if(dataToBeSprayedDocDatabase == nil)
                         break;    
                    UIDRef spreadUIDRef(dataToBeSprayedDocDatabase, dataToBeSprayedDocumentSpreadList->GetNthSpreadUID(0));               
                    SDKLayoutHelper sdklhelp;
                    UIDRef parentLayerUIDRef = sdklhelp.GetSpreadLayerRef(spreadUIDRef);
                    InterfacePtr<IPageItemScrapData> localScrapData(scrapHandler, UseDefaultIID());
                    if(localScrapData == nil)
                        break;
                    if(parentLayerUIDRef.GetUID() == kInvalidUID)
                        break;
                    InterfacePtr<ICommand> pasteToClipBoardCMD (CmdUtils::CreateCommand(kPasteCmdBoss));
                    if(pasteToClipBoardCMD == nil)
                        break;
                    InterfacePtr<ICopyCmdData> cmdData(pasteToClipBoardCMD, UseDefaultIID());
                    if(cmdData == nil)
                        break;
                    if(scrapContents == nil)
                        break;               
                    PMPoint offset(0.0, 0.0);
                    cmdData->SetOffset(offset);
                    cmdData->Set(pasteToClipBoardCMD, scrapContents, parentLayerUIDRef );
                    ErrorCode status = CmdUtils::ProcessCommand(pasteToClipBoardCMD);
                    if(status == kSuccess)
                        CA("result = kTrue");
                        result = kTrue;
                }//end if (scrapContents->Length() >= 1)       
        }while(kFalse);
        return result;
         Here in above function its required to set Parent Layer UIDRef and because of this all frames are getting paste in one layer.
    Is there any way we can paste frame in there respective layers?
         Also I need to work this code with CS4 server and desktop indesign.
    Thanks in advance,
    Rahul Dalvi

    Try,
    // dstDoc must be FrontDocument
    InterfacePtr<ILayoutControlData> layoutData(Utils<ILayoutUIUtils>()->QueryFrontLayoutData());
    InterfacePtr<ICommand> createMasterFromMasterCmd(CmdUtils::CreateCommand(kCreateMasterFromMasterCmdBoss));
    createMasterFromMasterCmd->SetItemList(UIDList(srcMasterSpreadUIDRef));
    InterfacePtr<ILayoutCmdData> layoutCmdData(createMasterFromMasterCmd, UseDefaultIID());
    layoutCmdData->Set(::GetUIDRef(layoutData->GetDocument()), layoutData);
    CmdUtils::ProcessCommand(createMasterFromMasterCmd);

  • Copying an object from one document to another in CS4

    When more than one document is open in CS4 (for example document 1 and document 2), and the documents are arranged with tabs at the top, it should be possible to drag an object from document 1 to the tab of document 2, have the tab of document 2 automatically come to the top, and then drop the object onto a page in document 2. Is this a bug or is it just me?

    You're right, it SHOULD be, but it isn't. I filed a feature request as soon as CS4 was released, but add your voice at http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    In the meantime you need to either use copy/paste or switch to a tiles view.
    Peter

  • Garbled text when copy-pasted from a pdf document in Preview

    I have this PDF document which I created in NeoOffice. When I copy some text from it, then paste it somewhere (or just go to Finder>Edit>Show Clipboard) I see garbled text. Or, if I go into the search field within Preview and type a word which I know exists in the PDF, it doesn't find it. But if I copy-paste it from the PDF document window into the search field, the copied term appears garbled in the search field itself, but I do get search results.
    This happens only with this particular document, which I myself produced. No password/encryption or anything weird; just a straightforward print job from within NeoOffice.
    Any clues? Many thanks.

    happens to me all the time in preview, copying something that I need to paste, like a URL. Quitting and relaunching usually solves it, but now that won't work on the text I am copying today.

  • Bullets which include links will prevent correct copy/paste content from word document to wiki page.

    I have a word document around 20 pages which contains the following sentence (a bullet with two links):-
    Now if I remove this sentence then copy/paste the 20 pages from word to wiki page they will be pasted correctly inside the wiki page , where all the pages, bullets, etc will be mapped correctly inside the wiki page as HTML tables, bullets ,etc.
    But the problem if I kept the above sentence then the whole 20 pages will be pasted as plain text inside the wiki page.
    So can anyone advice on this ?and how I can overcome it ?

    Hi John,
    You can try this (1) Save as Word Doc as single file web page (2) Open that file in normal text editor(notepad or so) and copy all (3) Goto Wiki page edit source and paste all (4) Save it
    Let us know how it goes.
    please 'Propose as answer' if it help you, also de-mark it if it didn't. Thank you!
    the result will be as follow, not sure if this is a valid approach can you adivce ?:-

  • Copy/paste in a Word document loses its format (bullet points, coloured tex, etc) when Firefox is open. When I close Firefox it is fine again. I am not talking about copying and pasting text between MS Word and Firefox. It is within MS Word itself.

    Firefox 11.0
    MS Word 2003 Basic Edition SP3

    Disabling the the Skype Click to Call extension fixed the problem.
    Many thanks !!!!!!

  • Copy paste text between documents bug

    Hi
    When I copy paste styled text (text or text containers) between CS6 (or CC) documents, the language for the text changes to a wrong one (from Finnish to English: British), along with the spelling of course. The style does follow correctly to the fresh new document, but ID makes an exception to the style for this pasted text (Style1+). The transferred style itself still has the correct language defined.
    Doesn't happen when copy pasting within the same document.
    All default languages are correct (default and within styles). Deleting preferences did nothing.
    Anyone else has this? Any suggestions on how to correct this. I seem to remember there was something like this ages ago too.

    Thanks Uwe
    • New user: no help.
    • Save as or IDML: no change, same problem.
    • Snippet: language does remain correctly Finnish!
    • ID5.5: no problem at all! Language remains correct.
    So, this is my persistent problem:
    • Any text with a style on it becomes (as a local exception to style) wrong language when copy-pasted or dragged as a whole page between docs.
    • The styles them selves transfer correct. Clicking style for each paragraph again sets the correct language (but the original local adjustments are lost).
    • No style has [Basic Paragraph] as a parent and [Basic Paragraph]'s and the general default language are Finnish, too. The wrong language (English: British) is not used anywhere.
    • Text with no style remains correctly Finnish (target default).
    • IDML: same problem. Save As: same problem.
    • IDMS: language remains correct.
    • Trashing preferences doesn't help.
    • New user account doesn't help.
    • Effected versions: ID CC (9.1 fi), ID CS6 (8.0.2 fi). CS5.5 (7.5.1 en) is not effected. System is Mac 10.8.5 (fi).
    • CC has no extra plugins. CS6 and CS5.5 have Suitcase (F4) plugin only as extra.

  • Copy-paste not proper

    When I copy paste objects as a block (not one by one) in UI it paste all objects into the left top corner as a pile and lose the location data of the original objects. Is it normal or, do I mis anything.
    thanks;

    That's probably the designed-in behavior. Unfortunately, it's like that also in Visual Basic. Select a bunch of controls on a form, switch to a new form, paste them, and the whole group of them are pasted so that the upper-leftmost one of them is in the upper left corner. Maybe that's the agreed upon style of doing things -- I don't know. I agree it would be nice if it would paste them in the same relative position on the form, if possible.

  • [AS] Copy/Paste graphics

    Hi,
    Just wondering if anyone can help... l'm trying to copy/paste graphics from one document to another.
    I've been doing this my getting the file path of item link of graphic 1 and then setting this value to the frame on the other document - then setting the offset etc to move it to the correct place - which works great. (see below code)
    The problem l've got it sometimes the original graphic file doesn't exists so it does not work - what l want to do is then copy the 'preview' image you see on the document and paste that in the box on the other document - just like a normal copy/paste
    Any ideas on a nice way of doing this?
    This is my current copy/paste methods l talked about:
    on copyItem(boxName)
         try
         tell application "Adobe InDesign CS3"
              set myCopyDocument to active document
              set proceed to false
              tell myCopyDocument
                   set theSelection to graphic 1 of page item boxName
                   set theTarget to parent of theSelection
                   set FilePathOfImage to file path of item link of graphic 1 of theTarget
                   set {a, b, c, d} to geometric bounds of theSelection
                   set {w, x, y, z} to geometric bounds of theTarget
                   set xOff to a - w
                   set yOff to b - x
              end tell
              return {true, FilePathOfImage, xOff, yOff}
         end tell
         on error msg
              display dialog "Can not copy original image: " & msg
              return {false, "", 0, 0}
         end try
    end copyItem
    on pasteItem(boxName, FilePathOfImage, xOff, yOff)
         tell application "Adobe InDesign CS3"
          try
              tell myPasteDocument
                   set myImage to place FilePathOfImage on page item boxName
                   set {a, b, c, d} to geometric bounds of myImage
                   set geometric bounds of myImage to {a + xOff, b + yOff, c + xOff, d + yOff}
              end tell   
         on error msg
              display dialog "Can not place original image: " & msg
         end try
         end tell
    end pasteItem
    Regards, Gary.

    Worked out a way of doing it with the following:
    property myDocuments : {}
    set boxName to "pic1"
    tell application "Adobe InDesign CS3"
        -- Source
        set MyRectangles to page item boxName of document 1
        set MyRectangle to item 1 of MyRectangles
        set thePage to parent of MyRectangle
        set thePageNumber to name of thePage
        -- Target
        set MyTargetRectangles to page item boxName of document 2
        set MyTargetRectangle to item 1 of MyTargetRectangles
        set theTargetPage to parent of MyTargetRectangle
        set theTargetPageNumber to name of theTargetPage
        set {y, x, l, h} to geometric bounds of MyTargetRectangle
        -- Duplicate onto document 2
        set MyTargetRectangleCopy to duplicate MyRectangle to page theTargetPageNumber of document 2
        -- Delete old target
        delete MyTargetRectangle
        -- Move new target to old targets place
        move MyTargetRectangleCopy to {x, y}
    end tell

  • Copy/paste opacity problem

    I´m having this weir issue with objects that have gradients with opacity.
    If I drag to copy, it´s makes a perfect copy. But if I copy/paste the object it becomes solid. This applys copy/paste in the same document and if I try to copy/paste into a new document.
    This problem came with the upgrade to Illustrator CS6.
    Anyone?
    Mac OSX 10.7.5
    Adobe Illustrator 16.0.4

    Does not happen to me
    MAC 10.8.4
    AI 16.04
    I have 2 gradient stops of white, (Opacity 100%, Opacity 0%), are yours the same?
    Check your clipboard settings.

  • I can't copy paste from pdf to word due to Unicode character problem.

    I was able to copy paste from a pdf document on word and all of a sudden it won't let me paste anymore. Well, I can paste the text but it come up as 'square' thingy. The spanner icon lights up and says This document contains unicode characters that might not display correctly in the earlier version of the office. I'm using Office/Word 2008 on my Mac book air..
    I just dont understand why all of a suddent it wont past from the same pdf I was using to copy text from.
    Thanks.

    If you don't get an answer here, there's a forum devoted entirely to Word problems at
    http://answers.microsoft.com/en-us/mac/forum/macword

  • I'm composing an e-mail, and I copy/paste from a web page.

    Let's suppose I copy / paste from a web document. For the sake of argument I'm using Mail.  A black box appears around the pasted part (with a "X" in the corner).
    But, if I do a second paste, the new text is always inside the old box, therefore screwing up the indent.
    I can't get the curser to start outside the box. How can I get rid of the box while composing?
    Yes, the box disappears when I click outside it, but re-appears if I go for a new line below it.
    Here's an example of how it looks.
    #1. The fox.
           The quick brown fox jumped over the i-mac.
            #2.  I'm frustrated that I can't paste or type where the first line started, indent wise.
    Once the curser is after the word i-mac, and I try to move it down, the next line always goes to the indent of "The" and not #1.

    I take you are trying to write an email within Safari, try this open Safari and click on the Safari menu and select reset Safari. 

  • There is a copy/paste problem with SUN JRE in the application.

    Hi All,
    The application is desinged and developed in Lotus Notes and contains a Rich Text field , its a web based application and loads with SUN JRE for the applet to gets load in the application. Whenever i tries to do copy/paste from Microsoft word document to rich text field in the application i get a text which is parsed with html tags which doesn't come while i loads MS JVM on the browser.
    I tried with SUN JRE 1.5 and 1.6 version , i got the parsingproblem ie text mixed with html and xml tags.
    Any help is appreciated!!.
    Thanks
    Muktesh.

    Hi,
    When we right-click a word that is marked with red or blue underline, it will pop up the suggested corrections context menu. It can give you other options, such as adding the word to your custom dictionary depending on the Microsoft Office program that you
    are using.
    If you want to copy such words, you can use Ctrl + C and Ctrl + V to achieve the goal. Or, we can right-click the word and then select
    Ignore All or Add to Dictionary, and then you can copy the word by right-clicking it. 
    Regards,
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Can no longer paste objects from one lesson to another (Captivate 4)

    Hello folks,
    Until a few moments ago, I was able to copy elements (a combination of Captivate objects including text box, icon, and a text caption) from one lesson to another lesson (in a separate copy of Captivate 4). As a result of the copy/paste, I had a duplicate group of objects, complete with the same settings and x/y coordinates.
    But suddenly, the only option I have after copying, is "Paste as image". Clearly, that is not what I want... I used to see "Paste Object".
    Can anyone explain why I can no longer copy/paste objects?
    BTW, I can still copy/paste within the same lesson.... but I can no longer copy/paste to a different lesson.
    I hope this makes sense.

    Hi there
    What happens if you restart Captivate? Or even the PC? Does it return then?
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

Maybe you are looking for

  • Mavericks 10.9.2 is causing major issues with my computer. Bouncing balls, lagging, etc. etc. Should I revert?

    I'm not a techy, but I did see on another thread to run EtreCheck.  I called up Apple Support a few months ago, before Mavericks, as my system was running slower.   The Apple tech said I have plenty of room on my hard drive and to just delete stuff o

  • Problem with a template

    found this template in internet:  http://www.iworkcommunity.com/content/weekly-newspaper#comment-687 however I have been unable to change the 'text' part in the first page. It does not seem to be blocked or anything, but I cannot change it. To make i

  • Fixed no of rows in JTextarea

    I want to have only 5 rows in my textarea and no scrollbars. I specified it in constructor. Also set the linewrapproperty to be true. But When I press enter or when the line wraps it adds a row. any property or method to set this behaviour. help appr

  • I have to format my mac disk. what should i backup?

    i couldnt repair my mac disk. the "repair permissions" was greyed out. i have to start from 0. i know im dumb to not have a backup. i can access my mac disk from the bootcamp partition windows 7. im planning saving in an external disc all my importan

  • Pre-requisite checker script for EBS R12 and R12.1

    hi is it possible to make a pre-requisite checker script (in perl or shell) for EBS R12 and R12.1 in RHEL5 or sun OS?? can anyone help / guide me to do so?? rgrds