Help with stroke color

I'm working with Sketchup exports and every time I export a model as a vector and import into Illustrator, all my lines show up different colors...
OK so no problem, I should just be able to alter the stroke color of all these lines, right?
So I select all the paths I want to change the stroke color of and the message in the stroke appearance box says "mixed appearances" and there doesn't appear to be any option to change stroke color, yet I can change corner types and stroke point size....
Certainly there is a way to do this, without having to go through and select each and every single line!!
Thanks

acresofgreen wrote:
I just noticed however, that in the screenshot you provided, the Fill Box was active and not the Stroke Box.  To my knowledge, you can't change the stroke color unless the Stroke Box is active.
you're correct that is the only reason they cannot change the color of the strokes. If the use the appearance panel that might be a different story unless they select objects with the same appearance and not one that is mixed. Like apples and oranges the same but different.

Similar Messages

  • Problem with stroke color and weight

    I have an illustration of a chair I am working on using Illustrator CC.  It is made up of a combination of shapes and open paths.  In order to get the illustration filled correctly I used live paint to fill the open paths.  I was in the process of adjusting the stroke weight and colors but one stroke will not allow me to make any changes.  The stroke color is marked witha  question mark and the weight will not change at all.
    Update:  I have since posting this copied my artwork and pasted it into a new document.  I was able to correct the stroke on the problem path, but now there is an entire section of the chair which will accept no fill...
    Any help is appreciated.

    If I were you I would provide a sample .ai file and include some instructions to reproduce the issue you're talking about.

  • Help with Background Color

    Posting this for a second time -
    If I change the background color of my document, I can't see
    it, nor can I see the different fill colors of any symbols I add to
    Scene 1. The colors show fine when I run the movie. It is using the
    outline color to display all the objects on the work area whether I
    am in outline mode or not. I don't know what I did, but I could not
    find a menu item to turn it off.
    Thanks for your help.

    On the timeline, you should have 3 icons next to the layer
    name. If it's active, you'll see the 'pencil', otherwise you'll
    see: A dot or X, a dot of X, and then a square with a color.
    Each layer should have the square with a color. If the square
    has a black border with a fill, you are looking at the fills for
    that layer. Otherwise, if the border is a color, and the center
    matches the panel bg color, then you're looking at the outlines,
    but just for that layer.
    You may want to go through your timelines and make sure all
    of your layers are set to fill mode. Could be that you missed one
    somewhere.

  • Help with creating color schemes in Illustrator file

    I'm repeating a particular background image on each page of a calendar and would like to change its colors on each page. There are 2 gradients in the image which use a total of four different colors. I'm not at all skilled in color theory and was wondering if anyone can please tell me if there's an easy way to come up with harmonious color combinations that I can apply to the original Illustrator file? My shortcut solution would be to convert the color to grayscale and apply a color overlay, but the image just looks flat when I do that. I would prefer to adjust the gradients individually but just don't know how to find compatible colors.
    Here's a preview of the image followed by a DropBox link to the Illustrator file.
    https://dl.dropboxusercontent.com/u/52882455/background1.ai
    Thanks!

    Couple ideas for you:
    First, try using the color wheel on color.adobe.com.  Select the middle color and add your hex code to the color.  The app will automatically show you analogous colors.  See an example here. You can also experiment with the other color rules in the Color Rule menu (just click on one of them).
    Second, take a look at themes created by others.  If you are looking generally for colors that work well with yellow, you can browse the most popular themes and spot some which use yellow. 
    I hope that helps.

  • Help with Pantone+ colors?

    I know this has been posted many times but I have not been able to track down an answer...
    I'm working on Illustrator CC and looking to create a logo with PMS colors. I know the CMYK breakdown of a certain color, PMS 467, (9, 15, 34, 0), as we've been using it for years. When I go to use that color in CC, it's much darker and different.
    I looked here (http://helpx.adobe.com/illustrator/kb/pantone-plus.html) and tried to remove the Pantone+ libraries and replaced with Pantone from my old CS5. The problem is still occurring. Maybe it just isn't set to realize this? When I select color books though, the + is definitely gone, but the color is still off.
    It's not practical for me to use my old laptop with CS5, it's way too old and slow.
    Is there ANYTHING anyone knows on how to get through this? I know the people I am doing this logo for are going to want the PMS and the CMYK colors and I know they aren't going to be on CC/CS6. I desperately need the older color books on CC.
    Thank you so much in advance!!!

    Hi Monica - I should have mentioned in my original post - I did indeed do that.... still not working correctly

  • Can anyone help with changing colors without making a selection

    I've been trying to work the the script below. All the front most paths are black I want to change them all to yellow without having to select them first.
    Any help would be really appreciated. "I am a novice javascripter"
    var myStyles = app.activeDocument.pathItems;
    lastStyle=myStyles[myStyles.length-1]
    lastStyle.remove();
    frontStyle=myStyles[0]
    frontStyle.filled=true;
    // Sets the default fill color in the current document to yellow.
    if ( app.documents.length > 0 ) {
    //added
    frontPath = frontStyle;
    // Define the new color
    var newRGBColor = new RGBColor();
    newRGBColor.red = 255;
    newRGBColor.green = 255;
    newRGBColor.blue = 0;
    // Use the color object in the path item
    frontPath.filled = true;
    frontPath.fillColor = newRGBColor;

    A couple of pointers from one novice to another… With script there is NO need to deal with 'selections' to change the writeable properties of any object you simply need reference them with your code as you have done above… You can select art and you can deal with user selected art should you wish but as a rule for all else just target the object with your syntax… The best thing to do is to get your code working… as you know the current state to be ( a document open with you test objects in it ) once you have this then add to it by wrapping your conditionals around this… For example…
    if ( app.documents.length > 0 ) {
         // All your code goes inside this statement
    There is no point in getting the path items of the active document then checking later if there is a doc… Just a case of putting things in there respective order…
    The property filled… I only use to check the state, giving an object a fill will automatically update this… So here are your lines with a little reshuffle and a loop example…
    // Check there is a doc open
    if ( app.documents.length > 0 ) {
              // set a variable to the front document
              var doc = app.activeDocument;
              //Make your new color
              var rgbYellow = new RGBColor();
              // assign some values
              rgbYellow.red = 255;
              rgbYellow.green = 255;
              rgbYellow.blue = 0;
              // set variable to the collection ( list ) you want
              var paths = doc.pathItems;
              // loop this using a variable 'i'
              for ( var i = 0; i < paths.length; i++ ) {
                        paths[i].fillColor = rgbYellow;
              }; // this is your loop ending
    }; // this is the condition ending

  • Help with selective color

    Can someone please help, because photoshop technical help certainly can't and seemed to cut me off by mistake.
    I am new to this, on a simple task, I made a photo black and white, a photo of a child and a red washed out colored fence, then i erased to show the original color of the fence.
    I done this in lighroom then tranfered to photoshop, from there I saved it, now on my laptop, the thumbnail is a very very vibrant Red and very bright, not like the normal color, when opened it looks ok, but the problem is when i open it in my phone or any phone (ave tried 3) the vibrant Red is still there.
    Also it's the same on facebook, although I can view other photographers work ok on facebook and the color looks fine?! I had to change my cache to 7 as my pic's were massively grainy untill i did, and that solved the grain, but now I have this.
    Any help is appreciated, as I have given up after speaking to photoshop4 times on this issue
    Nicola

    That was a sample photo for for purpose of showing you where to find the information I asked.
    My normal working space and document profile is sRGB IEC61966-2.1 (sRGB)
    It's best for web, mobile devices and windows apps that are not color managed.
    You mentioned doing your editing in Adobe Camera Raw, then assigning sRGB to the raw file.
    In any case, you would send me a PM with a link to where you keep the file. Sendspace,Dropbox or any storage account is ideal since you can't attach files to the PM function in your forum account.
    That way I can look at it and see if I can do anything.
    If it's confidential and you would rather not, I understand. In that case I would have no idea what's wrong and how to fix it. You might have to check with someone local.

  • Can somebody help with my color issue please.

    I recently updated my Itunes to the 8.0 version and now I have like a pink and purple itunes where the music is displayed. it dont really bother me to much but my wife wants hers to be that color and I have no clue hoe mine even got like that in order to help her do hers. And if there is a way to change my colors I would do that to. Can anyone help me please?

    You need to change a windows setting on your display for 32-bit color. Look for other posts with "pink" in the title if you need more exact steps.

  • Need help with the color options on my new mac monitor!

    Ok, so I just bought a new Apple 23" monitor. I had originally bought a Samsung 21" and tried desperately to get the picture quality on the samsung to look like the quality of my macbook. I messed with calibration settings to no luck.
    After a few months I gave in and bought a Mac cinema. Problem is it looks like its still using my old settings because the quality ***. Looks nothing like it did at the store or my macbook. It looks just like my old monitor.
    How can I reset the settings on my new monitor so i get that apply quality. I am not gaming, I am talking about my general desktop display and photoshop files.
    Thanks for your help!
    I have the Leopard operating system by the way. My macbook is about six months old, if that.

    Upper-left corner.
    Apple/Systems Preferences/Displays/Color/Calibrate/Expert Mode

  • Need help with advanced color adjustments

    Hello people,
    A costumer asked me to design a sofa brochure. All product images have the same yellowish lighting and I will have to adjust them of course. But I'm struggling with it.
    What is the best way to have 100% correct colors?

    Once you get a sample, you most likely will have to use curves to correct the color crossover of the color difference between the highlights (too yellow-red) and the shadows too cyan.  Depending upon your other images,  there are several ways to do this.  You can try just using straight curves to adjust the color difference between the highlights and the shadows, you can use color range to select the colors that are off and make a mask to balance those colors with either curves or hue/saturation, or if the other images have a solid color like this one, you can use a solid color adjustment layer set to color blend mode and tweak the blend if sliders to not have the deep shadows return them to a more neutral color.  The left half of the attached image uses the solid color fill layer, and the right half uses color range and curves.

  • Need Help with giving Colors to Table Cells and Table Borders in Dreamweaver CC - Please!

    Hi,
    I am a teacher and use Dreamweaver CC to make my class web page.
    How do I give colors to the cell borders of a table I inserted?  How do I give colors and line thickness
    to table borders, too?
    I bought the David Powers DVD and it doesn't show that.
    Please help.
    Thank you,
    John

    Assuming that you have placed a table in your document and your CSS Designer panel is open
    1. Click the '+' sign
    2. Choose your option. I will choose 'Define in Page'
    3. Follow the above sequence, 1.click on table, 2.ensure table is selected, 3.click on style, 4.click the '+' sign, 5. see the selector appear.
    4. Click on the selector and choose the required Properties.
    You can do the same for the row (<tr>) or a cell (<td>). In fact, this is how you would go about styling anything in your document.

  • Please Help with background color problem in loaded .swf

    I am stuck!
    This is Flash CS4...
    I created a flash application which loads in many other little flash applications (.swf files) based on menu selections.
    When I change one of the little applications the changes are viewable except when I change the background color.
    After the first time I view the application, the background color changes do not carry over to the main app.  I run the little ones stand alone and they show the new color, then I run the main app and any other changes I have made are there but not the color change.  When I remove the file and the load fails, the old backround color still displays in the container movie clip the .swf was previously loaded into.
    I have tried several different options and the only thing that worked was renaming and copying and deleting and making a big mess.  There has to be a way to force a refresh of this mysteriously saved color. doesn't there?
    Please help!
    Thanks!
    Vivian

    Hi Antonia
    I am loading the swf into an instance of a movie clip:
    var myLoader:MovieClipLoader = new MovieClipLoader();
    myLoader.loadClip("Capitalization.swf",  contCapitalization);
    it is the background of Capitalization.swf that will not change
    this is AS 2 since the app was created before I upgraded
    Any ideas?

  • I need help with a color calibration problem on my PhotoSmart D7360 please.

    In a nutshell...The solution that HP gives for correcting a red tint when printing grey colors is to go to the toolbox and hit calibrate colors.  I don't have a 'calibrate colors' option in my toolbox.
    The problem I'm trying to fix.  The PS D7360 has started printing greys with a red tint from my Photoshop CS5.  It was working fine and then just started having this problem.  I have installed the newest device drivers.  Then I have uninstalled & reinstalled the printer and the newest drivers.  I clicked on factory settings but it didn't do anything.  I've tried both printer managed colors and photoshop managed colors.  I'm wasting paper, time, money and getting a headache!  I just don't know what else to do.   I'm using Windows Vista(x64)

    Thank you for asking.  I have plenty of ink.  I've printed several test pages before and after the image I'm trying to print and the solid colors are fine.

  • Please help with correct color settings

    I'm using ID CC. Depending on which one, my printers want my final PDFs either as PDF/x-1a (I know what it does in terms of flattening) or PDF/x-4.
    I need all color images to wind up as CMYK regardless of what they were when placed. I need all 100%K blacks to stay that way and not get converted to a rich black.
    Presently, my document color settings are as follows:
    Settings: North America General Purpose 2
    Working Spaces:
    RGB: sRGB IE61966-2.1
    CMYK U.S. Web Coated (SWOP) v2
    Color Management Policies:
    RGB: Preserve Embedded Profiles
    CMYK: Preserve Numbers (Ignore LInked Profiles)
    Conversion Options:
    Engine: Adobe (ACE)
    Intent: Relative Colorimetric
    I use the default settings for either PDF/x-1a or PDF/x-4 (plus having ink manager convert all spots to process) and and always receive a yellow warning triangle with the following warning under general:
    The preset specifies source profiles that don't match the current color settings file. Profiles specified by the color settings file will be used.
    What do I need to check in my document color settings to avoid that error message (the resulting files do seem to be correct for what I need; just want to make sure I've set it right in terms of that error). Of course, any other thoughts are always appreciated too.
    Also, what should my document color settings be if the final document will be black & white (grayscale) and only contains data on the black plate?

    Peter Spier wrote:
    That warning is normal and nothing to worry about. It just means your document color settings don't match the preset, and the document settings will be used, which you want.
    But the other part of your post that IS bothersome is that by definition PDF/X-4 does not convert colors, and it preserves embedded profiles, so that color conversion can be done at the RIP. There's no way that's compatible with "I need all color images to wind up as CMYK regardless of what they were when placed."
    Thank you. I had just begun testing PDF/X-4 at the insistence of people here that it was the way to go. Then it looks like for these jobs wehre I must wind up with everything as CMYK I should continue using PDF/x1-a which does do that and which I've used for that in the past.
    What about for work that is all b/w (grayscale)? Any advice on settings for that?

  • Help with ipod color display

    Tenog un ipod color display de 60Gb de capacidad, recientemente le hice un software update y la capacidad del ipod cambio a 18.1Gb y no eh podido cambiar la capacidad. Ya intente restaurarlo, hacerle otro update, darle format y no sirve nada. Que puedo hacer?

    Tenog un ipod color display de 60Gb de capacidad,
    recientemente le hice un software update y la
    capacidad del ipod cambio a 18.1Gb y no eh podido
    cambiar la capacidad. Ya intente restaurarlo, hacerle
    otro update, darle format y no sirve nada. Que puedo
    hacer?
    Lo siento, mi espanol no es muy bueno.
    Puede hablar ingles?
    El articulo que puede aydarle no esta en espanol, pero:
    http://docs.info.apple.com/article.html?artnum=93499
    CG

Maybe you are looking for