Combining logo elements in Illustrator

Hello,
Is there some way to combine different logo elements so it becomes one element and you can't ungroup it anymore? I mean other way than Pathfinder - Unite (this means flattening color).
Thanks for your help and suggestions!

...the reason is completely different...
What is the reason? What are you trying to accomplish?
As you've stated it so far, your question is ambiguous and without a better description doesn't really make sense in the context of Illustrator. Describe the actual workflow (chain of events) you are trying to accomplish.
So when someone opens the file there is just one element not many elements grouped all together.
Your terminology is ambiguous. "Element" is not a term of the program. What do you mean by "one element"? A term like "Group" has specific meaning in Illustrator.
What kind of file do you want to deliver? What software do you assume the recipient will be using to "open" it? If you deliver an Illustrator file to someone using the same version of Illustrator, they can do anything to it that you can do when you open it with Illustrator.
A motorcycle is one object. It's an object made up of many individual objects. If I deliver my motorcycle to you, you can manipulate it as a single object. If you have the tools and know-how, you can disassemble it into its constituent objects.
A Group in an object-based drawing program is one object. It's an object made up of individual objects (raster, vector, and/or text). If I deliver to you an Illustrator Group, which I'm calling "a logo," you can manipulate it as a single object. If you have the tools (Illustrator), you can disassemble it into its constituent objects.
Do you think there is such a way to combine all these elements into one element logo?
Again: If you are talking about combining paths into one object which cannot be "disassembled" in Illustrator, then you can rasterize it (replace it with a raster image, thereby removing the paths). A raster image is one object. It's an object which Illustrator cannot "disassemble" because a raster image is not a collection of individual objects which Illustrator can individually "understand"; it's just a list of color values (pixels) which Illustrator cannot edit. But that obviates the advantages and purposes of the original artwork having been created as vector-based artwork in the first place. And even Illustrator can still wreck it (re-rasterize it; disproportionally scale it, etc.) if the recipient doesn't know what he's doing.
If you're talking about delivering it to someone to use in some other program, there may be other delivery options which allow it to be used as a whole, but not disassembled by that program.
See how much guessing you are requiring from anyone interested in helping you? Stop being secretive. Explain exactly and in detail what you've got and what you intend to do with it.
JET

Similar Messages

  • Differences between Photoshop CS2, Elements and illustrator?

    I've been using iphoto which i love. but see it as a final stage for editing my photos.
    im thinking about getting one of the photoshops but dont know which one. this is where i ask what are the differences of CS2, elements and illustrator. Also, what do they each do?
    I got illustrator for a little bit but didnt know how to use it. i found it really annoying and got rid of it.
    On my old windows laptop would use photoshop 7.0 or whatever it was. i knew how to do the basics but was no expert on it.

    As Terence suggested PSE 4 is, IMO, the way to go. Although I use PS CS3 it's just too pricey for the average consumer and PSE4 can do it all except for converting to CMYK for printing on high-end printers. Here's an advanced example of what you can do with PSE4.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Printing every possible pair combination of elements in two arrays??

    Hi there,
    I'm trying to implement the problem of printing every possible pair combination of elements in two arrays. The pattern I have in mind is very simple, I just don't know how to implement it. Here's an example:
    g[3] = {'A', 'B', 'C'}
    h[3] = {1, 2, 3}
    ...code...??
    Expected Output:
    A = 1
    B = 2
    C = 3
    A = 1
    B = 3
    C = 2
    A = 2
    B = 1
    C = 3
    A = 2
    B = 3
    C = 1
    A = 3
    B = 1
    C = 2
    A = 3
    B = 2
    C = 1
    The code should work for any array size, as long as both arrays are the same size. Anybody know how to code this??
    Cheers,
    Sean

    not a big fan of Java recursion, unless tail recursion, otherwise you are bound to have out of stack error. Here is some generic permutation method I wrote a while back:
    It is generic enough, should serve your purpose.
    * The method returns all permutations of given objects.  The input array is a two-dimensionary, with the 1st dimension being
    * the number of buckets (or distributions), and the 2nd dimension contains all possible items for each of the buckets.
    * When constructing the actual all permutations, the following logic is used:
    * take the following example:
    * 1    2    3
    * a    d    f
    * b    e    g
    * c
    * has 3 buckets (distributions): 1st one has 3 items, 2nd has 2 items and 3rd has 2 items as well.
    * All possible permutaions are:
    * a    d    f
    * a    d    g
    * a    e    f
    * a    e    g
    * b    d    f
    * b    d    g
    * b    e    f
    * b    e    g
    * c    d    f
    * c    d    g
    * c    e    f
    * c    e    g
    * You can see the pattern, every possiblity of 3rd bucket is repeated once, every possiblity of 2nd bucket is repeated twice,
    * and that of 1st is 4.  The number of repetition has a pattern to it, ie: the multiplication of permutation of all the
    * args after the current one.
    * Therefore: 1st bucket has 2*2 = 4 repetition, 2nd has 2*1 = 2 repetition while 3rd being the last one only has 1.
    * The method returns another two-dimensional array, with the 1st dimension represent the number of permutations, and the 2nd
    * dimension being the actual permutation.
    * Note that this method does not purposely filter out duplicated items in each of given buckets in the items, therefore, if
    * is any duplicates, then the output permutations will contain duplicates as well.  If filtering is needed, use
    * filterDuplicates(Obejct[][] items) first before calling this method.
    public static Object[][] returnPermutation(Object[][] items)
         int numberOfPermutations = 1;
         int i;
         int repeatNum = 1;
         int m = 0;
         for(i=0;i<items.length;i++)
              numberOfPermutations = numberOfPermutations * items.length;
         int[] dimension = {numberOfPermutations, items.length};
         Object[][] out = (Object[][])Array.newInstance(items.getClass().getComponentType().getComponentType(), dimension);
         for(i=(items.length-1);i>=0;i--)
              m = 0;
              while(m<numberOfPermutations)
                   for(int k=0;k<items[i].length;k++)
                        for(int l=0;l<repeatNum;l++)
                             out[m][i] = items[i][k];
                             m++;
              repeatNum = repeatNum*items[i].length;
         return out;
    /* This method will filter out any duplicate object in each bucket of the items
    public static Object[][] filterDuplicates(Object[][] items)
         int i;
         Class objectClassType = items.getClass().getComponentType().getComponentType();
         HashSet filter = new HashSet();
         int[] dimension = {items.length, 0};
         Object[][] out = (Object[][])Array.newInstance(objectClassType, dimension);
         for(i=0;i<items.length;i++)
              filter.addAll(Arrays.asList(items[i]));
              out[i] = filter.toArray((Object[])Array.newInstance(objectClassType, filter.size()));
              filter.clear();
         return out;

  • I just downloaded an app called "Logos for Adobe Illustrator thinking I would be able to design a logo?  I can't even figure out hot to start a new project!  Did I buy the wrong app?

    Did I just waste $30 buying something called "Logos for Adobe Illustrator?"  Do I need something else, some other program, to make it work?

    Jill,
    Presumably, you can create a new document, then File>Place one the templates, then edit it or whatever.
    But maybe you should click the Logos for Adobe Illustrator® Support link here:
    Mac App Store - Logos for Adobe Illustrator®
    Whether it is a waste depends on the quality of the templates and the extent to which you wish to create your own one and only artwork.

  • Issues with iFrame elements in Illustrator

    Currently I'm having issues with adding an iFrame element to an extension run in Illustrator.
    I'm using Eclipse 4.3 to run extension build 3, release 3.  I've created the basic project, and I get the extension to function correctly when there's just the basic button.  Further I can make changes to the button (change the text) and it continues to work.
    However, when I add an iFrame element to the extension it seems to crash.  The extension window opens and then immediately closes.  There are no error messages from Illustrator, nor are there any errors in any log files from adobe/illustrator.
    Here is the line I'm attempting to add to the basic starter application in the index.html file:
    <iframe src="http://localhost:8080/tests/testfixture/" width="150" height="150"></iframe>
    Also I can manually load index.html file and it works correctly when opened by Chrome.
    I am using Illustrator CC 17.1.0 32/64 bit.

    Currently I'm having issues with adding an iFrame element to an extension run in Illustrator.
    I'm using Eclipse 4.3 to run extension build 3, release 3.  I've created the basic project, and I get the extension to function correctly when there's just the basic button.  Further I can make changes to the button (change the text) and it continues to work.
    However, when I add an iFrame element to the extension it seems to crash.  The extension window opens and then immediately closes.  There are no error messages from Illustrator, nor are there any errors in any log files from adobe/illustrator.
    Here is the line I'm attempting to add to the basic starter application in the index.html file:
    <iframe src="http://localhost:8080/tests/testfixture/" width="150" height="150"></iframe>
    Also I can manually load index.html file and it works correctly when opened by Chrome.
    I am using Illustrator CC 17.1.0 32/64 bit.

  • Sapscript: How to combine two elements into a block when display ?

    /E  ITEM_CONDITIONS
    /:   PROTECT
    ZC &KOMVD-VTEXT&,,&KOMVD-KWERT&
    /:   ENDPROTECT
    /E  TOTAL_AMOUNT_ITEMS
    /:   PROTECT
    ZC &KOMK-SUPOS&
    /:   ENDPROTECT
    Hi, all. May i know how to combine the two elements into a same block when displaying?
    That's mean this two element content will not be split into two part between two pages when there is insufficient space in the front page.
    Thanks.
    Edited by: Jiansi Lim on Oct 8, 2008 12:24 AM

    You can evoke the PROTECT..ENDPROTECT in the print program before the call of the text elements.
          CALL FUNCTION 'CONTROL_FORM'
            EXPORTING
              command = 'PROTECT'.
          CALL FUNCTION 'CONTROL_FORM'
            EXPORTING
              command = 'ENDPROTECT'.

  • Running through combinations of elements

    I'm in a situation where I must cycle through an array of elements noting every combination of those elements as I go.
    Say I have an array of the length 3, resulting in the indexes of this array being 0,1,2.
    I must figure out every order that those indexes can be arranged like this:
    0,1,2
    0,2,3
    1,0,2
    1,2,0
    2,1,0
    2,0,1
    Six possibilities for three numbers.
    I know I can cycle through these possibilities with just two for loops, one nested into the other.
    But once I add another element to the array, the possibilities go from 6 to 24. The natural way to handle this would be to put another for loop in there, making a total of three nested for loops, continuing this further nestation for each successive element that is added to the original array. The problem is that the array must be of variable capacity, meaning that I am not going to know how many elements long that array is until the user tells me. Obviously I cannot respond and put in the appropriate nesting of for loops at run time.
    I have a feeling this problem could be solved with recursion, but I hear anything accomplished with recursion can be accomplished with for loops. I guess Im sort of looking for algorithmic advice on how to solve the problem of cycling through the combinations of the elements of a variable length array.
    Any input would be appreciated as I've been struggling with this for days.
    -Neil

    Here is how it prints...

  • Transferring a logo created in Illustrator to Publisher

    I am working at an internship for a government agency and developing pamphlets for our local hoarding coalition. The only software on the work computers is Publisher. So I created the pamphlets in Publisher. Worked out okay. Then they asked me to create a logo for the coalition. I decided this would be easier on my personal computer in Illustrator. It is really a basic logo (since I am a layman in graphic design), but I cannot figure out how to get the logo from Illustrator to Publisher without a background. So far, I have been saving the file as a .tiff and then placing it in Publisher. The problem is that the placement for the logo on one of the pamphlets is on a colored background. I tried changing the background of the Illustrator file to the same specs as the Publisher, but it definitely does not match up. I made sure that the Illustrator was in RGB when I changed the background, but I had originally set the document as CMYK. When I exported it this last time, I changed the settings to RBG, but it still looks darker than the background of the pamphlet in Publisher.
    I know that's a lot of info and there's probably a simple solution, but I'm graphic design illiterate. Any suggestions?

    If there are any effects, do what OldBob recommends, use PNG with transparency. You can safely increase the export size in the export dialog (don't use Save for MS Office) and reduce it down in Publisher, which will raise the effective PPI. Your prints will be just fine.
    It isn't typically worth exploring EPS export. It will work for many/most designs as long as there is zero effects (drop shadows, etc) or any transparency. But PNGs work just fine.
    Mike

  • Combined logo and navigation bar

    Is it considered to be poor layout to combine the company
    logo and navigation bar in the same image? I have created this
    image in Fireworks 8 as a jpeg to keep the gradients looking good
    for both the logo and navbar, but am not sure if it makes the page
    load any slower by having them in the same image? I do have
    rollover buttons on the navbar so I do have to export it as
    ‘HTML and images’ w/slices. I do find it easier to
    setup in Dreamweaver if they are together but could separate them
    with some extra work. Any suggestions? Thanks for your help.

    Navigation in an image? What - are you using hotspots?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Alex Mariño" <[email protected]> wrote in
    message
    news:erv068$hon$[email protected]..
    > The bottom line is - how big are your images. If adding
    the logo does not
    > increase the file size significantly then all is well.
    >
    > alex
    >
    > P-C-Surgeonz wrote:
    >> Is it considered to be poor layout to combine the
    company logo and
    >> navigation bar in the same image? I have created
    this image in Fireworks
    >> 8 as a jpeg to keep the gradients looking good for
    both the logo and
    >> navbar, but am not sure if it makes the page load
    any slower by having
    >> them in the same image? I do have rollover buttons
    on the navbar so I do
    >> have to export it as ?HTML and images? w/slices. I
    do find it easier to
    >> setup in Dreamweaver if they are together but could
    separate them with
    >> some extra work. Any suggestions? Thanks for your
    help.

  • Help with logo size using illustrator and photoshop

    hi everybdy, can somebody please explain to me how to know the right WIDTH, HEIGHT and PIXELS/INCHES when designing a business card, a post card, or a banner????????????????????????

    I could be misunderstanding your question, but it seems to me that each logo application should be designed/sized on its own, according to the size of the document (3-1/2" x 2" on a business card for example). For a business card, make it look nice on the card. For a banner, make it look nice, within the (much larger) bounds of the banner size.
    There is no "prescribed size" for each individual application. Each implementation of the logo should be sized according to the size of its document, what else is on the page with the logo, and what looks "good" to the designer (and the client).  :+)
    BTW, this is the Illustrator forum, and I suspect you were referring to pixels (?). For actual printed items using only AI vector art (such as a logo), pixels are irrelevant. (The vector artwork conforms to the resolution of the output device for each application, at the time it is imaged.) With the possible exception of web applications, send vector files (such as actual-sized pdf) to your print supplier.

  • It would be nice if you could combine Adobe CC Photoshop, Illustrator, etc... into one application Workspace.

    Scenario:
    I'm using Illustrator and Edge Animation to build a project. I’ve created project assets in both applications and to do that I need to flip back and forth between applications. Cool. Let’s say I need to make a quick edit, so now, I need to fire up one of these applications to make a simple change. And that edit was aligning something to the left... I find this workflow very annoying.
    Most of these applications have SIMILAR user interfaces, features and functions (e.g., align, Selection Tool, etc…), so why can't these features be rolled into one mega Adobe power house application. If you want to install more features/functions to your Adobe environment— it would be installed under the Workspace tab. This would save the trouble of having the user open and close programs to make quick edits. With Creative Cloud you would assume this would be ideal.
    Does anyone else feel my pain? Or it’s just me…

    Jeeze you should of been there 15 years ago! Moving between apps was a real pain. Now I don't find it that bad at all. I imagine that part of the reason they don't combine all of the apps is because not everyone needs all of the features etc for every project, and combining them all would require a huge chunk of memory to run. I'd imagine it'd be pretty cumbersome as well.
    But I do wish that they'd make things work the same way (drawing tools same in flash and illustrator for example)

  • Difficulty arranging graph elements in Illustrator CS6

    In every version up to CS 5, I could use the direct select tool to select an element of a graph (e.g., a tick mark, an axis or a data point) and move it to another layer. This was very useful because it allows one to hide certain elements or, more importantly, choose which element appears on top when two elements (e.g., two data points) overlap without having to break the graph.
    I can't seem to do this in CS6. Is there a new trick I need to learn here or has this functionality intentionally been de-activated?

    Monika,
    Thanks again for the reply, but as I said earlier, that won't work for me. I need to interlace different sections of overlapping line graphs. Just making one invisible doesn't solve my issue.
    Steve,
    I appreciate this suggestion, but unfortunately that won't do the trick. I don't want to delete the tick marks, I just want them to be below the axis lines. Attached is a screenshot that highlights the issue I am talking about. I want the red tick marks and the value bars underneath the black x-axis. The easiest solution in CS 5 was just to direct select the x-axis and move it up a layer.
    Wade,
    I think your options to copy-and-paste the element or expand the graph are going to be the best choices for me. In CS5, though, I was able to avoid having to expand the graph, which was helpful when there was a possibility the data would change (I guess I am the only one who receives excel files labeled "FINAL", then "FINAL FINAL", then "REALLY FINAL"? no joke!). When I moved the element to a new layer, Illustrator only re-created the missing element if I updated the graph, so that duplication wasn't always an issue, and when it was I could simply direct select and delete any elements I didn't want once they were on a new layer. (This no longer possible either.) In any event, I guess expanding the graph will now be best for most simple charts. Thanks for your help.

  • How do I make a logo designed in Illustrator hi-res for print use?

    e

    OldBob1957 wrote:
    A PDF keeps vector objects as vector, and thus resolution independent. Only if you have raster effects (drop shadows, gradients, or the like) would you need to worry about things like Press Quality -- though if you will be using PDFs much at all, it is a good idea to get into the habit of using the Press Quality setting for final output.
    Yup... and the default Illustrator also keeps the resolution of the ai file. (Caveat... you'd probably have to have created the file at 300 dpi/ppi???)

  • Batch combine files into one illustrator document - how to open target document?

    I am making a script which will:
    1) Open a folder of Illustrator files
    2) Open each file in the folder (these files are called the source files)
    3) Select all the contents of the source file
    4) Copy the contents of the source file
    5) Paste these contents into a target file as a new layer
    6) Ensure the new layer has the same name as the old source file
    However, I don't know how to tell Illustrator where my target file is. How can I do this?
    Also, when I paste, how can I turn off paste rembers layers. (So the layers get pasted into the new layer that has the same name as the old document).
    Here is my code:
    // JavaScript Document
    //Set up vairaibles
    var destDoc, sourceDoc, sourceFolder;
    // Select the source folder.
    sourceFolder = Folder.selectDialog('Select the folder with Illustrator files that you want to mere into one', '~');
    // If a valid folder is selected
    if (sourceFolder != null) {
              files = new Array();
              // Get all files matching the pattern
              files = sourceFolder.getFiles();
              if (files.length > 0) {
                        // Get the destination to save the files
                        destDoc = document.selectDialog('Select the final saved document', '~');
                        for (i = 0; i < files.length; i++) {
                                  sourceDoc = app.open(files[i]); // returns the document object
                                  var myLayers = sourceDoc.layers; // All layers in Active Document
                                  //Go through all layers of source document and copy artwork
                                  for (i = 0; i < myLayers.length; i++) {
                                            myLayers[i].hasSelectedArtwork = true;
                                  with(sourceDoc) {
                                            var count = pageItems.length;
                                            for (var i = 0; i < count; i++) {
                                                      pageItems[i].selected = true;
                                            redraw();
                                            copy();
                                            for (var i = 0; i < count; i++) {
                                                      pageItems[i].selected = false;
                                  //Create a new title variable that has the title of the source document
                                  var title = sourceDoc.name;
                                  var title = title.substring(0, title.length - 4); //(remove extension from name)
                                  //Close the Source Document
                                  sourceDoc.close(SaveOptions.DONOTSAVECHANGES);
                                  //Open the Destination Document and create a new layer in it that is named after the title variation
                                  var newLayer = destDoc.layers.add();
                                  newLayer.name = title;
                                  //Paste into this new layer
                                  destDoc = app.paste();
              else {
                        alert('No matching files found');
    Thanks in advance for any help   
    Edit: Also, when pasting, how can I paste in place instead of just pasting.

    I have been studying this script. It is similar to what I need except it places the source files (Instead of copying & pasting them)
    http://kelsocartography.com/blog/?p=204
    I have adapted the script to my needs and it works perfectly, except it has the same problem as before: It pastes the first source file, but then it endlessly starts pasting the second source file (in a loop) and so I have to force quit.
    So my new question is, when looping through files how can you get illustrator to move on the next one?
    The original kelsocartography had this line:
    thisPlacedItem = newLayer.placedItems.add()
    thisPlacedItem.file = imageList[i];
    I belive this line is what makes Illustrator move onto the next file, but I am not sure how to adapt it to my code.
    Here is my code so far:
    function getFolder() {
              return Folder.selectDialog('Please select the folder to be imported:', Folder('~'));
    function importFolderAsLayers(selectedFolder) {
              // if a folder was selected continue with action, otherwise quit
              var myDocument;
              if (selectedFolder) {
                        myDocument = app.documents.add();
                        var firstImageLayer = true;
                        var newLayer;
                        var thisPlacedItem;
                        // create document list from files in selected folder
                        var documentList = selectedFolder.getFiles();
                        for (var i = 0; i < documentList.length; i++) {
                                  // open each document in file list
                                  if (documentList[i] instanceof File) {
                                            // get the file name
                                            var fName = documentList[i].name.toLowerCase();
                                            var sourceDoc = app.open(documentList[i]); // returns the document object
                                            var myLayers = sourceDoc.layers; // Select All layers in Active Document
                                            //Go through all layers of source document and copy artwork
                                            for (i = 0; i < myLayers.length; i++) {
                                                      myLayers[i].hasSelectedArtwork = true;
                                            with(sourceDoc) {
                                                      var count = pageItems.length;
                                                      for (var i = 0; i < count; i++) {
                                                                pageItems[i].selected = true;
                                                      redraw();
                                                      copy();
                                                      for (var i = 0; i < count; i++) {
                                                                pageItems[i].selected = false;
                                            //Create a new title variable that has the title of the source document
                                            var title = sourceDoc.name;
                                            var title = title.substring(0, title.length - 4); //(remove extension from name)
                                            //Close the Source Document
                                            // check for supported file formats
                                            if ((fName.indexOf(".eps") == -1)) {
                                                      continue;
                                            } else {
                                                      if (firstImageLayer) {
                                                                newLayer = myDocument.layers[0];
                                                                firstImageLayer = false;
                                                      } else {
                                                                newLayer = myDocument.layers.add();
                                                      // Give the layer the name of the image file
                                                      newLayer.name = fName.substring(0, fName.indexOf("."));
                                                      // Place the image on the artboard
                                                      sourceDoc.close(SaveOptions.DONOTSAVECHANGES);
                                                      //Paste into this new layer
                                                      newLayer = app.paste();
                        if (firstImageLayer) {
                                  // alert("The action has been cancelled.");
                                  // display error message if no supported documents were found in the designated folder
                                  alert("Sorry, but the designated folder does not contain any recognized image formats.\n\nPlease choose another folder.");
                                  myDocument.close();
                                  importFolderAsLayers(getFolder());
              } else {
                        // alert("The action has been cancelled.");
                        // display error message if no supported documents were found in the designated folder
                        alert("Rerun the script and choose a folder with images.");
                        //importFolderAsLayers(getFolder());
    // Start the script off
    importFolderAsLayers(getFolder());

  • Combining closed paths in Illustrator CS3

    Dunno how simple this one is, but I have two closed paths of the same colour that overlap to appear as one object when printed. I'm trying to combine these two paths into one object so that if I apply a stroke weight to it, it outlines the whole object, instead of individually. Is there a simple way of doing this or do I have to add points manually?
    Keep in mind I'm not asking about a compound path.

    You use the pathfinder selecting both objects and clicking on the first icon at the top left if you wish you can keep this alive or you can expand it. In either case you can now apply a stroke to the new shape.
    Ore you can select both and then click on the live paint bucket and turn it into a live paint group and choose the option to paint both fills and strokes. and paint away.

Maybe you are looking for