Is it possible to combine pdfs from software containing the file by dragging and dropping them?

We have a piece of software that we profile PDF files into it and then have a need to combine those PDFs into one file.  Is it possible to just drag and drop from the software into the combine files area?  I know if you open the files first, you can do that or if you save the documents locally, then you can combine them.  It would be ideal to just select the files in the software, then drag and drop them into the combine pdf window.  We are using Adobe Pro XI.

Hi Hawk2000,
The workflow you are talking about is very much possible with Acrobat and a good example is Microsoft Outlook from which we can select multiple e-mails and simply drag into Acrobat combine dialog box for combining.
What happens when you drag files from you software? Is it public software?
Can we test your software?
Regards,
Anoop

Similar Messages

  • Is it possible to transfer apps from my macbook to a windows computer and play them

    Is it possible to transfer apps from my macbook to a windows computer and play them?

    Click here and request assistance.
    (76022)

  • How can i get the address with drag and drop from address book into pages?

    I want to creat a letter withe the new pages. Normaly it was possible to put the adress from the adressbook with drag and drop into the letter. So it was possible to create one letter with many different adresses. But now I didn't find this function any more. How to do ist now?
    Withe best regards and I'm sorry for may bad english
    Klaus

    Sounds like you "upgraded" to Pages 5.
    Apple has removed over 90 features from Pages 5.
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=3527487677f0c 6fa05b6297cd00f8eb9&mforum=iworktipsntrick
    Pages '09 should still be in your Applications/iWork folder.
    Archive/trash Pages 5, after Exporting your files to Pages '09, and rate/review it in the App Store, then get back to work.
    Peter

  • Hello.... I already loaded logic 9 on my laptop hard drive... I would to load all the samples and loops on an external drive... Do I need to reinstall from DVD's or can I drag and drop?

    Hello.... I already loaded logic 9 on my laptop hard drive... I would to load all the samples and loops on an external drive... Do I need to reinstall from DVD's or can I drag and drop?

    Thank you.... Would you know where they would be on my hard dive? Are they all together?

  • I can't remove icons from the dock, they don't move at all when I try to drag and drop them off the dock

    I can't remove icons from the dock, they don't move at all when I try to drag and drop them off the dock any help out there?

    Restart and see if that solves your issue.

  • When I save a pdf from Safari 7, the file is empty

    Before I upgraded to MAvericks and Safari 7 I used to be able to save pdfs to my desktop with no problem. However, when I save now, all I get is an icon. When I try to open it, I get the message that the file is empty, and sure enough when I go to info the size of the file is zero.
    As far as I can tell I am doing exactly the same as I was doing before upgrading.
    What is wrong? And idea how I can fix this?

    Better to save files to a designated folder in the Finder then the desktop.
    Desktop preferences may be corrupted.
    Open the Finder. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following:
    ~/Library/Preferences/com.apple.desktop.plist
    Click Go then move the com.apple.desktop.plist file to the Trash
    Try saving a PDF file.

  • PDF XFA form/internet browser/JAVA application/Drag and Drop

    Hi guys,
    I need to be able to open a PDF XFA form (a PDF document where I have some input controls and javascripts for validation) inside a JPanel.
    If this is not doable am thinking if i can open this pdf form in a web browser by launching it from my java application.
    And when I do this, I want to be able to drag and drop between the java application and the browser.
    Anyone can tell me if that is doable?
    Thanks and Regards,
    Rawad

    Tristan,
    I am stuck in the same place. Perhaps we could work on this together.
    I am trying to drag a single item from a JList to a text editor, Word, etc. I have two problems:
    1) I can't seem to get just the item in the JList to drag. It wants to drag the entire JList component.
    2) How does one define the remote application as the drop target? Have not found any examples either.
    Is the drop target actually the system clipboard?
    Rp

  • In finder cannot easily change files from one folder to another. Drag and drop does not work. There should a cut and paste feachure.

    In finder I cannto easily change files from one folder to another.  There should de a cut and paste for this.  Not drag and drop. thanks P.

    paulfromqueretaro wrote:
    In finder I cannto easily change files from one folder to another.  There should de a cut and paste for this.  Not drag and drop. thanks P.
    OS X is all about keyboard shortcuts.
    To cut       cmd+x
    To copy     cmd+c
    To paste    cmd+v
    With the Mouse, hold command and drag to your destination.

  • Combining files by drag and drop not working

    running acrobat  XI on XP ... Hp pc/ laptops when you try to drag a pdf attachment from gmail and try to drop it to combine with others it's no longer allowed    (circle w/ a line thru it -displayed) - this option was working  previoulsy

    Hi Mikem15211307,
    Document needs to be downloaded from gmail server to your local storage so that it can be processed and merged with other documents.
    Regards,
    Rahul

  • How to change the effect of drag and drop from MOVE to COPY in alv tree.

    Hi,
    I am using a tool in which now the behaviour on drag and drop is MOVE. I want to change it to COPY.
    But I do not know which parameter needs to be set and where.
    please help.
    Regards,
    Smita.

    Hi,
    Thanks for quick reply.
    The code goes on like this
    METHOD set_dd_behavior.
      DATA: l_copysrc(1) TYPE c,
            l_movesrc(1) TYPE c,
            l_droptarget(1) TYPE c.
    Set the Drag and Drop Flavors.
      CREATE OBJECT dd_behavior.
      READ TABLE reg_functions WITH KEY name_function = 'COPY'
      TRANSPORTING NO FIELDS.
      IF sy-subrc = 0.
        l_copysrc = 'X' .
      ENDIF.
      READ TABLE reg_functions WITH KEY name_function = 'CUT'
      TRANSPORTING NO FIELDS.
      IF sy-subrc = 0.
        l_movesrc = 'X' .
      ENDIF.
      READ TABLE reg_functions WITH KEY name_function = 'PASTE'
      TRANSPORTING NO FIELDS.
      IF sy-subrc = 0.
        l_droptarget = 'X' .
      ENDIF.
      CALL METHOD dd_behavior->add
      EXPORTING
      flavor = 'MOVE'
      dragsrc = l_movesrc
      droptarget = l_droptarget
      effect = cl_dragdrop=>move.
      CALL METHOD dd_behavior->add
      EXPORTING
      flavor = 'COPY'
      dragsrc = l_copysrc
      droptarget = l_droptarget
      effect = cl_dragdrop=>copy.
      CALL METHOD dd_behavior->get_handle
      IMPORTING handle = dd_behavior_handle.
    ENDMETHOD.
    Here what changes needs to be done.
    As I see once COPY is added and next time MOVE is added.
    I am able to check because I am not able to edit while debugging the value of effect.
    Please suggest.
    Warm regards,
    Smita.

  • I would love to be able to drag and drop items from one page to another from the plan window. Is that possible?

    In desiging my website, I would like to be able to move items from one page to another by dragging and dropping from the plan architecture screen. It might also help if the window could have a zoom in and out feature to facilitate that.

    I just tried zooming in the plan window and discovered it works.

  • Illustrator Default PDF, if open in Acro Pro, drag and drop other .ai files, will they also....

    Hi! I'm trying to archive (for myself and others for easy access) about 50 fairly complex .ai files in a single Illustrator Default PDF and maintain editability and preserve layer and grouping integrity for every separate file, and, i'm probably going to have to do this hundreds of times (at least!) in the future. Once i save the initial first pdf file through Illustrator (wish didn't even have to do this, but seems no way to do in Bridge), then open the resulting pdf w Acrobat Pro, can i then just select an entire folder's worth of ai files in Bridge, drag and drop them into the pages panel and still have the dragged and dropped files also preserve all their AI info and layer/ group integrity? An if not, thinking if not based on 20 similar experiments, what's a fast way to do this. Doing this manually each time: opening each file in AI then saving as AI pdf, then combining and arranging them all after the fact, would be, well, fairly effed in terms of time, carpal tunnel, arthritis etc. Experimented w Bridge PDF Output batching (terrible rasterized lo-res results, but great for its intended purpose) and just dragging and dropping into Acrobat (lose complicated layer names and info, all flattened to single layer). Any help most appreciated, and as i do not have regular access to das interwebs  (i live on a boat) would appreciate and heed gentle admonishment if i've misposted or broached any community etiquette here. I've researched this as well as i can but can't find anything efficient/ elegant not involving InDesign, and even then the details are skimpy. Thank You! Getting mentally exhausted and not a little loopy. Keep in mind had to teach myself both Illustrator, Acrobat etc with access to the very limited offline help menus (the boat), so a complex answer involving learning InDesign would be learning curve can't even imagine with everything else struggling to do. But if you're willing to babystep diagram it out for me or can find me a link that does i will not only be eternally grateful but will do my durndest to master it and pass it on....Thanks Again! lil mc szpf
    PS If it helps I'm running the diligent dogged dusty beloved workhorse CS4 Design Premium on 27" monitor 2010 Mac (OS X 10.6.8), and took advantage of rare housesitting net access to install all most recent updates of everything, i'm barely competent w AI, PS, BR and been tackling Acrobat for past couple of months now....

    im glad that somebody is atleast trying. perhaps i need to be more clear.
    i will step by step describe the issue in detail.
    1) i open an email that contains an attachment .dxf or .pdf
    2) i click on the attachment shown in the email and aprompt comes up asking if i want to open or save the attachment.
    3) i select save. (by default it saves to a downloads folder. but i have also chosen to use other folders (when i did that it wouldnt save them)
    4) i highlight the downloads arrow on the right top side of my browser and click it
    5) it pulls down a list of the files that i USED to be able to click and drag onto my destop, or anyplace i chose
    6) used to be when i clicked and held the left mouse button down on top of a file of my choosing it would highlight and as i began to drag, a ghost image would appear of the file i was dragging. showing a (/) symbol next to it showing i couldnt drop the file within the browser and a + simbol showing that i could drop the file when the file was hovering over a place where i could drop the file such as my desktop or other folder. now, when i click and hold on the file.... I DONT get anything. when i drag. nothing follows. while i am "dragging" in the area that is my browser, i get the pointy finger icon. as soon as i enter an area where i could have dropped the file as before, i get my standard cursor arrow.
    its really as if the drag and drop feature just dosent work IN FIREFOX.
    i can drag and drop files all day long everyplace else.

  • Can't Drag and Drop from pages bar in Acrobat XI Pro for Mac?

    MAC OSX 10.7.5
    Acrobat XI Pro
    In adobe Acrobat XI for Mac, how do I drag pages from the Pages Thumbnail sidebar into finder and make a new PDF?
    In windows I can simply select the pages, drag and drop them into Explorer and it creates a completely new PDF with the pages I dragged.  I've tried everything on my Mac and I can't get it to extract this way.
    It's extremely slow and frustrating having to manually right click extract, select the pages, open it in a new adobe window, then have to save the file through the menu. 
    On windows I just select the page, drag to the folder, click , and rename.

    I was suddenly having the same problem in Acrobat XI Pro for Windows (recently upgraded to CC from Acrobat X).  For the past while I've sometimes had to use the "insert from file" tool to get a page added from another file.  I couldn't figure out why dragging sometimes would no longer work, but was too busy to go looking for a solution until tonight. 
    The solution was given by JoshTatum24 above. Switch from a scrolling page display to single page display.  Now I can drag pages between documents again.  THANK YOU Josh!
    Oh, and CORREAdmin,  it does not matter whether the hand or arrow selection tool is active, my mouse pointer is always an arrow when positioned in the page thumbnails panel.  Switching selection tools does not make a difference in dragging, but switching between scrolling and single page display definitely DOES make the difference.

  • Why is the program asking for a password to color a PDF. I changed the end to png and it was working and now quit

    I was using PDF from a nonprofit i work for to color with PS Elements. It worked and then no longer allows me to drop files into PS Elements.
    First I download the PDF's ....then I change the end from PDF TO .png and then drag and drop into PS Elements ....color .....
    Then I put the files into DropBox  and send them to iphoto to use in Doceri
    FIrst the error message was about Parse
    Now the message is that I need a password to use the program.
    Friends all over the country can get this to work but it is NOT WORKING. I emptied and redownloaded dropbox.....not the problem.
    We set up a dummy account and still could nto use.

    PSE asks for a password when the file was password protected by whoever created it. You can't really expect decent results if you just change the extension of a file. A PDF is a very different animal than a png file and contains very different information, so it's not surprising your results are poor. That's the sort of thing you may get away with once in a while, but you can't expect to use it as a regular workflow.
    Your whole procedure sounds extremely complicated for no particular good reason, at least as you describe it. It would be simpler to open the pdf in Preview and save a copy as a png if that's the format you need, but saving a pdf as anything other than a pdf will generally create a lousy looking file. I would just leave PSE out of the equation here, since you don't seem to be doing any editing with it.

  • Drag and drop file into Outlook from AIR application

    I am hoping to see if this would be possible with the Adobe AIR API. We currently have a desktop AIR application that clients install in order to facilitate certain operations triggered via a web application (such as opening files directly from the web).
    One of the actions we are requested to support is the ability to drag and drop files from our web application directly into Outlook and have the file added as an attachment. I saw the documentation at Adobe Flash Platform * Dropping file promises and was wondering if this might be a possibility, or if there was some other method of performing this.
    We are trying to get around the fact that users now have to download a document to their desktop before being able to attach in Outlook.
    Thanks for any assistance.

    You just aren't calling the right NativeDragManager functions. See http://help.adobe.com/en_US/as3/dev/WS5b3ccc516d4fbf351e63e3d118666ade46-7d83.html

Maybe you are looking for

  • Mail's Account Directory - accessible from a different start-up volume?

    I have two internal hard drives in my PowerMac G4. One volume has Tiger 10.4.11 installed; the other had Leopard 10.5.6. I have not yet fully transitioned from Tiger to Leopard, but I want to do so. However, before I do so I want to know if I will be

  • Multiple Instances of OEDQ on a single server

    Hi, I am running a Linux Machine (Linux 2.6.18-308.1.1.0.1.el5), on which I have the latest version of Oracle 11g release 2 installed. I have an instance of oracle Enterprise Data Quality tool running on an apache-tomcat-7 server. Port 8080 Now I hav

  • No privileges on system tablespace?

    I am a new dba & have succesfully created tables and added constraints. Today I tried to add a constraint to an existing table, and received the message ORA-01950: no privileges on tablespace 'SYSTEM' I tried to add the constraint as the owner of the

  • Down Payment exchange rate

    Hi, I had a clarification with respect to the accounting entries for down payment. I posted a down payment request [in EUR currency] using F-47 in March and the payment of this was made in April. I noticed that SAP has posted certain amount to the ex

  • Problem with file sharing - Lion to Mountain Lion

    I have two MBP's.  One is running Lion (2011 vintage), the other is running Mountain Lion (2012 vintage).  They are connected on my home network as follows:  MBP with Lion --> Ethernet cable --> D-Link Router --> Airport Extreme MBP with Mountain Lio