Need to combine two .ai docs in Illustrator CS6... help!

Hello.  I would like to combine two existing .ai into one docs.

I know that you can create a new document with several work plans for a document of several pages, but I don't want to recreate the two pages from scratch.

How can I take two pages full .ai and combine them into a single document of two pages?

Thank you!

It is in the drop down palette layers

Tags: Illustrator

Similar Questions

  • Serial Illustrator cs6

    Hello, I need the number of series to install Illustrator cs6 please

    If you have purchased software from Adobe you should be able to locate your serial number by following the instructions in http://forums.adobe.com/message/3987968#3987968.

  • I want DC Pro?  I have a lot of documents that I need to combine.  I want to scan in pdf format, then convert them to a word doc so that I can copy parts of it and place the individual pieces in a single document.

    I have several hundred investigations that I need to combine them into a single document.  Can I use this software to scan, make a pdf file, then convert the pdf into a word file that I can copy parts of it and paste it into another document?

    Hi mommajayne,

    You will need Acrobat Pro DC to scan documents to PDF format.

    You can also combine and edit PDFS in Acrobat.

    For more information about Acrobat, please see this KB doc: https://helpx.adobe.com/acrobat/faq.html

    Let us know if you need additional assistance.

    Kind regards

    Meenakshi

  • Need help combining two SQLs similair in a single

    DB version: 10 gr 2

    I need to combine the following two queries into one query and return the following three columns


    Processed, unprocessed Quantity1 Quantity2, Total cost of Uprocessed




    Quantity1 untreated can be determined using
    select t.ITEM, sum(t.QTY)
      from (select cd.ITEM_ID ITEM, cd.ACTL_QTY QTY
              from CONVEY_HDR ch, CURRENT_INVN cd, ALLOC_HDR ah
             where ........
            UNION
            select sd.ITEM_ID ITEM, sd.INVN_QTY QTY
              from shp_dtl pd
            UNION
            Select item_id, inv_qty from another table
        GROUP BY.....
    
    
    ITEM        SUM(T.QTY)
    ---------- ----------
    88JAT                25
    000002395           1
    300108396          27
    000004397           7
    73984290           15
    Quantity2 untreated can be determined using

    select t.ITEM, sum(t.QTY)
         from (select cd.ITEM_ID ITEM, cd.ACTL_QTY QTY
                 from CONVEY_HDR ch, CURRENT_INVN cd, ALLOC_HDR ah
                ...........
        where rownum<6
       group by t.ITEM
       order by t.ITEM;
    
    ITEM        SUM(T.QTY)
    ---------- ----------
    189436171           2
    009438837         160
    000040685          16
    000032410          18
    Total fees unprocessed found using the sum of the quantities for a specific element by above two queries multiplied by
    ITEM_COST for this ARTICLE (which is in the table ITEM_DTL). For each element; ITEM_DTL.item_id = CARTON_dTL.carton_id

    Unprocessed total cost = (unprocessed Quantity1 + Quantity2 unprocessed) * ITEM_DTL. ITEM_COST

    Note: Unprocessed Quantity2 query looks very similair to the first SQL Union Quantity1 unprocessed, but ah. STAT_CODE < 90 for query Quantity2 unprocessed

    Published by: user636669 on January 14, 2009 10:40

    Published by: user636669 on January 14, 2009 10:57
    Corrected typo

    Published by: user636669 on January 14, 2009 19:07

    Hello

    Put the two queries that you posted in subqueries. You can then use their result sets as if they were tables.

    Do something like this:

    WITH  uq1  AS
    (
        select t.ITEM, sum(t.QTY) AS total
          from (select cd.ITEM_ID ITEM, cd.ACTL_QTY QTY
                  from CASE_HDR ch, CASE_DTL cd, ASN_HDR ah
        ... the rest of your first query goes here
    )
    ,     uq2  AS
    (
        select t.ITEM, sum(t.QTY)  AS total
             from (select cd.ITEM_ID ITEM, cd.ACTL_QTY QTY
                     from CASE_HDR ch, CASE_DTL cd, ASN_HDR ah
        ... the rest of your second query goes here
    )
    SELECT  uq1.item
    ,       uq1.total  AS "Unprocessed Quantity1"
    ,       uq2.total  AS "Unprocessed Quantity2"
    ,       (uq1.total + uq2.total) * dtl.item_cost
                       AS "Total Uprocessed Cost"
    FROM    uq1
    JOIN    uq2               ON uq1.item = uq2.item
    JOIN    item_dtl   dtl    ON uq1.item = dtl.item;
    

    If certain elements are in uq1 but not in uq2 (or more), then you will probably want to do outer joins.

    I have no used tables, so I can't test it myself.
    If you need assistance. then after a few examples from each data tables and the results desired from these data.

    Looks like you're doing the same join in each of your original queries.
    You can add an another subquery that makes that join once and then use this subquery in uq1 and uq2 subqueries.

  • combine two matrices

    Hi all

    1. I want to combine two matrices with the help of the loop.

    2 remove duplication

    Combine myParray and myCarray.

    ~ var myFinal = myParray.concat (myCarray)

    ~ alert ("myFinal:" + myFinal)

    var myDoc = app.activeDocument;
    
    var myPStyles = myDoc.allParagraphStyles;
    
    myParray = new Array();
    
    for(i=0; i<myPStyles.length; i++)
    {
        myParray.push(myPStyles[i])
        }
    alert("myParray: " + myParray)
    
    var myCstyles = myDoc.allCharacterStyles;
    myCarray = new Array();
    
    for(k=0; k<myCstyles.length; k++)
    {
        myCarray.push(myCstyles[k])
        }
    
    alert("myCarray: " + myCarray)
    
    //Combine Two Arrays
    
    for(i=0; i<myParray.length; i++)
    {
        for(k=0; k<myCarray.length; k++)
        {
            myParray[i].push(myCarray[k])
            }
        }
    
    alert("myFinalParray: " + myParray)    //Need output here
    

    Thank you

    Beginner_X

    var doc = app.activeDocument,
            psNames = doc.paragraphStyles.everyItem().name,
            csNames= doc.characterStyles.everyItem().name,
            allNames = [],
            allNames0 = {},
            z = 0, n, lp = psNames.length, lc = csNames.length;
    while (lp--) allNames0[psNames[lp]] = psNames[lp];
    while (lc--) allNames0[csNames[lc]] = csNames[lc];
    for (n in allNames0) allNames[z++] = allNames0[n];
    allNames.reverse();
    alert (allNames.join("\r"));
    
  • How to combine two user accounts

    I created a user account on my new MBP (os x 10.11.3) before using the migration assistant to transfer the data from my old MBP.

    Now I have 2 user accounts I need to merge into one

    Any advice for how to fix the welcome.

    THX & br - gerhard

    lookie here

    Combine two + accounts on the same machine

  • combine two daq physical channels in a single task

    Hi all!

    I use a PCI-6120 with a BNC-2120 to generate two signals: one is used to control an optical device which must be characterized, and the other signal is sent to a digital video camera to trigger the acquisition so that it is synchronized with the first signal. Everything is controlled with Labview.

    I want to give the possibility to the user to choose which channel to use for the first signal and channel to use for the second signal, depending on how the devices connected to the BNC-2120. So I would like to put two different "physical channel" screws on the Labview command window.

    My question is:

    What I need to create two different tasks to the signals to be generated on the appropriate channel, or can I combine two channels (and how?) think I handle only a single task to two channels always but do not forget that each signal is generated on the corerct channel, depending on the channel selected for each of the two signals...?

    Thanks a lot for your answers.

    Nice day.

    Luke

    Hi LucG,

    If you use only a single Council to create only a single task for two generations.

    You can choose several channels by clicking on "Restaurants" in the channel control physical choice multiple channels thanks ctr + click, or by concatenating multiple channels with a comma as on arrival at the VI.

    Then, when you provide data to the VI of writing, the data should be organized in a table, each channel is on a line and the order of the channels is the same as in the control of the physical channels.

    I hope this can help!

    Thank you

  • Combine two tables 1 d in a 2D array

    Hi all

    Maybe I forget what is obvious, but I can't find a solution to combine two tables 1 d in a 2D array AND (it is the impossible part for me) using the tables columns instead of lines.

    Example:

    Table 1:1, 2, 3, 4

    Table 2:5, 6, 7, 8

    Result: 1, 5

    2, 6

    3, 7

    4, 8

    The 'build array' function seems to add all tables as lines... I guess I could transpose the table, but I want it runs in a Subvi in constructions of different loop and I feel a little uncomfortable with it - I guess one would be left with a completely mixed table. I was maybe blind just to find the right function?

    Cheers, Jessi

    Hi Jessi,

    by default, LV is combining tables in rows. So when you need columns you must transpose the sets or use a different indexing scheme...

  • I have 9, 1 pages in PDF files that are accessible and the need to combine them into 1 PDF file.  I tried adding, adding and the combine process of PDF files. The file created does not take my changes. The file created is partially accessible, but I have

    I have 9, 1 pages in PDF files that are accessible and the need to combine them into 1 PDF file.  I tried adding, adding and the combine process of PDF files. The file created does not take my changes. The file created is partially accessible, but I have to re - the problems that I had fixed in the unique files. I need suggestions on what else can be done, if any. Using Acrobat pro XI.

    By habit, I tend to combine PDF files in the Page pane by right-clicking thumbnails then 'Insert of Pages'-> 'From File'. For me, this preserves the tags of these two documents, although the tags may have to be moved to the correct location (if I remember correctly the tags for inserted pages are put at the end of the tag structure, regardless of where the pages are inserted), if I put the tags in the document to insert into a container as a Section tag It makes the process easier. Travel set of tags in the right place is the only re-fixing that I remember having to do. What behavior you encounter?

    a 'C' student

  • Is it possible to combine two conditions before the assessor

    Probably, it's something that I'm over thinking. (It's been my week for this...)

    Working on a query that inserts, but he needs to consider two different columns and see what data is older than 3 minutes ago. I want to combine them before the assessor, then he would make the request somewhat easier read.

    This expression is possible?
    WHERE TO_DATE(SUBSTR(a.cdts,1,14),'YYYYMMDDHH24MISS') OR TO_DATE(SUBSTR(a.udts,1,14),'YYYYMMDDHH24MISS') > SYSDATE-(3/1440)
    I'm just curious is this can be done to make the query a little less wordy. It works fine otherwise.

    Thank you all and good weekend!

    Tony

    Hi, Tony,.

    As Solomon notes, OR connect to a State. In English, it is correct to say
    "where x or y is greater than z", but in SQL, you have to say
    "WHERE x > z OR y > z ', repeating the" > z.

    I would use TO_CHAR TO_DATE instead, for this:

    WHERE   a.cdts     > TO_CHAR ( SYSDATE - (3 / 1440)
                       , 'YYYYMMDDHH24MISS'
                     )
    OR      a.udts     > TO_CHAR ( SYSDATE - (3 / 1440)
                       , 'YYYYMMDDHH24MISS'
                     )
    

    One of the reasons why the date information storage in VARCHAR2 columns are a bad idea is that you will inevitably have incorrect data. Asking that the bad data TO_DATE may cause errors, causing all of the query produce nothing else than an error message. Using TO_CHAR avoids the risk of conversion of execution errors.

    In addition, the above query will be more effective. The optimizer may choose to use indexes on UDT or CAD. Even if it isn't, you'll only have to call TO_CHAR twice in the entire query, regardless of how many lines there are, because SYSDATE is considered to be a constant. You use TO_DATE, on the other hand, you'd have to call twice a line .

  • How to combine two annexes to function as one in a single file

    I don't know how to combine two calendars in a single file. I want to eliminate the process of selection of the two annexes and pulling them upward at the same time. They need to exist as a single file. I do this using the export and import function? Copy paste perhaps? Your help will be very appreciated.

    Thank you

    You can export a calendar in a SET, then import it back and add, in the second schedule. In order to develop more... you have two appendices A and B. Export to a file SET. Open B, then import the x from A to B. Under Options project to import in the import, import action Wizard, choose Add in the existing project.

    I hope this helps!

  • Combine two Flash project

    Hello!

    I have two FLA files and I need to combine

    Please tell me how to do...

    I just changed the names of symbols

  • Combine two jpg images

    I try to combine two JPGs as two PDF files into one.

    I have a PDF file with more pages and just add a page at the end. It seems to work. And when I save me it also includes the addition of the page.

    However, I'm now trying to merge two files jpg in the same style. This doesn't seem to work. Why?

    Thank you

    With the help of Pages ' 09 v4.3, you can combine two images, select both, group them, copy to the Clipboard and select new in the Clipboard in preview. They are now in PDF in preview, where you can save, export to other formats or copy/paste in Pages in PDF format.

    I reference the older Pages, because in the Pages v5.6.2, your travel Pages from the Clipboard to the product overview a file of Graphics PNG 72 dpi - not PDF and not the two combined images JPG.

    If you don't have a Pages ' 09 v4.3, you should combine your images in a graphics program dedicated (for example GIMP (free), Photoshop, designer of affinity, etc.).

    You cannot combine images in preview, as you can the PDF. The combination of the image seems to work until you save and view this content, to see that it did not work after all.

  • need to merge two Skype accounts

    Hi, I need to merge two Skype accounts. How could I get this?

    Hello Heather

  • If I have two modems in the same office... windows xp can combine two connections at higher speed dial... my question is can I do the same thing for the dsl if I have two lan cards?

    If I have two modems in the same office... windows xp can combine two connections at higher speed dial... my question is can I do the same thing for the dsl if I have two lan cards?

    Hi cliffwho

    You can fill with connections to the LAN. However I recommend you read this first to understand what it is that you do. I hope this helps.

Maybe you are looking for

  • music Apple stopping randomly

    Hello I have problem with apple music his stop at random. Its happened several times during the day, at random (the two ios/osx/atv4). Start chunking and it continuous segmentation because I skip to the next song. I called apple support, but they don

  • I have improved my SB in windows 7 and I can't find my bookmark in windols.old

    How can I 'restore' my favorite, I had when Runic with win - XP?How can I 'restore' all the Add on, I had when Runic with win - XP?

  • ProBook 4530 s: win 10 results ProBook s 4530 in no Wi - Fi

    Good afternoon, all! I tried to upgrade a ProBook s 4530 on Windows 10.  Everything looks good, until I try to connect to Wi - Fi.  The widget simply says 'Impossible to connect wireless' and there is no showing why Event Viewer entry. The wired adap

  • For games?

    Can I get a glimpse on the card of the game on the ultrabook? Specifically the graphical information? See you soon Joey

  • Video playback options

    According to this article: http://www.blackberry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800332/1089414/How_To... I can only summon the media player on OS versions 4.3.0+. He suggested to launch the browser pointing to the AVI for ol