Colour picker automatically changing to different colour when opening

I think I've only been having this problem since switching to CC 2014, but I can't be sure exactly when it started.
When I open the colour picker to change a colour of an object, the colour automatically jumps to a different colour. It's very disruptive because I have no way of telling what the original colour was when trying to make small changes. And it's not a small jump either: for example, the default black jumps automatically to C60M90 purple – every time! It doesn't only occur with the default colour but also after I've selected a shade myself –  it seems to only be happening with blacks and greys.
Any help would be appreciated, as it's driving me crazy. I've tried activating and deactivating the "Art work has default appearance" option as it was the only thing I could think of and have had problems with that acting strangely before. I can't think of what else I should try. If no one knows, I'll try trashing the preferences folder.
Thanks in advance. Cheers.

Sounds like a 2014 problem.
Check that you are woking in the correct color mode, look to the right of your filename in parenthesis. Then use the color palette (always in the same color mode) and let us know if that is working.
If not try to reset your illustrator preferences.

Similar Messages

  • Can not change project properties (crashes when opening)

    I try to change the project properties when I go to open it livetype crashes

    I had this same problem... but only with one account. Another account on the same machine worked fine. So... I studied the crash report searching for the short user name of the crashing account and found one file that was unique to this user...
    /Users/<my user account>/Library/ColorPickers/RCWebColorPicker.colorPicker
    I deleted it and now Project Properties in LiveType works fine!
    There seems to be an update to this color picker:
    http://www.rubicode.com/Software/RCWebColorPicker/
    (They acknowledge a problem with Apple Pro apps and Leopard)
    Message was edited by: Roland G

  • Imported B&W NEF images appear as colour when opened!

    Odd one here. Have searched the forum but while there are some B&W issues discussed, nothing matches this one.
    OS X 10.6.4, iphoto '09 build (8.1.2). Camera Nikon D90 using NEF images. Camera set to take B&W. Camera is using Colour Profile Adobe RGB 1998.
    Camera takes B&W photos. I can see this in the LCD viewer. I can also see B&W thumbnails of the images via Finder when looking directly into the SD card.
    Then I open iPhoto, select the SD card and even iPhoto will display B&W thumbnails. So far so good.
    Now I do the import into iPhoto, but then after the import is completed the thumbnail images display as colour images. Even when you open the image it displays in colour.
    How can this be ?
    Have not found anything specific to this particular issue on the 'net to date, Any assistance would be appreciated.

    Thanks, I understand what you are saying.
    The Nikon D90, has a Picture Control setting called Monochrome, This I thought, allows the shooter to take the picture in B&W, by doing an in-camera conversion from colour to B&W and stores the B&W image on the card. But then this doesn't explain why it opens in colour on OS X (??).
    So more likely it as you say, the camera is taking and storing a colour image, but has a flag embedded in it to indicate it was 'shot' in B&W.
    Oddly enough, under Windows XP using the free MS NEF viewer, the pictures do actually display in B&W ..thumbnails and when they are fully opened. I suspect then there is a bit or flag in the NEF processor in iPhoto 09 is not recognising and therefore shows the colour version. Does this make sense ?
    Cheers
    Mal
    Oz

  • Can I let my xfi card automatically switch to different modi when starting games/my musicplayer,e

    Question says all
    I got x-fi extreme gamer.
    thx in advance

    By programming a startup script to call the feature mode functions. This shouldn't be hard to do even no experience on programming. Just use VBS as for an example (by searching ".vbs" here you should get some example code).
    Here's pseudo code for what the script should do:
    needed definitions
    call the mode switching program to change the feature mode to game/entertainment/creation
    call/run the software (audio, game, etc.)
    (reser the feature mode to default (if you have set certain mode to be a default))
    Then the startup shortcut for software just needs to be changed to call the certain script instead of original .exe.
    jutapa
    EDIT: Here's the base command you'll need.
    <div class="section">object<div class="section">?<div class="section">WshShell object.
    <div class="section">?<div class="section"><span class="parameter">strCommand?
    String value indicating the command line you want to run. You must include any parameters you want to pass to the executable file.
    <div class="section"><span class="parameter">intWindowStyle<div class="section">?Optional. Integer value indicating the appearance of the program's window. Note that not all programs make use of this information.
    bWaitOnReturn?
    Optional. Boolean value indicating whether the script should wait for the program to finish executing before continuing to the next statement in your script. If set to true, script execution halts until the program finishes, and Run returns any error code returned by the program. If set to false (the default), the Run method returns immediately after starting the program, automatically returning 0 (not to be interpreted as an error code).
    <div class="section">?
    The Run method returns an integer. The Run method starts a program running in a new Windows process. You can have your script wait for the program to finish execution before continuing. This allows you to run scripts and programs synchronously. Environment variables within the argument <span class="parameter">strCommand are automatically expanded. If a file type has been properly registered to a particular program, calling run on a file of that type executes the program. For example, if Word is installed on your computer system, calling Run on a *.doc file starts Word and loads the document. The following table lists the available settings for <span class="parameter">intWindowStyle.
    <div class="tableSection">?<div class="tableSection">intWindowStyle <div class="tableSection">?<div class="tableSection">Description <div class="tableSection">0 Hides the window and activates another window.
    Activates and displays a window. If the window is minimized or maximized, the system restores it to its original size and position. An application should specify this flag when displaying the window for the first time.
    2 Activates the window and displays it as a minimized window.
    3 Activates the window and displays it as a maximized window.
    4 Displays a window in its most recent size and position. The acti've window remains acti've.
    5 Activates the window and displays it in its current size and position.
    6 Minimizes the specified window and activates the next top-level window in the Z order.
    7 Displays the window as a minimized window. The acti've window remains acti've.
    8 Displays the window in its current state. The acti've window remains acti've.
    9 Activates and displays the window. If the window is minimized or maximized, the system restores it to its original size and position. An application should specify this flag when restoring a minimized window.
    0 Sets the show-state based on the state of the program that started the application.
    Example
    <div class="section">The following VBScript code opens a copy of the currently running script with Notepad.
    <div class="code">?<div class="code"><div class="code"><div class="code"><pre>Set WshShell = WScript.CreateObject("WScript.Shell")
    WshShell.Run "%windir%\notepad " & WScript.ScriptFullName</pre>The following VBScript code does the same thing, except it specifies the window type, waits for Notepad to be shut down by the user, and saves the error code returned from Notepad when it is shut down.
    <div class="code">?<div class="code">?
    <div class="code"><pre>Set WshShell = WScript.CreateObject("WScript.Shell")
    Return = WshShell.Run("notepad " & WScript.ScriptFullName, , true)</pre>?
    Example 2
    <pre>Dim oShell
    Set oShell = WScript.CreateObject ("WSCript.shell")
    oShell.run "cmd /K CD C:\ & Dir"
    Set oShell = Nothing</pre><div class="section">The following VBScript code opens a command window, changes to the path to C:\ , and executes the DIR command.
    Message Edited by jutapa on 04-06-2008 05:2 PM

  • How to change preference setting in Photoshop CC 2014 to not automatically lauch Adobe Camera Raw when opening Nikon raw .NEF file

    When I launch Photoshop CC 2014 and then open a .nef raw file it launches Adobe Camera Raw and I click Open Image, then I "Convert to Smart Object" then launch Filter > Camera Raw Filter.  Is there a preference somewhere for raw files that just bring you right into Adobe Photoshop without stopping at Camera Raw first?  Thanks!

    Gene,
    Ah!  Okay, makes sense now.  I just learned tonight that some features are not available when using Camera Raw as a Smart Filter.  One being Lens Profile Correction.  So it makes sense to have have Camera Raw open right off the bat to make some tweaks first then continue on.  I found the below on the Adobe website.  Thank you so much!! 
    Note: The following features are not available when using Camera Raw as a Smart Filter (that are normally available in Camera Raw), primarily because they don’t make sense in the filter context: Workflow options and preferences, crop and straighten tools, rotation tools (rotate left/right buttons), snapshots, camera and lens profile corrections.

  • How do I change the website that Firefox automatically defaults to (Yahoo search) when opening a new tab?

    Whenever I open a new tab, the new tab opens to a yahoo search page. It used to open to just a blank tab and changed somehow. I've been unsuccessful at changing it back.

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    * [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • I get an error while changing modules pop up when opening Lr. There is no import button to use and if I try to load the default catalog I get the error message again essentially making Lr completely unusable for me! please help

    When launching Lr i get the initial screen to come up followed by an "error while changing modules" pop up. I have uninstalled and re-downloaded, followed all the suggested trouble shooting fixes and still nothing. When the app starts it has the basic info boxes but without any options in them (i.e. no import button or any buttons at all for that matter).All my other creative cloud apps seem to be working fine but Lr won't. Please help

    Ah, see, you said you had done it differently before.
    > and I tried to add a toolbox button by navigating to AcroPDF.dll.
    You'll need to reinstall Reader if the libraries aren't registered. You can't register them manually.
    Perhaps if you posted some of your code (where it creates the objects, etc.) we might be able to give you some more advice. You're sure you aren't trying to use anything outside of the AxAcroPDFLib.AxAcroPDF class?

  • How to stop automatic connection to itune store when opening itunes?

    when ever i try to open i tunes without internet connection,a warning diallog box appears saying that  'itunes cannot connect to itunes store.check internet connection'.ive tried disabling store,podcasts and everythng in itune preferences but still doesnt make any change..please help me out..please..:(

    There is no issue here. If you have no Internet connection, it's impossible to access the store, therefore iTunes will alert you with this message so you don't get confused. You can use all the other offline features on iTunes, so you shouldn't be going through so much trouble to solve something which isn't a problem. There is no way to stop iTunes automatically attempting to access the store when you open iTunes, so you'll have to deal that message. If I'm not getting the issue, please tell me.

  • Changing the background color when opening an image?

    I just installed Firefox on my new Windows laptop, and when I open an image in a new tab the background around the image is a dark gray. On my old computer the background is white, which I much prefer. How do I change this setting?

    It is a new feature in Firefox 11+ versions to display a single image centered with an almost black background.
    It is added by this stylesheet:
    * resource://gre/res/TopLevelImageDocument.css
    You can look at this extension to set your preferred background color and remove the centering.
    * Old Default Image Style: https://addons.mozilla.org/firefox/addon/old-default-image-style/
    See also these forum threads for other solutions (e.g. userContent.css):
    *[[/questions/923127]]
    *[[/questions/923431]]

  • How do I stop files changing my units preferences when opening in illustrator

    When I open files in illustrator that have been sent to me they sometimes open with the measurement units changed from "mm" to "cm" or even "in", not a huge problem but when I have 10 files for a job that are all doing the same its an extra bit of messing around I could do without.
    They can be any kind of file .ai .eps .fs .pdf etc..., when I go into my preference to change it back it shows that it is set to "mm" already?????. I can change it to "mm" again but I have to go Edit - preferences - Units - change them to read "cm" - OK, then repeat the process Edit - Preferences - Units - change back to read "mm" and that does it.

    You are welcome, maxwells3.
    When you have the time (and courage), you may have a go with some of the suggestions in the list below.
    The following is a general list of things you may try when the issue is not in a specific file (you may have tried/done some of them already); 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to 3 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible);
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall, run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • Different behaviour when opening a hyperlink in Sharepoint

    Hello,
    One of our users computer has started opening documents differently when using a hyperlink to a document on a sharepoint site.
    He gets a Open / Save / Save As dialog instead of the document opening directly in the associated program, fx Excel. And in Excel he would get a yellow bar with the option to Edit Workbook. But he does not get this anymore after the dialog appeared.  
    If he opens the document from the location of the documemt he gets the Read only / Edit dialog. So it works fine when he does that. But he uses the hyperlinks to save time from browsing to the document
    Anyone experienced this? And have a solution to this?

    Please check IE plugins for SharePoint. These plugins are actually responsible for calling client application. Sometime they are disabled or not installed at all.
    Below link will help.
    https://support.office.com/en-us/article/Work-seamlessly-between-Office-Online-and-Office-desktop-applications-2d43ec7b-d173-4c06-91d7-7c5425990093?ui=en-US&rs=en-US&ad=US
    http://answers.microsoft.com/en-us/ie/forum/ie8-windows_xp/sharepoint-opendocuments-class-add-on-is-missing/ee6a350e-d9ac-47e2-9935-ad6f5ddabc21
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • I miss the feature "Automatically mark message as read when opened" as was found in Eudora

    This would make Thunderbird much mor user friendly as the two present alternatives are just annoying.

    As I said in my last reply, there is no message preview. You have the choice of reading in a message pane in the main windows along with the mail lists, on a tab (double click) or if you change the settings in a window. But there is no preview hence mail is marked read when you read it.
    You appear to be looking for a feature that simply does not exist.

  • Change properties to refresh when opening new workbook

    Hi All,
    I am trying to change the properties of queries and saved the workbook, when i am tranport those changes into QA environment it was not reflecting the changes in QA.
    Please help me on this issue, this is an urgent.
    Thanks in adwance....
    Babu.

    Hi
    You have to check two areas
    1. Have you chekcked bex refresh checked in the workbook properties
    Right click on workbook result ->properties -> Interaction -> 3rd option
    Refresh workbook when query is changed
    2. During transport, you have to transport the workbook ..have you did that?
    Regards
    N Ganesh

  • View of PDF file changes or looks strange when opening a file.

    Hi all,
    I have strange problem, that is haunting me.
    A PDF file is created from Microsoft Dynamics AX 2009 system. I guess that Microsoft have their own pdf-writer-engine.
    From time to time, we have seen that the PDF files, on some computers looks correct, on others gibberish.
    One user has a Win7 machine, 32-bit system. 4gb of memory. Today he opened a PDF file from the AX system. When He opened the file on his desktop., it looked fine. After 5 seconds. The entire view changed to strange signs and letters. I opened the same file on a Win-7, 64 bit machine. Everything looks allrigt.  Both of us have Adobe Reader 11.04 installed. one-two houes after the first error, he opened another PDF file. That started to look like gibberish, and after 5 seconds it looked allright.
    In general we only see these types of errors something like 1 out of a hundred times. Most common is that the view is gibberish from the beginning, and never changes.
    Any idea to solve this, will be much appriciated
    /Hector

    I think this is done by the browser when it is saving a temporary file and there's already a file with that exact name in the temp folder.

  • Php changing to php.html when opening in DW

    I got some files from another designer and the home page is
    index.php however, when I open it in dreamweaver, it changes the
    name to index.php.html. It also changes, ie it's no longer
    centered. I tried over and over to get it not to, but it keeps
    doing it. It happens to every page but when I do another site i'm
    fine.
    thankyou

    The filename changes when you OPEN the file? Which DW are you
    using? Which
    OS?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "webontwerpen" <[email protected]> wrote in
    message
    news:frbm4s$b6v$[email protected]..
    >I got some files from another designer and the home page
    is index.php
    >however,
    > when I open it in dreamweaver, it changes the name to
    index.php.html. It
    > also
    > changes, ie it's no longer centered. I tried over and
    over to get it not
    > to,
    > but it keeps doing it. It happens to every page but when
    I do another site
    > i'm
    > fine.
    >
    > thankyou
    >

Maybe you are looking for

  • I have to find out which user exit useing

    Hi All, functional consultant useing user exit ,for substitution of profir center. can any body plz tell ,which user exit he useing to get profit center value. thanks, venu.

  • How to deal with the using up space of /opt/oracle

    Hello, all We have an Oracle 10g preinstalled in a linux server (Rh 9). Now the system reports that the /opt/oracle is using up. The alert says:      Filesystem /opt/oracle has only 19% available space Because I didn't install the Oracle dababase, I

  • Z-Index Layers

    HI I have a flash movie and I need to cover a portion of it with a HTML Layer (specifically using Dreamweaver layers. I have tried adjusting the Z-Index, but the Flash movie always ends up on top of the layer. How do I force Flash NOT to be the top l

  • Status:  Agent Unreachable

    Hi, I have installed 10g. I could access the EM very easily, once all the required services were started. it was http://host:5500/em Then I installed another database, other than the default which was orcl. Then the port number changed (I do not know

  • Error when composing new email to send "This message cannot be saved" -?

    Just upgraded to Tiger 10.4.6 and finally got my email working except for some reason every time I compose a new email, I get an error pop up stating "this message cannot be saved" -what is it talking about???