Can you add fill color to outlines that are fills too? (colorizing a drawing after Live Trace)

I have a cartoon drawing that I plan to scan in and run Live Trace on to get into Illustrator.  To add color to all the white areas,, generally I would create a fill the shape of the area behind the traced area and color it.  With this one, I have a LOT more areas than I am use to.  Is there a way to just select one of these areas and tell it to put a color in instead of creating a shape of that area in each spot?  I know this sounds confusing!

Convert the Live-Traced object to a Live Paint object and fill distinct areas with the Paint Bucket tool. Check help files for more info.

Similar Messages

  • How can I add contacts in my iphone that are backuped in a pim file in my pc

    how can I add contacts in my iphone that are backuped in a pim file in my pc

    You have to get them from the file you have into iCloud, google, yahoo, outlook.com, AOL, an Exchange server, or some other service the phone can sync with, or into MS Outlook on your PC. Then you can sync them to the phone.

  • Can you please CLEAN up the podcasts that are no longer in service or being maintained? It's very tedious to click on someone's podcast to find that it hasn't been updated in 3 years.

    Can you please CLEAN up the podcasts that are no longer in service or being maintained? It's very tedious to click on someone's podcast to find that it hasn't been updated in 3 years.

    This is a user forum and it is best to post these inquiries to Apple Feedback: 
    http://www.apple.com/feedback/
    You are right, a lot of older dead podcasts do not belong in the podcasts section. But there is still a lot of these podcasts that have good information and deserve to still be listed. For example there is quite a few photography lesson based podcasts in which you can get good information from different sources.

  • For FaceTime, can you add an additional e-mail that is not your Apple ID e-mail?  Everytime I try to do this on my iPad it sends me a verification e-mail saying I am trying to change the e-mail address associated with my apple ID and wants me to verify.

    I am trying to add another e-mail address to FaceTime, but do not want to change the e-mail address associated with my Apple ID.  Everytime I try to add the e-mail address in my FaceTime settings, it send me a verification e-mail asking me to verify that I want to change to this new e-mail address for my apple ID.  I do not.  I just want to have an additional e-mail address for people to contact me via FaceTime. Does anyone know how to do this?

    You can have multiple addresses associated with your apple id. You will have to verify any changes before they can be added and this is done by sending you an email. This is to protect you from someone else makeing changes to your account.
    You can make any changes and view all your info here:
    My Apple ID
    https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/

  • Can you add thickness to an object thats seen when spinning?

    I understand how to make objects and images rotate in a 3D way.  I want to add thickness to it so it doesnt look like a piece of paper spinning around.  Not having much luck finding a tutorial or instructions on this or what exactly it would be called to make a search easier.

    I cant believe they havent put something like that in AE with everything else it can do!  Oh Well!  Well I found some tutorials on the shatter effect that seems to work but the problem Im having with it is when I extrude it to give it thickness, then rotate it a little to see its thickness, It doesnt seem to have "filling" in between.  Its like 2 paper thin layers over each other but with some walls connecting (attached a pic to show what I mean).  I generally do minor 3D effects like this with Illustrator, but with my desire to learn AE, I want to try to keep all the layout within AE as much as I can

  • Can you point me to the setting that reopens all word documents on startup after the laptop shuts down due to loss of power? I'm a mac book pro user.  Many thanks!

    It'd be great if you could also advise on reopening safari windows on start up.  I'm after the setting that helps us restore everything only after shutdown due to loss of power and not all the time!  Thanks!

    The option is in System Perferences on the General section (first Icone in Sys Perf) down near the bottom.
    It's called "Restore windows when quitting and re-opening  apps".
    But that may not be the setting your are looking for.
    There is also a setting on the Shut Down and Restart windows that says "Reopen windows when logging back in".
    But is you computer shutting OFF, "I Mean Really Shutting OFF", or just going into Sleep mode.
    If it is really turning complete off then that setting is not saved. For that to work the computer has to be shut down or re-started properly allowing the OS to save that App state.

  • HT201317 Can you add related photos to someone else's shared photo stream that you're subscribed to?

    Can you add related photos to someone else's shared photo stream that you're subscribed to?

    Welcome to the Apple Community.
    No, you can only add comments.

  • Can you add an RSS feed on an iweb blog that would allow visitors to receive new entries by email?

    Can you add an RSS feed on an iweb blog that would allow visitors to receive new blog entries through their email?

    RSS feeds don't do that - if they add the feed to an RSS reader (including Safari or FireFox) they will see new updates every time they check: but sending them emails on each added episode would require extra programming in the actual program, which iWeb doesn't provide. You would need to have a mailing list and send out an email manually each time you add an episode.

  • How can you add a where clause using "OR" with applied ViewCriteria?

    [JDeveloper 10.1.3 SU4]
    [JHeadstart 10.1.3 build 78]
    I am using JHeadstart, but have a question probably more in the ADF area. On the JHeadstart forum I asked:
    "I am overriding JhsApplicationModule's advancedSearch in order to be able to search in childtables. I created transient attributes, display those in advanced search and in the overridden method I check if any of these are filled by the user and create a where clause like 'EXISTS (SELECT 1 FROM <childtable> WHERE <column in childtable> = <column in EO's table> AND <another column in childtable> LIKE '<value supplied by user>)'. I add this whereclause using ViewObject.setWhereClause.
    So far so good and it works. However, if the user selects 'Result matches any criteria', combining setWhereClause and the normal advancedSearch QueryByExample implementation using ViewCriteriaRow do not provide the desired result, since the ViewCriteria and the setWhereClause are AND-ed together, which is fine if the user selects the (default) "Results match all criteria" (everything is AND-ed) but not the "Result matches any criteria", since then every criterium is OR-ed together, except for the setwhereclause criteria and the set of ViewCriteriaRows, they are AND-ed.
    I looked if I could specify that a WhereClause will be OR-ed to existing applied ViewCriteria, but no luck. Do I have to rewrite also advancedSearch's ViewCriteria implementation and write an entire setWhereClause implementation to be able to "OR" every criterium? Or any other suggestions? Can I look at the entire Where clause and rewrite it (after applyCriteria and setWhereClause are called on the VO)?
    Toine"
    Sandra Muller (JHeadstart Team) told me today: "This sounds like a JDeveloper/ADF issue that is not related to JHeadstart. The question is: how can you add a where clause using "OR" if there are already one or more ViewCriteria applied?
    To simplify the test case, you could create a simple ADF BC test client class in a test Model project without JHeadstart (in the test class, use bc4jclient + Ctrl-Enter), in which you first apply a few ViewCriteriaRows to a View Object and also add a where clause.
    Can you please log a TAR at MetaLink ( http://metalink.oracle.com/ ), or ask this question at the JDeveloper forum at http://otn.oracle.com/discussionforums/jdev.html ? (This what I am doing now ;-))
    Thanks,
    Sandra Muller
    JHeadstart Team
    Oracle Consulting"
    Anyone knowing the answer or am I asking for an enhancement?
    Toine

    Hi,
    Can you SET your whereclause as follows ?
    ('Y' = <isAnd>
    and EXISTS (SELECT 1 FROM <childtable> WHERE <column in childtable> = <column in EO's table> AND <another column in childtable> LIKE '<value supplied by user>))
    OR ('N' = <isAnd>
    AND EXISTS (SELECT 1 FROM <childtable> WHERE <column in childtable> = <column in EO's table> OR <another column in childtable> LIKE '<value supplied by user>))
    )

  • How Can I add a color profile to OS X 10.8.4?

    How Can I add a color profile to OS X 10.8.4?
    I've tried to locate the color profile folder but it's not availble.

    Hello gipseyeyes,
    It sounds like you're trying to add a ColorSync Profile to your Mac.  I found a few resources that may help.
    First, I recommend reviewing the following article:
    Mac OS X: How to Create a ColorSync Profile Used By Every Account
    http://support.apple.com/kb/TA22329
    The note in step 6 from that article is particularly useful for your situation:
    Note: You may need to make some of these folders if they do not exist.
    Also, the user Library in Mountain Lion is hidden, so you will need to follow these steps to get to "~/Library/ColorSync/Profiles/":
    OS X Mountain Lion: What is the Library folder?
    The Library folder contains files used by OS X and your apps, including your personal fonts and preferences. The Library folder is hidden. If you need to open it, make sure you are in the Finder, hold down the Option key, and then choose Go > Library.
    You can find the full article here:
    OS X Mountain Lion: What is the Library folder?
    http://support.apple.com/kb/PH11395
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • How can you add an image in Mail without being an attachment?

    How can you add an image in Mail without being an attachment?
    In otherwords I'd like to put my logo in the email not as an attachment but as an image.
    Is there a simpel solution to this problem?

    PBN1 wrote:
    How can you add an image in Mail without being an attachment?
    You don't.
    It's not possible. The e-mail protocol is designed for text; anything else has to go as an attachment.
    Different mail clients (such as Mail.app, the mail client bundled with Mac OS X) may have different ways of handling such attachments, but they are still attachments. Each mail client has its own rules and methods, so one may display a picture as if it were in the body of the message, but another client may do something completely different.
    A way of faking it is to format your message in HTML (which is a kind of text). The image is hosted on a remote server, not added to the message; instead, you include a link to it in the body of the message, as you would when building a web page. (This is also what the two tips helpfully provided by X423424X do, except that the link to the image is added in the signature, rather than the body of the message.) What exactly happens to it is, again, at the discretion of the mail client. In my case, for instance, displaying images in HTML messages is turned off, and will stay resolutely off.

  • Can you add page numbers to the PDF version?

    Can you add page numbers to the PDF version?

    Hello saradianapasik,
    If you start with a document created with Acrobat Pro, or exported from your word processor as a .pdf, then you should include page numbers in that originating application. After you have exported a .pdf form from FormsCentral, it is no longer editable.
    I hope that helps,
    Brian

  • How can I add location to a photo that does not have a gps location? On iPhoto it was easy.

    how can I add location to a photo that does not have a gps location? On iPhoto it was easy.

    You can use the Settings in the slideshow to Show Captions,  either the Description filed be display, the Title field or both.
    If you create the slideshow in iDVD from still photos from iPhoto you can add the Description and/or Title via the settings in iDVD.
    Since iDVD adds both automatically the user must go thru the slideshow and remove those items not wanted.

  • Can you add apps to iPad open in list

    Can you add apps to the open in list of an iPad

    As far as I know, you cannot add apps to the Open In list using any setting or built in feature in iOS. This is controlled by the iOS itself. IIRC, you can delete apps from the iPad that appear in the Open In list in order to make room for apps that you would like to appear in there, and if you continue to use the apps that you want to add to that list, eventually they will appear in the list. I believe that the more that you use one particular app, the more likely it will be for it to appear in the Open In list.

  • Can you add vids from a camra to Ipad

    Can you add vids from camra to ipad 2 (to make vids on imovie)

    surely. You need to sync the files to your camera-roll in iOS, use itunes/iphoto. IMovie in iOS can access all videos that are in the camera-roll ( photos.app ) .
    The Apple iPad camera connection kit will also be a big help  : With it you can insert a digital cameras SD-Card into the iPad and mass-import the footage . Using this you avoid the iTunes/PC/OSX procedure to load material into the ipad.

Maybe you are looking for