Place link annotations with IAC

Hi together,
I want to place 'invisible' rectangle annotations on drawings, which link to other drawings (pdf). This is to be done using OLE Automation of the Acrobat Interapplication Communication. I already succeeded in doing so with a plug-in, but I need to do it from outside Acrobat. In the IAC OLE API I miss some essential methods. To illustrate this here is my code of the plug-in (C++):
void PlaceLink(int iLeft, int iTop, int iRight, int iBottom, CString cstrFileToOpen)
    AVDoc avDoc = AVAppGetActiveDoc();
    PDDoc pdDoc = AVDocGetPDDoc(avDoc);
    PDPage page = NULL;
    PDAnnot annot,linkannot;
    //Create an ASFixed object and define its borders
    ASFixedRect fr;
    fr.left = ASInt32ToFixed(iLeft);
    fr.top = ASInt32ToFixed(iTop);
    fr.right = ASInt32ToFixed(iRight);
    fr.bottom = ASInt32ToFixed(iBottom);
    PDLinkAnnotBorder frBorder;
    frBorder.width=0;
    //Create a PDPage object
    page = PDDocAcquirePage(pdDoc, 0);
    //Create a PDAnnot object and
    //Cast the PDAnnot object to a PDLinkAnnot object
    annot = PDPageCreateAnnot(page, ASAtomFromString("Link"),&fr);
    linkannot = CastToPDLinkAnnot(annot);
    //Set the border and the action, then add it to a page
    ASAtom pathType = ASAtomFromString("Cstring");
    ASFileSys fileSys = ASGetDefaultFileSysForPath(pathType,cstrFileToOpen);
    ASPathName pathLaunchFile = ASFileSysCreatePathName(fileSys,pathType,cstrFileToOpen, NULL);
    PDFileSpec laFile = PDFileSpecNewFromASPath(pdDoc,fileSys,pathLaunchFile,NULL);
    PDAction linkAction = PDActionNewFromFileSpec(pdDoc,ASAtomFromString("Launch"),laFile);
    PDLinkAnnotSetAction(linkannot,linkAction);
    PDLinkAnnotSetBorder(linkannot, &frBorder);
    PDPageAddAnnot(page,-2,linkannot);
In comparison here is my code for IAC OLE so far (C#):
private void btnStart_Click(object sender, EventArgs e)
     Acrobat.AcroAVDoc avBaseDoc = new Acrobat.AcroAVDoc();
     avBaseDoc.Open(strBasefile, strBasefile);
     avBaseDoc.BringToFront();
     Acrobat.AcroPDDoc pdDoc = avBaseDoc.GetPDDoc() as Acrobat.AcroPDDoc;
     Acrobat.AcroPDPage pdPage = pdDoc.AcquirePage(0) as Acrobat.AcroPDPage;
     Acrobat.AcroRect anRect = new Acrobat.AcroRect();
     anRect.Left = 100; anRect.Top = 100;
     anRect.right = 300; anRect.bottom = 200;
     Acrobat.AcroPDAnnot pdAnnot = pdPage.AddNewAnnot(-1, "Link", anRect) as Acrobat.AcroPDAnnot;
In comparison there are some essential methods/properties I have not found until now:
- setting the border to 0 (PDLinkAnnotSetBorder(linkannot, &frBorder) and PDLinkAnnotBorder at all)
- setting the action and file to launch (PDLinkAnnotSetAction(linkannot,linkAction), PDActionNewFromFileSpec(pdDoc,ASAtomFromString("Launch"),laFile)) and PDAction at all)
My impression is, that there really aren't such methods and it seems not to be possible to place link annotations with IAC OLE. But before I give up, maybe I'm only blind, I want to ask other developers, wether they can comfirm this. (Any Adobe staff is also welcome to give an answere)
Thanks in advance
Rolf

Thanks Leonard,
now I know for sure, that I have to put my effort in looking for alternatives, such as you described.
In the meantime I have found another alternative: using the jsObj.
Currently I succeeded in placing the link and setting simple actions like going to the next page. Next thing I have to find out is, wether it is possible to open another PDF via JS or if there are some security issues to be taken into account...
Thanks again and have a great day
Rolf

Similar Messages

  • I can no longer place links to websites in the FF icon on my Windows 7 task bar, as I could with Firefox 4. Is it still possible? task bar since upgrading to Firefox 4. Can it be made possible?

    With FF v.3 I could place links to oft-used websites in the right-click expanded Firefox icon on the task bar. It appears that Firefox v. 4 no longer provides for that feature. Can it be done some other way? Otherwise I have to open my FF homepage and click on a toolbar bookmark for the website.

    >> Did you check what happens if you set the Task bar to be always visible?
    No, because I do not want my Task bar to always be visible. I want it to auto-hide.
    Firefox *is* maximized when this occurs. However, "maximized" window does not mean "cover up task bar", which is what FF is doing. I can maximize any of my other applications and still access the task bar as expected. For those applications, I did not have to hunt for special configuration files or anything else, because they are following what appears to be at the very least a UX best practice for Windows 7.
    I definitely appreciate your taking the time to share the information that you have shared, and I have no doubt that your suggestions work as you have outlined. However, I'm seeking a user experience with FF in which I do not have to treat it differently than other applications in order to view my Windows task bar when its window is maximized. And I can view the taskbar with FF maximized, *sometimes*. Other times, it stops appearing indefinitely, across multiple sessions/shutdowns/etc.
    (FYI, right now, I have FF maximized, and am able to view the Task bar, so I'm not currently experiencing this issue. I do not recall doing anything special to make it work.)
    Again, I appreciate your taking the time to answer, even if it wasn't what I wanted to hear. :)

  • How to retrieve the text associated with a link annotation

    Hello
    In Acrobat, I created a link using the Select tool. I selected the text which I wanted to create a link.
    After with a C++ plug-in, I want to retrieve the text associated with a link annotation. Which is the function which makes it possible to find the text?
    Regards
    David G

    ok thanks for ur reply now my question regarding about ur first three message..
    U told using quad we finding their rectangle dimensions and then compare that with link annatation title. So then we retrieve link annataion right..
    Ya i already done like u told.. But i have one problem so plz solve dis..
    Problem--- see my code below
    for(int nWordCounter = 0; nWordCounter < nWordCount; nWordCounter++ )
    pdNWord = PDWordFinderGetNthWord(pdWordFinder, nWordCounter );
    PDWordGetNthQuad(pdNWord, nWordCounter, &quad);
    blh = ASFixedRoundToInt32(quad.bl.h);
    blv = ASFixedRoundToInt32(quad.bl.v);
    brh = ASFixedRoundToInt32(quad.br.h);
    brv = ASFixedRoundToInt32(quad.br.v);
    tlh = ASFixedRoundToInt32(quad.tl.h);
    tlv = ASFixedRoundToInt32(quad.tl.v);
    trh = ASFixedRoundToInt32(quad.tr.h);
    trv = ASFixedRoundToInt32(quad.tr.v);
    char *a = (char*)Asmalloc(20);
    sprintf(a, "%d %d %d %d %d %d %d %d", blh, blv, brh, brv, tlh, tlv, trh, trv);
    In dis code, the quad values of blh, blv, brh, brv, tlh, tlv, trh and trv are same for all words(pdNWord). so pls help me for dis proble..
    thanks in advance
    Raghu N

  • Place linked from Bridge CC to Photoshop

    Hi All,
    I love the new "Place Linked" ability in Photoshop CC.
    However, in my normal  workflow I use File->Place->Photoshop in Bridge quite often, either from Bridge or Mini Bridge.
    In bridge/photoshop CC, this "Place" command seems to be "Place Embedded" without an option to "Place Linked".
    Is there any way to use the new "Place linked" frmo within Bridge CC?
    Thanks in advance!
    P.S. I know you can Drag from BR to PS with Alt/Option pressed, I am looking for a non drag & drop solution (if such exists)
    -- Guy

    Hi Do you now, how to do it ? I have same problem. Thanks

  • Re: Fwd: Link Problems With Borland C++ 4.52

    I have seen this problem before in another context, and I'll offer the
    cause and solution in the hope that they will apply to the Crystal problem.
    Many Windows based applications rely on PASCAL calling conventions, which
    change the way parameters are handled in function/method calls. They
    indicate this by placing one of the following immediately before the
    function name in the prototype declarations:
    - pascal_far (or something like that)
    - WINAPI
    - some other typedef of either of the above
    For example:
    int WINAPI AddTotal(int valueA, int valueB);
    Unfortunately, v2.0 of Forte does not provide any mechanisms for changing
    the calling conventions of the prototypes in the generated C++ wrapper
    library, so when you compile that code, the linker fails. I think that the
    compiler may generate different symbols depending on calling conventions,
    so that's why it fails.
    To fix this, don't autocompile your code, but generate the distribution, go
    into the generated C++ files and look for the function prototypes (I think
    you can search for FORTE_NO_PROTOTYPES), add WINAPI to the appropriate
    places in the prototype definitions (see above) and use fcompile to build
    the library. Instructions for fcompile are in the Interfacing With
    External Systems manual.
    Hope this helps,
    James
    At 11:05 AM 5/29/97 PDT, you wrote:
    >
    We are trying to wrapper Crystal Reports from Forte. I know that there
    are a number of other people in this same boat, as I've seen messages
    posted here at various points during the past few weeks. We are having
    a particular problem with getting the compile to go through, which we
    have sent in to Forte Tech Support. I'm forwarding the message I sent
    Tech Support to this group in the hopes that someone here may have
    already seen and resolved a similar problem.
    Thanks in advance for any help you can offer!
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, Inc. [email protected]
    >
    Date: Wed, 28 May 97 13:47:20 PDT
    From: dg7077a
    To: Forte Technical Support
    Cc: Gardner, Steve
    Subject: Link Problems With Borland C++ 4.52
    Name of requestor: [Dale V. Georg / Alaiah Chandrashekar]
    Company: [Indus Consultancy Services]
    Phone for callback: [(610) 709-3956]
    Customer Site: [Mack Trucks, Inc.]
    Product: [Forte]
    Version of Forte: [2.0.H.1]
    Server OS: [SunOS 5.5.1]
    Client OS: [Windows 3.1]
    DBMS: [Oracle 7.2.3]
    Reproducible?: [Yes]
    Brief description: [Link Problems With Borland C++ 4.52]
    Complete description of problem or question:
    We are attempting to write a C-wrapper interface from Forte to Crystal
    Reports' Report Engine. We are using Borland C++ version 4.52.
    Unfortunately, we have been unable to get a clean compile after a day
    and half of effort. We get as far as the link stage of the
    compilation, and
    the compiler aborts with an "Unknown symbol" error message for each
    of the functions we are trying to wrapper. We have tried a number of
    ideas to fix this problem, and are continuing to try to solve it on
    our own,
    but any help would be greatly appreciated. Please have someone call
    Alaiah Chandrashekar at the number above as soon as possible.
    Thanks!
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, Inc. [email protected]
    James Urquhart [email protected]
    Product Manager phone: (510) 986-3513
    Forte Software, Inc. fax: (510) 869-2092

    James,
    Thanks for your quick response. Yesterday we had been running down
    the path of examining the calling conventions and trying to change them
    to PASCAL, but without much success. After receiving your note, we
    went back over it again, and this time we were able to finally to piece it
    together. In addition to editing the Forte-generated .cc file to declare
    the functions as PASCAL, we also had to turn off the compiler's case
    sensitivity. (The Crystal .lib file had the function names in mixed case,
    but the Borland compiler was generating all uppercase for the names.)
    Now I had actually tried this yesterday and it didn't work (in fact it
    generated a whole bunch of new errors) - because until we took a
    second look at it today, I didn't realize that Borland's linker actually has
    TWO flags that control case sensitivity. If you only turn one or the
    other off, things can get pretty ugly looking. As soon as we turned
    both of them off, the compile and link went beautifully. Again, thanks
    for your help; hopefully we are over the worst of it now!
    Dale
    I have seen this problem before in another context, and I'll offer the
    cause and solution in the hope that they will apply to the Crystalproblem.
    >
    Many Windows based applications rely on PASCAL callingconventions, which
    change the way parameters are handled in function/method calls.They
    indicate this by placing one of the following immediately before the
    function name in the prototype declarations:
    - pascal_far (or something like that)
    - WINAPI
    - some other typedef of either of the above
    For example:
    int WINAPI AddTotal(int valueA, int valueB);
    Unfortunately, v2.0 of Forte does not provide any mechanisms forchanging
    the calling conventions of the prototypes in the generated C++wrapper
    library, so when you compile that code, the linker fails. I think thatthe
    compiler may generate different symbols depending on callingconventions,
    so that's why it fails.
    To fix this, don't autocompile your code, but generate thedistribution, go
    into the generated C++ files and look for the function prototypes (I think
    you can search for FORTE_NO_PROTOTYPES), add WINAPI tothe appropriate
    places in the prototype definitions (see above) and use fcompile tobuild
    the library. Instructions for fcompile are in the Interfacing With
    External Systems manual.
    Hope this helps,
    James
    At 11:05 AM 5/29/97 PDT, you wrote:
    We are trying to wrapper Crystal Reports from Forte. I know that
    there
    are a number of other people in this same boat, as I've seenmessages
    posted here at various points during the past few weeks. We arehaving
    a particular problem with getting the compile to go through, whichwe
    have sent in to Forte Tech Support. I'm forwarding the message Isent
    Tech Support to this group in the hopes that someone here mayhave
    already seen and resolved a similar problem.
    Thanks in advance for any help you can offer!
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, Inc.
    [email protected]
    >
    >>
    Date: Wed, 28 May 97 13:47:20 PDT
    From: dg7077a
    To: Forte Technical Support
    Cc: Gardner, Steve
    Subject: Link Problems With Borland C++ 4.52
    Name of requestor: [Dale V. Georg / AlaiahChandrashekar
    Company: [Indus Consultancy Services]
    Phone for callback: [(610) 709-3956]
    Customer Site: [Mack Trucks, Inc.]
    Product: [Forte]
    Version of Forte: [2.0.H.1]
    Server OS: [SunOS 5.5.1]
    Client OS: [Windows 3.1]
    DBMS: [Oracle 7.2.3]
    Reproducible?: [Yes]
    Brief description: [Link Problems With Borland C++ 4.52]
    Complete description of problem or question:
    We are attempting to write a C-wrapper interface from Forte to
    Crystal
    >>
    Reports' Report Engine. We are using Borland C++ version 4.52.
    Unfortunately, we have been unable to get a clean compile after aday
    and half of effort. We get as far as the link stage of the
    compilation, and
    the compiler aborts with an "Unknown symbol" error message foreach
    of the functions we are trying to wrapper. We have tried a numberof
    ideas to fix this problem, and are continuing to try to solve it on
    our own,
    but any help would be greatly appreciated. Please have someonecall
    Alaiah Chandrashekar at the number above as soon as possible.
    Thanks!
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, [email protected]
    James Urquhart [email protected]
    Product Manager phone: (510) 986-3513
    Forte Software, Inc. fax: (510) 869-2092-----------------------------------------------------------------------------------
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, Inc. [email protected]
    [email protected]------------------

  • Add annotations with JavaScript

    Hello,
    I'm currently writing a JavaScript function (that will be executed in a JSP page) to add annotations to PDF files. So far, so good. Actually everything is working as intended except one thing: the position of the annotation. Somehow, it always ends up at position 0,0 (bottom left) of the document with a size of 0, but I know it's there because I can see it in the list of comments. Here is my JavaScript function:
    function annotPdf(src)
         // Create the ActiveXObject
         var pdf = new ActiveXObject('AcroExch.PDDoc');
         // Variables
         var pdfJS;
         var annot;
         var printParams;
         var page;
         var rectSize = new Array();
         // Open PDF
         pdf.Open(src);
         // Determine where to place the annotation
         page = pdf.AcquirePage(0);
         page = page.GetSize();
         rectSize[0] = 25;
         rectSize[1] = page.y - 50;
         rectSize[2] = page.x - 25;
         rectSize[3] = page.y - 25;
         // Get the JSObject
         pdfJS = pdf.GetJSObject();
         // Add the annotation
         pdfJS.addAnnot({page: 0, type: 'FreeText', rect: rectSize, author: 'Automated', contents: 'Test'});
         // Printing
         printParams = pdfJS.getPrintParams();
         printParams.interactive = -1;
         printParams.firstPage = 0;
         printParams.pageHandling = printParams.constants.handling.fit;
         // pdfJS.print(printParams);
         // Save instead of printing for testing
         pdf.Save(1, "C:/Tempo/test.pdf");
         pdf.Close();
    Again, everything works. The annotation is created, but not positioned (as if rect was not doing its job). Now, if I open the same PDF document with Adobe Acrobat 9 and go into the JavaScript Debugger and put:
    this.addAnnot({page: 0, type: 'FreeTest', rect: [25,742,1199,767], author: 'Automated', contents: 'Test'});
    It correctly adds the annotation to the position I want. My theory is that passing an array with Javascript to add an annotation is bugged, because I can do the exact same thing with VB (Pass an array of Integers to rect) and it works perfectly!
    Anyone could help me find a way to make my function work?
    Thanks, Rukk.

    Oops, my bad. It's installed on client not server. My mistake.
    As I said, the ActiveX has no problem to instantiate. That part works. As I said in my first post, I can open my PDF file, add an annotation to it, print it, etc. The problem I have is that I can't decide where to put my annotation (with the rect property). Please refer to my first post.
    Again, thanks for your answer.
    Edit:
    I had to retype it, because when I did copy & paste it added lot of extra blank line (that I wasn't able to delete) and formatting was a bit weird.
    It' a typo.
    Message was edited by: Rukk

  • How can I add links to open xml and csv files stored in another location? Please advice how to place links in my frame maker document?

    Hi,
    I would like to know as to how can I add links to open xml and csv files stored in another location? Please advice how to place links in my frame maker document?
    Kindly advice.
    Thanks
    Priya

    Special > Hypertext > Command "open document" will do its best to open the target document inside FrameMaker, which may not be much help; Special > Hypertext > Command "message …" will use the application you specify. The user guide for 7.0 says this about absolute links, and I don't think anything has changed since:
    For example, to start PaintBrush and open the Ship.pcx file on drive C you would use the command message system pbrush.exe C:/Ship.pcx
    I've not often used a relative link, and not recently: the same source says
    folder levels are separated by a slash / even in Windows and Mac
    [relative links] FrameMaker searches for a relative pathname beginning in the folder that contains the current document
    [absolute links] FrameMaker searches for an absolute pathname beginning at the top of the file system. In Windows, the absolute pathname begins with the drive specifier, a colon and a slash.

  • Set annotation flags for link annotations using JavaScript

    The JavaScript for Acrobat API Reference doesn't list Link as an annotation type[1]even if it's a subtype in the PDF specification (8.4.5 Annotation Types).
    I know how to get the link objects using JavaScript, but they don't have a print property, because it belongs to its mother annotation object.
    Example:
    I have a scanned PDF, OCRed, with two links. Acrobat's content panels shows an annotation object with two links.
    >this.syncAnnotScan();
    >var annots = this.getAnnots();
    returns
    >null
    Any idea how to set the annotation flag to Print for a link annotation using JavaScript? (flag 3 aka Print is required for PDF/A)
    [1] http://livedocs.adobe.com/acrobat_sdk/9/Acrobat9_HTMLHelp/JS_API_AcroJS.88.20.html

    Hi,
    Thanks for replying. But this example sets falshvars through the UI, and as I have mentioned I want this done from javascript in the document - I dont have the value for some of the flashvars during embedding.
    (Using a EI call is my last resort, as I am not expected to make any modification to the SWF file - the SWF file, hitherto, was being hosted in a HTML where it was being passed flashvar params)

  • Place links to html-sites?

    Hello, anyone know how to set the links for html sites open
    in a frame with such a rollover navi?
    I can find this out, having on each button a site selected.
    Here's an example:
    http://rapidshare.de/files/24665028/rollovernavi.zip.html

    Hanshagel,
    I downloaded your file, but it's utterly unclear to me how
    this is supposed to work. You're not using any descriptive names,
    only "Sprite 16", "Shape 2", "Button 68" and so on. You don't have
    actionscript in one place, many string operations and few comments.
    All of this makes it really difficult for somebody else to
    understand what's going on.
    All I guess is that you try to construct links by using the
    text of the link, together with some base name. This somehow is
    taken from the variable "currentPageUrl" which never is
    initialized. Do you load this in via a Flashvar?
    Same for the variable "xmlUrl".
    Maybe you can try to describe in more detail what your
    problem is, or at least send a full set of files so we can try
    (with the html, the xml and what else is being loaded...)
    Sorry, I really tried
    Wolf

  • Place one order with Products from different sales orgs

    Hello,
    We are in CRM 7.0 EHP2 connected to ECC 6.0. We have Internet
    sales/Webchannel Application.
    We are rolling out Internet sales for a new country but they want the option to
    place one single order with products from different sales
    organizations.
    Currently Customers send fax/email to customer
    representative(CR) with list of products. The CR identifies and places
    multiple orders if products belong to different sales orgs.
    Currently customers don't have idea about sales orgs and they don't
    have a clue which product belongs to which sales orgs. So, for them to
    use Internet sales, we have to provide them an option to place one
    order with products from different sales orgs.
    I understand SAP doesn't support this. But, is there any way we can achieve this through some custom/out of the box solutions?
    Thanks,
    Ravi

    Hi Ravi,
    Please have a below help link, it may help you to explain the role of Distribution Channel and if it fits to your requirement.
    Organizational Data Determination in CRM E-Commerce - E-Commerce - SAP Library
    Thanks,
    Hamendra

  • Link problems with Freestyle "About Me" page

    So I used the "about me" page of the Freestyle template to make a page for two teams of people. (See http://web.mac.com/bloodycool/iWeb/DACQuizzing/TheTeams.html) I have used the column of small pictures from the template to be a team portrait links. I want it so that when you click on the picture or the name of the person it takes you to their page. But I cannot get the links from the small pictures to work. When I am in iWeb, I change them to link to another page of my website and pick the page. If I save the site and then click on that picture, the link has gone back to a link to a file, with no file name. No matter what I do with the link on these images, they all switch back to a link to a file when I either save or upload the site. I cannot make the pictures not link either. They always jump back to linking to a file. It’s really annoying.
    I have tried deleting the page off of my iDisk and uploading it again. I deleted the whole portraits box and made it from the template again. Nothing I have done has worked. Has anyone else run into this?

    When I click on the names, it goes to the individual page, is that the proper thing to do?
    If so, then if applying a link directly to the image doesn't appear to work, you can always place a box with no fill and no stroke with a 1% shadow exactly over each image and apply the hyperlink to that. It's been a successful workaround for others.
    Also remember that as the person working on the site, you are in a unique position in that you will go to the site and load pictures and code for the site BEFORE it's finished. Because of your web cache, when you tell Safari to go to the page, it may think it's doing you a favor by pulling from it's local cache instead of from the website that you've recently sent changes to. Clearing your cache or reloading several times after making a change is required only because you've visited the unfinished site.

  • Can't use "Place Linked" or "Place Embedded" or "Open" after upgrading to Yosemite and PS CC 2014

    When I go to File > Place Linked / Place Embedded / Open it isn't working anymore after upgrading to Yosemite and PS CC 2014.
    If I drag a file to Photoshop, I can open it that way, or by using "Open Recent".
    I've tried going to the folder "Adobe Photoshop CC 2014 Settings" and deleting the file "Adobe Photoshop CC 2014 Prefs.psp", and then "Place Linked / Place Embedded / Open" works once, but then it stops working again?

    Yosemite is still full of bugs that Apple has not been able to fix.  Thank Apple for the damage to your Photoshop install.
    To re-create the preferences files for Photoshop, start the application while holding down Ctrl+Alt+Shift (Windows) or Command+Option+Shift (Mac OS). Then, click Yes to the message, "Delete the Adobe Photoshop Settings file?"
    Note: If this process doesn't work for you while you're using a wireless (Bluetooth) keyboard, attach a wired keyboard and retry.
    Important: If you re-create the preferences by manually deleting the Adobe Photoshop CS6 Settings file, make sure that you only delete that file. If you delete the entire settings folder, you also delete any unsaved actions or presets.
    Reinstalling Photoshop does not remove the preferences file. Before reinstalling Photoshop, re-create your preferences.
    NEW Video! Julieanne Kost created a video that takes you through two ways of resetting your Photoshop preferences. The manual preference file removal method is between 0:00 - 5:05. The keyboard shortcut method is between 5:05 - 8:18. The video is located here:
    How to Reset Photoshop CS6’s Preferences File | The Complete Picture with Julieanne Kost | Adobe TV
    Mac OS
    Important: Apple made the user library folder hidden by default with the release of Mac OS X 10.7. If  you require access to files in the hidden library folder to perform Adobe-related troubleshooting, see How to access hidden user library files.

  • Help With Dynamically Linking Premiere With After Effects

    Recently, I edited some video footage in Adobe Premiere, dynamically linked it with After Effects, and added several effects and transitions within the latter application. However, after I thoroughly finished with my effects editing, I wished to place my After Effects Composition once more into Premiere, but this task met to no avail.
    Whenever I copied, dragged, or dynamically linked the After Effects project into Premiere, the footage showed up displaying either "Media Offline" or a series of colors that you sometimes see when a tv channel is offline. Now, I did read several posts describing the dynamic link as being only ONE WAY, but is there no possible way to move my After Effects composition back into Premiere? Or do I have to start from scratch by copying the Premiere footage into After Effects, THEN dynamically linking it to Premiere?
    Any help would be hugely appreciated!

    Right, I realize that now, but that would require deleting the current dynamically linked After Effects project, right?
    Also, I think the solution to my problem would be found if I could find a way to remove the dynamic link between After Effects and Premiere. Any ideas?

  • HT204088 I am receiving unauthorised billings for purchase from application Kingdom Age from seller Funzio, Inc .  I can't find a place/link to cancel the billing neither report this problem. The link REPORT A PROBLEM only links you to Apple Store without

    I am receiving unauthorised billings for purchase from application Kingdom Age from seller Funzio, Inc .  I can't find a place/link to cancel the billing neither report this problem. The link REPORT A PROBLEM only links you to Apple Store without a hint/directions whre you can report the problem.
    I've been surfing all parts of the website and didn.t find a manner to REPORT A PROBLEM with purchases on my behalf not authorized.

    Hi..
    Just to be on the safe side if you have not already changed your Apple ID password, probably should do that.
    How to change your Apple ID password
    And you can use the email form for contacting Apple here > Apple - Support - iTunes Store - Contact Us

  • How to link oracle with xml

    i want to know the coding to link oracle with xml.tq.

    You're going to need to expand a little on this question, since I'm not quite sure what you mean by "link". What kind of problem are you trying to solve, so we can help... Thanks.
    If you're just starting out with Oracle and XML, a book like Building Oracle XML Applications or the Oracle XML Handbook might be the right place to start, in addition to our own online documentation at http://download.oracle.com/otndoc/oracle9i/901_doc/index.htm

Maybe you are looking for

  • How do i view a movie on my laptop on the tv?

    how do i view a movie on my laptop on the tv?

  • Collective posting of Inbound Delivery with reference to External ID

    Hi, I have created few Inbound Delivery (for different PO) with same External ID reference. Now when I try to process these Inbound Delivery through T. Code: VL06IG with reference to External ID, system doesnot consider any Inbound Delivery. The Exte

  • How  to delete(remove) one row(record) from a dynamic table

    Hi, I have adynamically created table. I want to delete 1 record(Row) from that Dynamic table. Say if my dynamic table contains 5 records(rows);after deletion of 1 record(1 complete row)from that dynamic table,the number of records(rows) should be 4

  • Problem with DVD burning

    I was trying to burn DVD with GUI it failed multiple times, so I tried with growisofs, but problem is the same: :-[ WRITE@LBA=10h failed with SK=5h/INVALID ADDRESS FOR WRITE]: Invalid argument if I try again it shows :-[ WRITE@LBA=0h failed with SK=5

  • Java problem -- sending email via JSP page

    Below is a copy of my feedback page Basically, I am doing my work in a JSP page. For now, my plan is that when I click on the ''submit'' button, everything written on the text boxes will be sent to my email (my hotmail address) However, I do not know