Need to join paths together into a single path

I have this image which is currently composed of separate paths.
Is there a way using pathfinder, effects>pathfinder, livepaint or some other way to group all of these together so all I have is the outline of the entire object pictured below?  I'm working with programmers who need the actual paths merged into one big path (preferably dropping all of the stuff in the middle, though that's not absolutely necessary) - it's not good enough just to select all the individual paths, hit group, and name that layer; paths have to be joined.
Looked like Illustrator could do this easily, but I haven't used the program that much and I'm probably missing something simple.
Thanks for any help.

I got it to work again in one case but not another.
When it works, the Expand button stops being grayed out in the pathfinder section, and upon hitting expand, a compound path is generated which has the paths I need.
EDIT --- ok, figured it out for real now.
Need to select several paths which are not yet in a group (doesn't work if they are grouped to start with)
Then Alt Click on the Unite function under Pathfinder Shape Mode
Then Expand under Pathfinder - and you're left with the compound path comprised of all the original parts (which is what I needed)
Thanks for the help.

Similar Messages

  • Need help with query joining several tables into a single return line

    what i have:
    tableA:
    puid, task
    id0, task0
    id1, task1
    id2, task2
    tableB:
    puid, seq, state
    id0, 0, foo
    id0, 1, bar
    id0, 2, me
    id1, 0, foo
    id2, 0, foo
    id2, 1, bar
    tableC:
    puid, seq, date
    id0, 0, 12/21
    id0, 1, 12/22
    id0, 2, 12/22
    id1, 0, 12/23
    id2, 0, 12/22
    id2, 1, 12/23
    what i'd like to return:
    id0, task0, 12/21, 12/22, 12/22
    id1, task1, 12/23, N/A, N/A
    id2, task2, 12/22, 12/23, N/A
    N/A doesn't mean return the string "N/A"... it just means there was no value, so we don't need anything in this column (null?)
    i can get output like below through several joins, however i was hoping to condense each "id" into a single line...
    id0, task0, 12/21
    id0, task0, 12/22
    id0, task0, 12/23
    id1, task1, 12/23
    is this possible fairly easily?
    Edited by: user9979830 on Mar 29, 2011 10:53 AM
    Edited by: user9979830 on Mar 29, 2011 10:58 AM

    Hi,
    Welcome to the forum!
    user9979830 wrote:
    what i have:...Thanks for posting that so clearly!
    Whenever you have a question, it's even better if you post CREATE TABLE and INSERT statements for your sample data, like this:
    CREATE TABLE     tablea
    (       puid     VARCHAR2 (5)
    ,     task     VARCHAR2 (5)
    INSERT INTO tablea (puid, task) VALUES ('id0',  'task0');
    INSERT INTO tablea (puid, task) VALUES ('id1',  'task1');
    INSERT INTO tablea (puid, task) VALUES ('id2',  'task2');
    CREATE TABLE     tablec
    (       puid     VARCHAR2 (5)
    ,     seq     NUMBER (3)
    ,     dt     DATE          -- DATE is not a good column name
    INSERT INTO tablec (puid, seq, dt) VALUES ('id0',  0,  DATE '2010-12-21');
    INSERT INTO tablec (puid, seq, dt) VALUES ('id0',  1,  DATE '2010-12-22');
    INSERT INTO tablec (puid, seq, dt) VALUES ('id0',  2,  DATE '2010-12-22');
    INSERT INTO tablec (puid, seq, dt) VALUES ('id1',  0,  DATE '2010-12-23');
    INSERT INTO tablec (puid, seq, dt) VALUES ('id2',  0,  DATE '2010-12-22');
    INSERT INTO tablec (puid, seq, dt) VALUES ('id2',  1,  DATE '2010-12-23');This way, people can re-create the problem and test their ideas.
    It doesn't look like tableb plays any role in this problem, so I didn't post it.
    Explain how you get the results from that data. For example, why do you want this row in the results:
    PUID  TASK  DT1        DT2        DT3
    id0   task0 12/21/2010 12/22/2010 12/22/2010rather than, say
    PUID  TASK  DT1        DT2        DT3
    id0   task0 12/22/2010 12/21/2010 12/22/2010? Does 12/21 have to go in the first column because it is the earliest date, or is it because 12/21 is related to the lowest seq value? Or do you even care about the order, just as long as all 3 dates are shown?
    Always say what version of Oracle you're uisng. The query below will work in Oracle 9 (and up), but starting in Oracle 11, the SELECT ... PIVOT feature could help you.
    i can get output like below through several joins, however i was hoping to condense each "id" into a single line... Condensing the output, so that there's only one line for each puid, sounds like a job for "GROUP BY puid":
    WITH     got_r_num     AS
         SELECT     puid
         ,     dt
         ,     ROW_NUMBER () OVER ( PARTITION BY  puid
                                   ORDER BY          seq          -- and/or dt
                           )         AS r_num
         FROM    tablec
    --     WHERE     ...     -- If you need any filtering, put it here
    SELECT       a.puid
    ,       a.task
    ,       MIN (CASE WHEN r.r_num = 1 THEN r.dt END)     AS dt1
    ,       MIN (CASE WHEN r.r_num = 2 THEN r.dt END)     AS dt2
    ,       MIN (CASE WHEN r.r_num = 3 THEN r.dt END)     AS dt3
    ,       MIN (CASE WHEN r.r_num = 4 THEN r.dt END)     AS dt4
    FROM       tablea    a
    JOIN       got_r_num r  ON   a.puid  = r.puid
    GROUP BY  a.puid
    ,            a.task
    ORDER BY  a.puid
    ;I'm guessing that you want the dates arranged by seq; that is, for each puid, the date related to the lowest seq comes first, regardless of whther that date is the earliest date for that puid or not. If that's not what you need, then change the analytic ORDER BY clause.
    This does not assume that the seq values are always consecutive integers (0, 1, 2, ...) for each puid. You can skip, or even duplicate values. However, if the values are always consecutive integers, starting from 0, then you could simplify this. You won't need a sub-query at all; just use seq instead of r_num in the main query.
    Here's the output I got from the query above:
    PUID  TASK  DT1        DT2        DT3        DT4
    id0   task0 12/21/2010 12/22/2010 12/22/2010
    id1   task1 12/23/2010
    id2   task2 12/22/2010 12/23/2010As posted, the query will display the first 4 dts for each puid.
    If there are fewer than 4 dts for a puid, the query will still work. It will leave some columns NULL at the end.
    If there are more than 4 dts for a puid, the query will still work. It will display the first 4, and ignore the others.
    There's nothing special about the number 4; you could make it 3, or 5, or 35, but whatever number you choose, you have to hard-code that many columns into the query, and always get that many columns of output.
    For various ways to deal with a variable number of pivoted coolumns, see the following thread:
    PL/SQL
    This question actually doesn't have anything to do with SQL*Plus; it's strictly a SQL question, and SQL questions are best posted on the "SQL and PL/SQL" forum:
    PL/SQL
    If you're not sure whether a question is more of a SQL question or a SQL*Plus question, then post it on the SQL forum. Many more people pay attention to that forum than to this one.

  • How do i join multiple clips into a single movie?

    I imported various video clips from my device into imovie 09. I have move all my selected parts of all the clips into my project pane. How do I join all these seperate clips in the project pane into one single movie, and then save it as such??

    i have used the share menu to save the movie under quicktime. This brings two more questions:
    1. Is there not a way join the clips into one movie and save it with iMovie, rather than having to share it with another application?
    2. If I do share it with quicktime, can i delete the original clips from iMovie, or will that also delete the new movie in quicktime?

  • Taking the kth-column of multiple files and then joining them together in a single file

    Hi
    I would like some help with array manipulation
    I have multiple (1000) files with 5 columns each and 20,000 rows. The first row of each file has a header that labels the columns.
    I would like to be able to read these files, pull out colum 3 from each file and then build these into a new 2D array. It would be nice if they also had their corresponding header labels. So then I would end up with the new 2D array containing 1,000 columns (corresponding to column 3 of each of my 1000 files) with 20,000 rows plus a first row with the header labels.
    I would also like the option to in future select column 2 for example, or column 5; plus I would also like the functionality to allow me to perhasp pull out more than one colum, e.g. colum 2 and 3, before we build the new array.
    I hope I made some sense and that someone can help. Thanks you

    RVR,
    This is a great exercise to get familiar with LabVIEW's array functions.  A great place to start is actually the LabVIEW help on arrays, located here:
    http://zone.ni.com/reference/en-XX/help/371361B-01/lvconcepts/grouping_data_with/
    Depending on your data format, you can probably use the Read From Spreadsheet File VI to bring your data into a 2-d array.  You could then use the index array VI to pull your column out.  You could do this in a For loop and use Autoindexing to build your 1,000 column resulting array.  I would leave everything as a String format until I'm done. 
    This doesn't sound like a very difficult task.  Good luck!
    --Paul Mandeltort
    Automotive and Industrial Communications Product Marketing

  • How does one convert a text path back into a line path in Illustrator CS 5?

    The previous answer to the same question in Nov 2009 does not work for me. That was to copy and paste in front. I've tried every permutation of copy and paste; I renamed the path to path. It looks like a path when I add stroke, but it does not behave like one.  I can't cut it or join it to any other path. It remembers it's text path status.
    I'm running OS X 10.7.5.
    Thank you.

    anacathena wrote:
     ...Holding down Option, while using the Direct Selection Tool, adds a little plus sign to the side of the tool, as there is next to the pen tool when you are in a position to add points. Is the plus sign there to let the user know the tool is in an option mode?...
    The plus sign in this case means that another selection tool is being used called Group Selection Tool. You can pick it from the Tools panel if you click and hold the mouse on the Direct Selection Tool (white pointer) and then you don't have to hold Option when clicking with it. If you hold Option while using this tool will switch to the Direct Selection Tool (white pointer without the plus sign)
    Once there is text on the path. The option-click seems a reliable solution.
    Shouldn't make a difference with or without text on the path.
    [scott w] wrote:
    An easier option may be to select the path via the Layer Panel, then copy it.
    Scott, there is no way I can select the path without its text aspect via the Layers Panel in CS5

  • 'Join' two different field types together into a String - possible in Java?

    Not entirely certain whether this is a straightforward Java or more of a JDBC question:
    I have two fields, one is a String and one an integer. I need to concatenate these fields together to form one String, prior to performing an insert on a table. ie:
    String s = dbRS.getString("partition_name");    //get full string
    String partstr = s.substring(0, 14);      // get first 14 (alpha) characters
    int new_partition_number = max_partition_number + 1;      //create new unique partition number, incremented by 1Now I have
    - a String (partstr - i.e. "TN1234567890_")
    - an integer (i.e. 50)
    (NB. The number has to be an integer because it is subject to calculation elsewhere.)
    I wish to join these together into a String ("TN1234567890_50") and use the field in an inserted row. I've tried using
    String partition_string = new StringBuffer(partstr).append(new_partition_number ).toString();... but this doesn't work.
    I read on a forum that it's impossible to cast an integer to a String in this way in Java, which sounds pretty incredulous from where I am! However my Osborne Java 2 Complete Reference doesn't mention it at all.
    Any assistance will be very gratefully received!
    Thanks.

    wonder why he thinks you can't append an int to a StringBuilder.
    Works fine. Might of course not yield the expected result depending on expectations, but it works just fine.
    But then, the coding conventions reminiscent of C don't bode well.

  • Why Does iTunes Make Combining Songs Into a Single Album So Difficult?

    Can anyone explain, or refer me to a website, that explains and lists in a "1,2,3" manner the illogic of the iTunes "get info" panes and why iTunes splits, combines and erases data depending upon what you put in the "get info" area. I have looked at many websites with suggestions and some work and some don't. The frustration I have is that I cannot decipher the logic of what iTunes is doing. Some comments and examples:
    1. I thought it was convention when you highlight multiple anythings, and specify a change, this change is done on all highlighted things. For example, when I want to combine several songs into a single album, highlight them all and fill in information in the "get info area", sometimes it combines, sometimes it splits the songs, sometimes it erases the artwork. Even when I specify "part of a compilation".
    2. Sometimes when I add "various artists", it combines the various highlighted songs but then erases the artwork.
    3. One would think that when you specify any songs as "part of a compilation" that would automatically force these songs into a single album. Sometimes iTunes does, and sometime it does not.
    4. Even when I think I have entered exactly the same information there apparently is something different. It has taken me up to 15 minutes first of very careful checking of spelling, spacing, etc. then just totally randomly changing something before I can get songs together.
    5. Why isn't there just a very simple button that says something like: "no matter what, force the highlighted songs into a single album? Is there any way to simply and easily force songs together into a single album no matter what is in the individual "get info" areas?
    Anyway, you get the idea. Surely there is some set of rules or logic that I am totally missing. Thanks.

    Thanks, that was extremely helpful but unfortunately this very well laid out website confirms the fact that this is a very un-Apple-like interface that is confusing, contradictory and extremely difficult to use. Not sure if anyone from Apple reads these threads, but in the next version they need to do an extremely serious remake. I think this part of the interface must have been designed by refugees from the PC camp who somehow got hired by Apple!
    Thanks again.

  • COMPOUND PATH TO A SINGLE PATH

    HI,
    I have created a compound path, which is a circle, with a smaller circle cut out within it, creating a ring.
    Is there away of making that shape into a single path, so that it can not be relased?
    Or is it beacuse it has two paths that it always has to stay as a compound path?
    Thanks
    Carl

    (Takes you back to Illie88, don't it Jacob?) 
    Or even further, Steve (you may remember my being dutifully unmasked by Peter the other day).
    Yep :-) but what was before Illie 88? (was there anything?)
    Anyway I started off on Illie 88 as soon as we got computerized and was a long time trying to find out how to make holes in things. The cut doughnut method was the only way, and all by hand with Scissors and Join.
    Then along came Illie3 which I seem to remember had compounds but still no Pathfinder.
    And it wasn't until Illie5 that you could actually draw with the preview turned on. People here rushed out to buy it, it was a sort of WOW moment.
    As for new versions (or not so new) I am very conservative in these matters. Better to use something that works than something that was busted by being mended.

  • How to join two DataSource in a single InfoSource

    Hello,
    I have got two datasources which both share the same primary key (Field IDCO) and also have several individual fields. For example:
    Datasource 1:
    | IDCO | price |
    Datasource 2:
    | IDCO | amount |
    Now I would like to join both datasources into a single InfoSource that should look like:
    | IDCO | amount | price |
    In plain SQL I would do something like
    Select ... from datasource1 inner join datasource2 on datasource1.IDCO = datasource2.IDCO
    Any ideas how this can be achieved be achieved in the Data Warehousing Workbench?
    Best Regards
    Christoph

    Hi Christoph Außem, welcome to SDN world....
    Steps:
    1. Create a InfoSource with  |IDCO | price | amount -  InfoObjects. then map Datasource 1 with InfoSource here Mapping is like below..
    DataSource1-IDCO = InfoSource-IDCO
    DataSource1-Price  = InfoSource- price
    EMPTY (NULL       )  = InfoSource- Amount
    DataSource2-IDCO = InfoSource-IDCO
    DataSource2-Amount  = InfoSource-Amount
    EMPTY (NULL       )  = InfoSource- Price.
    In this wasy you can map the fields and InfoObjects.
    Thanks
    Reddy

  • How to map 2 tables together into a new one, like an Union?

    Hi.
    I am new in Oracle Data Warehouse Builder and what I'm wanting to do could be simple.
    My question is: How to map 2 tables into a new one? That is, what I need is to do a Union.
    See the following tables:
    What I have is:
    ---------------+ ---------------+
    | A | B | | A | B |
    |--------------- |---------------
    | 10 | 34 | | 13 | 39 |
    ---------------+ ---------------+
    Table 1 Table 2
    What I wish is:
    ---------------+ ----------------------+
    | A | B | Original table |
    |--------------- ----------------------+
    | 10 | 34 | 1 |
    |--------------- ----------------------+
    | 13 | 39 | 2 |
    |--------------- ----------------------+
    Then, I need put all data together into a new table and this new table should has a new column showing the original source of data to each record.
    Can I do such thing?
    I'm using the Oracle Warehouse Builder and trying to do a map in this way.
    Any hint will be very helpful. I also will appreciate an indication of some document which can show how to do it.
    Thanks .
    Rodrigo Pimenta.
    Brazil.

    Use the SET OPERATOR. That should help i guess.

  • Group Two Adjacent Clips Into One Single Clip?

    It seems like there ought to be an easy way to do this, but I can't seem to find it.
    I'd like to take two (AV) clips that are adjacent on the time line, and group/merge/copy (not sure what term to use) them together into one single clip. That so that I can then apply a single continuous movement, rotation, opacity changes, and so forth to the resulting single clip.
    If any of you are familiar with The audio-editing program called Digital Performer, what I'm looking for would be the AV analogy with Performer's "Merge Soundbites" operation.
    Anybody know how to do that?
    Thanks folks!

    Yes, nesting is the answer. select the clips you want to nest go to Sequence / Nest items / give it a name and there you'll got your nested sequence as a separate file in the browser.
    What a coincidence! I just nested a series of stills in order to be able to animate their size over time.

  • Export Multiple tables into a single Excel Sheet

    We have a use case where we need to export multiple tables into an excel sheet. The exportCollectionActionListener only allows one table (which is provided in the exportedId attribute) to be exported into Excel. So is there a method provided by adf to export more that one table into excel ?

    dvohra,
    I need to export multiple tables into a single excel sheet. These links only show how to export a single table to an excel sheet.
    I have tried out this : http://iadvise.blogspot.com/2007/04/export-adf-table-to-excel.html. But i am not getting the popup to save the file. So i can't find out where the file got created.

  • QUESTION:  In Elements 12, how do I join together separate slideshows into a single integrated alideshow?

    QUESTION:  In Elements 12, how do I join together separate slideshows into a single integrated alideshow?

    I hate to say this, but there is no way to put 1280X720 footage on a 1920X1080 sequence and upscale it to match the frame size without losing some quality. Basically, you are asking Premiere Pro to provide new pixels that were not in the original video. That is seldom a really good idea. You might want to try investing in program designed to upscale video. I have never used this, but there is a free trial, so give it a shot: http://www.infognition.com/VideoEnhancer/
    Of course, it all depends on the content. Try it with Premiere Pro. Only you can judge. However, you might need to consider putting all of your 1920X1080 on a 1280X720 sequence instead, and just produce your video at that size.
    Or, once again, this depends on the content, put some sort of frame around the smaller footage, either a blurred out version of the upscaled footage - lots of TV stations do this with 4:3 footage on a HD program, or purposefully make it even a little smaller, or crop it, and use parts of the same video in Picture-In-Picture. You have seen this before. A person talking on the phone in a larger frame to the left, and on the right a closeup of the mouth, or maybe a clip of the person they are talking to. Or use some B-Roll in the PiP.
    Get imaginative, because you already know that you messed up, so perhaps make it look like you did it on purpose.

  • How do I join multiple (short) audio clips into one single long audio clip in Premiere Pro CS5?

    Hello,
    The question is in the title but I'm wondering how I can join multiple (short) audio clips into one single long audio clip in PP CS5.5.  I put all my short clips right next to each other and selected all of them to see what options are available by right clicking and using the toolbar options at the top.  The closest that I got was to nest the sequence, but that's not what I really want.
    I'd like to merge all the short clips into one single (long) audio file to use under the video.
    Thoughts are welcome and  greatly appreciated.
    Thanks,
    -Melvin

    O.K. This is kind of fundamental and you will need to learn up on this fully ...but for now...
    Make sure you have the WAB ( work area bar )covering the length of the audio clips. ( You do not need to select them)
    Go to the File Menu> Export Media
    You will be given all the Export Options.  Choose Wave File
    Select option for Export Work Area.
    Choose where to export the file to ( HD location)
    follow your nose from there....
    http://tv.adobe.com/watch/learn-premiere-pro-cs5/exporting-with-adobe-media-encoder/
    BTW - Why are you taking the audio to Audition anyway? What are you going to do to it.

  • Convert/join multiple file formats (doc, pdf, text) into 1 single PDF/A using web services

    We would like to purchase LiveCycle for the PDF Generator feature, but we want to know if it will meet our technical requirements.
    We would like to convert a PDF, an HTML, a DOCX, and some custom text into 1 single PDF/A. Basically: joining 3 different files types and some text into 1 very long PDF/A file. Can we do this type of join?
    Also, we would like to install LiveCycle on a central server and then call a web service or use an API where we can input the 3 different files and the text and as output we would get 1 PDF/A back. Obviously there might be intermediary steps, but in essence we need to be able to do this conversion from our custom code by calling some LiveCycle API.
    Thanks!

    You can use Assembler service with PDFGenerator. There is support for Web Service endpoints(SOAP). Please go through this for details : http://help.adobe.com/en_US/livecycle/11.0/Overview/lc_overview_ds.pdf
    Thanks,
    Wasil

Maybe you are looking for

  • Downloads to my Iphone

    I´m quite new into Iphone and I want to know which downloads and applications are available for my Iphone for exp. Google earth. Where do I get them and how do I install them into my device?

  • Will i loose all my time capsule data if i upgrade to mountain lion from snow leopard

    i am thinking about upgrading from SL to Mountain Lion is there anything major i should be concerned with? will my time machine backups be availible? i mainly use Logic Pro

  • Web Page composer : Localizing Web Sites

    Hi,            I have done a PoC on Localizing Web Sites in web page composer. As you may be aware localization comes with 2 variants. One is the language and the other is the "Region" variant.            I have created region variants in KM admin an

  • HT2702 how to connect a phone to bluetooth

    I am trying to connect my phone to my mac. It says that it is paired, but it is not connected. What is the difference, and how do i fix that?

  • Oracle 9i for Redhat Linux 9

    Hi I have a P-III, 1Ghz 128MB RAM, 40GB HDD pc. There are two OS installed in it,i.e., Win200(prof)and Redhat Linux 9. As I am undergoing a course in Oracle 9i DBA, I have installed a copy of Oracle 9i Enterprise Edition in my Windows partition and a