How to change the highlight color 'find '.

I use Dreamweaver CS4 and when I use the 'Search' function to search for something in the source code it highlights the text found with a very light gray background (background color for source code is white).  Is it possible to change the highlight color gray to something else that I often struggle to locate in the source code window, which has been found.  I would like to make a lighter color is no longer perceptible.  I searched through all of the preference settings and can't seem to find a setting for this.  Is this one?

Thanks for the help!

Tom

I'm sorry, I think that you post in the wrong forum.

The issue in this case relates to the color used by Dreamweaver to highlight the code after using the built in find & replace tool.

In Dreamweaver CC 2015, the code highlighting color is editable by the user under Edit > Preferences > Code coloring > background selection

Tags: Dreamweaver

Similar Questions

  • How to change the highlight color for windows 7 (select the file or folder)?

    How to change the highlight color for windows 7 in the aero theme (select the file or folder)?

    You can change the font size because it is not a widget.   To do this:

    1 type dpi in your Start menu search box, and then choose make text and other more or less important.
    2 - Choose a size you prefer
    3 - Click on apply.
  • How to change the highlight color, click the button image and text and sound.  are there packages of buttons for use in my project?

    How to change the highlight color, click the button image and text and sound. are there packages of buttons for use in my project?

    Hello

    Even if the point of things based Web links buttons created using them is of simple images. Captivate uses simple images. If you need to put your creative hat and not to let the fact that you see the word 'web' scared you somehow. An image is an image. Use on the web, use Captivate. Same case!

    If you change the properties of the button, you can activate the legend of success. Fix any sound that you like with the legend of success and it will play when you click the button. If you do not want to see the legend of success, delete the text and configure it as transparent.

    See you soon... Rick

    Useful and practical links

  • version of Acrobat reader dc 2015: how to change the highlight color?

    How to change the color of highlight (in dc 2015 of adobe acrobat reader version)?

    Hi Herwig,

    Highlight Select tool, press CTRL + E, Properties window will open, you can change the highlight color for here.

    Kind regards
    Rahul

  • How you change the highlight color for the active layer in the layers panel?

    How can you change the highlight color for the active layer in the layers panel BY 9?

    Do you mean you want something other than the darker gray (windows) or blue (mac)? Sorry, no can do, if that's what you hear.

  • How to change the highlight color for text

    I am trying to select and highlight some text in the PDF file. Here is my sample code. I want to change the color of the highlighted text. Something similar to what the tool select text in acrobat.

    Hilite HiliteEntry;

    Hilite.Offset = 10;  Highlight the tenth Word

    AVDoc currentAVDoc = AVAppGetActiveDoc();

    CurrentPDDoc PDDoc = AVDocGetPDDoc (currentAVDoc);

    AVPageView currentPageView = AVDocGetPageView (currentAVDoc);

    ASInt32 pageNum = AVPageViewGetPageNum (currentPageView);

    Red PDColorValueRec;

    Red.Space = PDDeviceRGB;

    Red.Value [0] = ASInt32ToFixed (1);

    Red.Value [1] = 0;

    Red.Value [2] = 0;

    Highlight

    AVPageViewSetColor (currentPageView, & red);

    PDPage pdPage = PDDocAcquirePage (currentPDDoc, pageNum);

    PDTextSelect textSelection = PDTextSelectCreateWordHilite (pdPage, & hilite, 1);

    AVDocSetSelection (currentAVDoc, ASAtomFromString ("Text"),(void *) textSelection, true);

    AVPageViewDrawNow (currentPageView);

    AVDocShowSelection (currentAVDoc);

    PDPageRelease (pdPage);

    If this is not possible, at least can I change the font color or underline text?

    Appreciate any help!

    Thanks a lot for the help so far. So, I was successfully able to create a text selection highlight annotation. Here is my code, if someone else have similar questions.

    More a question. in my highlight annotation, I get two rounded half-circles to the left and the right. Don't know why?

    Hilite HiliteEntry;
    Hilite.Offset = 50; Highlight the 50th start of word
    AVDoc currentAVDoc = AVAppGetActiveDoc();
    CurrentPDDoc PDDoc = AVDocGetPDDoc (currentAVDoc);
    AVPageView currentPageView = AVDocGetPageView (currentAVDoc);
    ASInt32 pageNum = AVPageViewGetPageNum (currentPageView);
    PDEElement pdeElement;
    ASFixedRect boundingRect.
    PDPage pdPage = PDDocAcquirePage (currentPDDoc, pageNum);
    PDAnnot pdAnnot.
    Red PDColorValueRec;
    Red.Space = PDDeviceRGB;
    Red.Value [0] = ASInt32ToFixed (1);
    Red.Value [1] = 0;
    Red.Value [2] = 0;
    Highlight
    AVPageViewSetColor(currentPageView, &red);)
    PDTextSelect textSelection = PDTextSelectCreateWordHilite (pdPage, & hilite, 1);
    AVDocSetSelection (currentAVDoc, ASAtomFromString ("Text"),(void *) textSelection, true);
    AVPageViewDrawNow (currentPageView);
    AVDocShowSelection (currentAVDoc);
    make the selection of text and get the bbox of the selection.
    PDTextSelect selectedText = static_cast(AVDocGetSelection (currentAVDoc));
    PDTextSelectGetBoundingRect (selectedText, & boundingRect);
    the bbox allows to create an annotation, click QuadPoints
    CosObj ArrayObj, RecObj;
    CosDoc cd = PDDocGetCosDoc (currentPDDoc);
    CosObj cosPage = PDPageGetCosObj (pdPage);
    ArrayObj = CosNewArray (cd, false, 8);
    CosArrayPut (ArrayObj, 0, CosNewFixed (cd, false, boundingRect.right));
    CosArrayPut (ArrayObj, 1, CosNewFixed (cd, false, boundingRect.bottom));
    CosArrayPut (ArrayObj, 2, CosNewFixed (cd, false, boundingRect.left));
    CosArrayPut (ArrayObj, 3, CosNewFixed (cd, false, boundingRect.bottom));
    CosArrayPut (ArrayObj, 4, CosNewFixed (cd, false, boundingRect.right));
    CosArrayPut (ArrayObj, 5, CosNewFixed (cd, false, boundingRect.top));
    CosArrayPut (ArrayObj, 6, CosNewFixed (cd, false, boundingRect.left));
    CosArrayPut (ArrayObj, 7, CosNewFixed (cd, false, boundingRect.top));
    for the Rect.
    . Do not require highlight annotations, but API call to create the annotation requires this key RecObj = CosNewArray (cd, false, 4); CosArrayPut (RecObj, 0, CosNewFixed (cd, false, boundingRect.left)); CosArrayPut (RecObj, 1, CosNewFixed (cd, false, boundingRect.right)); CosArrayPut (RecObj, 2, CosNewFixed (cd, false, boundingRect.bottom)); CosArrayPut (RecObj, 3, CosNewFixed (cd, false, boundingRect.top));
    CosObj cosDict = CosNewDict (cd, true, 4);
    CosDictPutKeyString (cosDict, "Subtype", CosNewNameFromString (cd, false, "Highlight"));
    CosDictPutKeyString (cosDict, "QuadPoints", ArrayObj);
    CosDictPutKeyString (cosDict, 'Rect', RecObj);
    pdAnnot = PDAnnotFromCosObj (cosDict);
    PDPageAddAnnot(pdPage,-2,pdAnnot);
    PDPageNotifyContentsDidChange (pdPage);
    PDAnnotSetColor(pdAnnot, &red);)
    AVPageViewDrawNow (currentPageView);
    PDPageRelease (pdPage);
  • How to change the highlight color for the bookmark icon?

    Could someone help with this question? See the attachment for clarification. Our company creates thousands of medical documents that require bookmarks to navigate documents and show where the spectator is when you scroll the document. It sounds simple, but in my opinion, there is not a function to help change the game of bookmark highlight colors. Suggestions anyone? Thank you.

    Right-click on a climax. Select properties from the menu drop down. Change the color, and then click the checkbox to make these properties by default.

  • Change the highlight color for text in Spark TextInput

    Hello

    As the title says, someone knows how to change the highlight color in a TextInput spark? By the "highlight color" I mean that some of the text is selected if the background color of the selected text.

    Thank you.

    SetStyle ("focusedTextSelectionColor",...)

    There are also unfocusedTextSelectionColor and inactiveTextSelectionColor

    styles.

  • How can I change the highlight color for my PDF file?

    On my PDF files, I am able to highlight text, but does not know how to change the color of the highlight.  I got Adobe Reader and also paid upgrade - but honestly, I don't know what program I have.  This is more confusing application, that I have ever used!

    Hi vickis,.

    You may need to go to the comment pane and right-click on the annotation "Highlight text" and choose "Properties of the tool by default".

    The highlighter tool properties dialog box opens from which you can change the highlight color.

    Kind regards

    Ana Maria

  • Change the highlight color when you select files or folders

    Hello
    Need assistance to change the highlight color when you select files or folders in Windows Explorer / my document.
    I use Windows Vista with SP2.  I tried to go to control-online personalization panel => color & appearance of the window and changing the settings.  However, I can't change the intensity of the highlights that I see it clearly.  A little blind colours, I would like to change the color to make it darker so that I could clearly see when an item is selected.
    I tried open classic appearance for color options properties more-online advance but did not find an appropriate under "Item" option that I could change.  I tried the step "Selected items" under ' point:' but that only applies when I double click on a file or folder.
    Any advice would be greatly appreciated.
    The

    Salvation of

    Sorry to hear that the option is good enough for you.  I've done some research more and that you still do not see a way to change what you're asking.  As I said before, others have mentioned this issue as well.  If I come across a way to do it, I'll post it here.

    In the meantime, I'm going to Mark this post as answer whose answer is:

    Currently, there is no way to make this change in Windows Vista.

    Thanks for posting on Microsoft Answers.
    Ken
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • How to change the font colors in the communities of support?

    How to change the font colors in the communities of support?

    Thank you

    Press or click on use the Advanced Editor in the upper right of this text block which will take you to it.

  • How to change the background color of string programmatically?

    How to change the background color of string programmatically?

    Are you talking about string indicator and control chain? If so, right-click on a control/indicator of string and select Create-> property Node-> text-> text-> BG Color colors. Change to write and a number of the color you want to use phone.

  • How to change the background color

    How to change the background color of the label field, how to do it thanks

    I can change the color of labelfield, but I want to change the background,

    How can I do this

    Thank you.

    I do not know mantaker do not want to forget the call to super...

    public void paint (Graphics gs) {}

    gs.setBackgroundColor (0x00FF0000); red background

    GS. Clear();

    Super.Paint (GS);

    }

  • How to change the background color dynamically on the page of the ofa

    How to change the background color dynamically on the page of the ofa

    Hello

    Can you please let me know the dynamic conditions to change the background color?

    Thank you

    Vincent

  • How to change the background color of the code written DW page but not the Web page...

    How to change the background color of the code written DW page but not the Web page...

    If you have DWCC2015, you can change to edit > Preferences > coloring Code and either choose a new theme (RecoGnEyes is the background dark code by default) or you can change it to what you want in the background field by default.

    2014 CC had no theme options, but you can change the background color in the same place.

    I think that some of the previous versions also had the option, but I don't have them on my machine to check.

Maybe you are looking for

  • Reach target FIFO / missing error methods

    In my project, there are two FPGA vi and 4 pairs (reading and writing) of FIFO extended target that are used to pass data between the two vi. A vi FPGA (named rs232.vi) writes the data it obtains from a port RS232 to READ FIFO; also, it reads data EN

  • Update for Windows XP Service Pack 3 (KB952069 continuous offered security

    Hello I downloaded and installed the update above, but it keeps appearing in the status bar. I know that I can go to the windows update site, click Custom and hide, but didn't know what to do really. The little info button tells me I have it already

  • blackberry tutorial

    Dear moderator, Hello everyone Please help me find a tutorial on developing blackberry... I can not found on the site... I am asking only here about this... Please give me a link to learn more about the blackberry platform

  • Adding variable content in the Stop/Pause message box

    Hello is it possible to add variable text in the pop-up message Stop/Pause that the admin is done when it applies? I'm working on a way to limit the number of additions of members to a group within a period of 4 hours. Would be nice to show the admin

  • LMS 3.0 multi-server environment

    I currently have CiscoWorks configured as a stand-alone, I seek to put in place a multiserver environment and promote my self for the master and the other as a slave server. I read on the documentation now to get an idea of how much work needs to be