Insert highlight only yellow?

How can I change the highlight color from yellow to other colors
Thanks

The highlight color of which you speak is the author color, and is controlled through the View > Comments and Changes > Author Color sub-menu. It is not the true highlight color that other word processing applications provide that places a persistent color background behind text. The so-called highlight/author color does not survive document export, or printing. Apple has confused a great many users with their non-standard terminology.
If you want to accentuate text as though by a physical yellow highlighter, then you need the Character Fill Color from the Advanced Options sub-menu. This is the last (gear) drop-down that is adjacent to the font colorwell on the Text side-panel. This text background color is persistent with document export, or print.

Similar Messages

  • In a Google search, clicking on a search result causes the new page to open with the search terms highlighted in yellow -- how can I turn off th

    In a Google search within a Firefox session, clicking on a search result causes the new page to open with the search terms highlighted in yellow -- how can I turn off this highlighting?

    Try to clear the Google cookies and redo those Google options.
    * "Remove the Cookies" from sites causing problems: Tools > Options > Privacy > Cookies: "Show Cookies"

  • A question about piecewise insert(OCI), only data in the first piece ..

    When i do a piecewise insert operation, only data in the first piece was inserted into the column, There is no error occured. a OCI_SUCCESS returned when the last piece operation completed.
    I am really puzzled now:(.
    Who can get me out of this?
    The data to be insert are stored in many structs:
    typedef struct test_st{
         char * buffer;
         struct test_st * next;
    } TEST_ST;
    I use malloc(size) to allocate the buffer of each struct, and I use strcpy() to copy some strings to these buffers.
    table mc_test is like this:
    id number;
    message varchar(64);
    The full source_code goes there:
    #include <stdio.h>
    #include <unistd.h>
    #include <stdlib.h>
    #include <oci.h>
    static OCIEnv *p_env;
    static OCIError *p_err;
    static OCISvcCtx *p_svc;
    static OCIStmt *p_sql;
    static OCIDefine p_dfn    = (OCIDefine ) 0;
    static OCIBind p_bnd    = (OCIBind ) 0;
    const char * orausername="out_user";
    const char * orapassword="user_out";
    const char * oraserver="bigfish";
    int oraOK=0;
    int rc;
    char errbuf[100];
    int errcode;
    int checkerr(OCIError *errhp, sword status);
    int db_init(void);
    int db_open(void);
    int db_close(void);
    typedef struct test_st{
         char * buffer;
         struct test_st * next;
    } TEST_ST;
    int db_save_to_test(){
         char               sql_str[512];
         ub4                    typep;
         ub4                    piec_status;
         ub1                    in_outp;
         ub4                    rownum;
         ub4                    arr;
         sb2                    indp;
         ub2                    r_code;
         int                    t_buff_len;
         int                    total_len=15;
         int                    buffer_pos=0;
         TEST_ST * content, * t;
         content=(TEST_ST *) malloc(sizeof(TEST_ST));
         content->buffer= (char *) malloc(5);
         strcpy(content->buffer,"1234");
         content->next=(TEST_ST *) malloc(sizeof(TEST_ST));
         content->next->buffer= (char *) malloc(5);
         strcpy(content->next->buffer,"5678");
         content->next->next=(TEST_ST *) malloc(sizeof(TEST_ST));
         content->next->next->buffer= (char *) malloc(5);
         strcpy(content->next->next->buffer,"9012");
         content->next->next->next=NULL;
         if(!_ora_OK){
              return 0;
         printf("-------------------------\n");
         printf("[db]save to mc_test..\n");
         printf("total: %d bytes\n",total_len);
         /* create sql */
         sprintf(sql_str,"insert into mc_test(id,message)values(1,:x)");
         //printf("%s\n",sql_str);
         rc = OCIStmtPrepare(p_sql, p_err, sql_str,
              (ub4) strlen(sql_str), (ub4) OCI_NTV_SYNTAX, (ub4) OCI_DEFAULT);
         checkerr(p_err,rc);
         rc = OCIBindByPos(p_sql, &p_bnd, p_err, (ub4) 1,
                   (dvoid *) content->buffer, total_len, SQLT_CHR, (dvoid *) 0,
                   (ub2 *) 0, (ub2 *) 0, (ub4) 0, (ub4 *) 0, OCI_DATA_AT_EXEC);
         checkerr(p_err,rc);
         rc = OCIStmtExecute(p_svc, p_sql, p_err, (ub4) 1, (ub4) 0,
              (CONST OCISnapshot *) NULL, (OCISnapshot *) NULL, OCI_DEFAULT);
         checkerr(p_err,rc);
         if(rc == OCI_NEED_DATA){
              printf("[pw] start........\n");
              // insert next pieces
              t=content;
              printf("%d bytes total.\n",total_len);
              while(t!=NULL){
                   if(t==content){
                        piec_status=OCI_FIRST_PIECE;
                        t_buff_len=strlen(t->buffer);
                        buffer_pos=t_buff_len+1;
                        printf("ready for first piece: %d bytes\n",t_buff_len+1);
                        printf("__________________\n%s\n__________________\n",t->buffer);
                   }else if(t->next==NULL){
                        piec_status=OCI_LAST_PIECE;
                        t_buff_len=strlen(t->buffer);
                        buffer_pos+=t_buff_len+1;
                        printf("ready for last piece: %d bytes\n",t_buff_len+1);
                        printf("__________________\n%s\n__________________\n",t->buffer);
                   }else{
                        piec_status=OCI_NEXT_PIECE;
                        t_buff_len=strlen(t->buffer);
                        buffer_pos+=t_buff_len+1;
                        printf("ready for next piece: %d bytes\n",t_buff_len+1);
                        printf("__________________\n%s\n__________________\n",t->buffer);
                   t_buff_len++;
                   rc = OCIStmtSetPieceInfo((dvoid *)p_bnd,
    (ub4)OCI_HTYPE_BIND, p_err, (dvoid *)t->buffer,
    & t_buff_len, piec_status, (dvoid *) 0, &r_code);
                   checkerr(p_err,rc);
                   rc = OCIStmtExecute(p_svc, p_sql, p_err, (ub4) 1, (ub4) 0,
                        (CONST OCISnapshot *) NULL, (OCISnapshot *) NULL, OCI_DEFAULT);
                   checkerr(p_err,rc);
                   t=t->next;
              if(rc==OCI_SUCCESS){
                   printf("All insert OK\n");
              printf("-------------------------\n");
              return 0;
         }else if(rc==OCI_SUCCESS){
              printf("Simple inserted.\n");
              printf("-------------------------\n");
              return 1;
         }else{
              checkerr(p_err,rc);
              printf("-------------------------\n");
              return 0;
    int main(){
         db_init();
         db_open();
         db_save_to_test();
         db_close();
    int db_close(){
         rc = OCILogoff(p_svc, p_err); /* Disconnect */
         rc = OCIHandleFree((dvoid *) p_sql, OCI_HTYPE_STMT); /* Free handles */
         rc = OCIHandleFree((dvoid *) p_svc, OCI_HTYPE_SVCCTX);
         rc = OCIHandleFree((dvoid *) p_err, OCI_HTYPE_ERROR);
         oraOK=0;
         return rc;
    int db_open(){
         /* Connect to database server */
         rc = OCILogon(p_env, p_err, &p_svc, orausername, strlen(_ora_username), orapassword, strlen(_ora_password), oraserver, strlen(_ora_server));
         if (rc != 0) {
         OCIErrorGet((dvoid *)p_err, (ub4) 1, (text *) NULL, &errcode, errbuf, (ub4) sizeof(errbuf), OCI_HTYPE_ERROR);
         printf("Error - %.*s\n", 512, errbuf);
         return(8);
         /* Allocate SQL */
         rc = OCIHandleAlloc( (dvoid *) p_env, (dvoid **) &p_sql,
              OCI_HTYPE_STMT, (size_t) 0, (dvoid **) 0);
         checkerr(p_err,rc);
         oraOK=1;
         return rc;
    int db_init(){
         rc = OCIInitialize((ub4) OCI_DEFAULT, (dvoid *)0, /* Initialize OCI */
              (dvoid * (*)(dvoid *, size_t)) 0,
              (dvoid * (*)(dvoid *, dvoid *, size_t))0,
              (void (*)(dvoid *, dvoid *)) 0 );
         /* Initialize evironment */
         rc = OCIEnvInit( (OCIEnv **) &p_env, OCI_DEFAULT, (size_t) 0, (dvoid **) 0 );
         /* Initialize handles */
         rc = OCIHandleAlloc( (dvoid *) p_env, (dvoid **) &p_err, OCI_HTYPE_ERROR,
              (size_t) 0, (dvoid **) 0);
         rc = OCIHandleAlloc( (dvoid *) p_env, (dvoid **) &p_svc, OCI_HTYPE_SVCCTX,
              (size_t) 0, (dvoid **) 0);
         checkerr(p_err,rc);
         return rc;
    int checkerr(OCIError *errhp, sword status){
         text errbuf[512];
         sb4 errcode = 0;
         switch(status){
              case     OCI_SUCCESS:
                        return 0; break;
              case     OCI_SUCCESS_WITH_INFO:
                        (void) printf("Error - OCI_SUCCESS_WITH_INFO\n");
                        break;
              case     OCI_NEED_DATA:
                        (void) printf("Error - OCI_NEED_DATA\n");
                        break;
              case     OCI_NO_DATA:
                        (void) printf("Error - OCI_NODATA\n");
                        break;
              case     OCI_ERROR:
                        (void) OCIErrorGet((dvoid *)errhp, (ub4) 1, (text *) NULL, &errcode,
                                       errbuf, (ub4) sizeof(errbuf), OCI_HTYPE_ERROR);
                        (void) printf("Error - %.*s\n", 512, errbuf);
                        break;
              case     OCI_INVALID_HANDLE:
                        (void) printf("Error - OCI_INVALID_HANDLE\n");
                        break;
              case     OCI_STILL_EXECUTING:
                        (void) printf("Error - OCI_STILL_EXECUTE\n");
                        break;
              case     OCI_CONTINUE:
                        (void) printf("Error - OCI_CONTINUE\n");
                        break;
              default:
                        break;
         return 1;
    ref: http://www.oracle.com.cn/onlinedoc/appdev.920/a96584/oci05bnd.htm#427755

    On Windows, the Flash player plugin DLL is under C:\Windows. When everything is working correctly, Firefox finds the Flash player by checking entries under a registry key. I don't know whether this check takes place every time Firefox restarts, or at other intervals.
    Other plugins may install differently, e.g., copying a DLL into a folder under c:\Program Files (x86). It's rare for a plugin to be profile-specific.
    If your plugin list is not updating, the pluginreg.dat file that stores plugin information might be corrupted. This article has a section on how to delete that file so Firefox will regenerate it: [https://support.mozilla.org/en-US/kb/troubleshoot-issues-with-plugins-fix-problems#w_re-initializing-the-plugins-database]. Does that help?

  • IPhoto 9.4 sliders for shadows: and highlights: only give black page. can anyone help?

    iPhoto 9.4 sliders for shadows: and highlights: only give black page. can anyone help?

    While we all have MacBooks in this forum not all of us use iPhoto. There's an iPhoto Support Community where everybody uses iPhoto. You should also post this question there to increase your chances of getting an answer.   https://discussions.apple.com/community/ilife/iphoto

  • How can I get a passage highlighted in yellow in a word document sent to Adobe Reader?

    How can I get a passage highlighted in yellow in a word document sent to Adobe Reader?

    You can view non-PDF documents, such as Word, Excel, PowerPoint, RTF, in Adobe Reader for iOS.  However, you are not able to add comments or edit non-PDF documents in Adobe Reader.
    To open a non-PDF document in other iOS app.
    Tap anywhere in a document to display the toolbar in Adobe Reader.
    Tap the Share icon on the right side of the toolbar.
    Select Open In... from the menu.
    Select an appropriate app to open the document.
    Alternatively, you can convert a Word/Excel/PowerPoint/RTF document to PDF using the paid subscription service called Adobe PDF Pack and add comments to a resultant PDF document.

  • Front page opens works shortly freezes. only yellow green buttons work. I click yellow to minimize normal top bar menu appears I choose new page, opens works normally. The restart saved tabs does not work on that first page.

    front page opens works shortly freezes.
    only yellow green buttons work. I click yellow to minimize normal top bar menu appears I choose new page, opens works normally.
    The restart saved tabs does not work on that first page.

    Hi @prdstudio3 ,
    Thank you for visiting the HP Support Forums. The Serial Number needed to be removed from your Post. This is From our Rules of Participation:
    Protect privacy - yours and others'. Don't share anything about yourself that you would not want to see on a road-side billboard. Don't post contact or other personal information-your own or anyone else's-or any content that you receive in one-to-one communications without the author's consent. For example, don’t post your computer’s serial # or contact information publicly, and do not allow someone you don’t know to remotely take control of your computer.
    If you need people to contact you directly, either ask them to send you a private message or subscribe to the thread so you will be notified when there are replies. You may also click on your name anywhere in the forum and you will be taken to your profile page, where you can find a list of threads you have participated in.
    Sharing personal email addresses, telephone numbers, and last names is not allowed for your safety. If you have any questions feel free to send me a private message in reply.
    Thank you
    George
    I work for HP

  • I connected the TC T2 with the iMac and used Air Port Utility to have it join my existing network. Now I have green lights on Apple Base Station and TC with the cable connected to the Base Station because hen connected to TC -- I get only yellow lights fl

    I connected the TC T2 with the iMac and used Air Port Utility to have it join my existing network. Now I have green lights on Apple Base Station and TC with the cable connected to the Base Station because hen connected to TC -- I get only yellow lights flashing on both devices> 
    When Connected through the Apple Base station I have perfect internet wireless capability thru-out house.
    Lamont

    I connected the TC T2 with the iMac and used Air Port Utility to have it join my existing network. Now I have green lights on Apple Base Station and TC with the cable connected to the Base Station because hen connected to TC -- I get only yellow lights flashing on both devices> 
    When Connected through the Apple Base station I have perfect internet wireless capability thru-out house.
    Lamont

  • How i can insert icon only in the root node

    i need to insert icon only in the root node, with the other nodes i don't have problem.

    Use a jQuery menu like Superfish, or you can purchase an extension like the ones offered by Project VII
    http://plugins.jquery.com/superfish/
    http://www.projectseven.com/products/index.htm

  • How to make the Tabular Form for Inserting records only?

    Hello Experts
    I need to create a Tabular form page to use it to insert records only. I do not want to update or delete records. I want the user to fill some fields and then validate it and submit. Also, I need to add a field that shows the sum of a specific field of the added records.
    Thanks a lot for all your help.

    UPDATE_LTD
    For Maintain subset of data (Update selected data)
    SHOW_LTD
    Display subset (Display Selected Data)
    TVIMV-VARIANT
    Variant name. Use variant (only with UPDATE_LTD, SHOW_LTD and TRANSP_LTD)
    For more information refer the below link
    [Maintain parameter transaction code|http://help.sap.com/saphelp_webas630/helpdata/en/a7/5134f9407a11d1893b0000e8323c4f/content.htm]
    Hope this helps.
    Thanks.,
    Balaji

  • Inbox Msges now Highlighted in yellow

    All my recent - from about a week ago - incoming mails on my MacBook are now highlighted in yellow. Some of my older mails have 'acquired' a background too. A few are brown, one is red and some are solid black, making the subject illegible without clicking on those mails. This seemed to have just 'happened'. The same mail gets to my Mac Pro with no background colour.
    Anyone else having this? It is no big deal, except for the black backgrounds.

    Hi pipdrums,
    Did you ever make any headway on your issue? As of the last security update, I now have all RSS feeds that have the word "updated" acquire a black background. I've already gone over all my rules and there is nothing to suggest this behavior. Oh and BTW - I'm also getting double entries of all Version Tracker RSS messages. Let me know if you've uncovered anything.
    Thanks,
    - Dean

  • Highlight only Searched keywords in a Datagrid

    Hi
    I have a datagird and a searchfunction wich shows only datagridrows containthe searched Keyword.
    Now i would like to highlight the Searched Keyword in the datagird, i can get acces to the row or cell contains the keyword and also highlight them(for example like this: http://blogs.microsoft.co.il/blogs/tomershamam/archive/2009/08/27/wpf-datagrid-search-and-highlight.aspx
    But how can i highlight only the keyword like google or opera-browser etc.?
    Thanks very much.

    Hi Negada,
    For that purpose you probably need to use converter where you'll be able to crate "colorized" string.
    To create such text you have to deal with InlineCollection.
    Please take a look here, where you ll be able to become familiar with such functionality:
    http://msdn.microsoft.com/en-us/magazine/cc163371.aspx
    If any questions plz do not hesitate to contact me via email:
    [email protected]
    thx,
    Julian
    http://julianustiyanovych.wordpress.com/
    http://twitter.com/julian_net
    Thanks,
    Please
    remember to mark the replies as answers if they help and unmark them if they provided no help.

  • Insert subform only after page 1

    Hello, working on my first LiveCycle form.  I would like to insert a subform (subform1) at the top of every page.  And insert subform2 only on page 1, after subform1.  Is there someway to hide subform2 if the page is not equal to 1?  Thanks.

    Thanks. You are correct. I did end up creating a second master page. The first one I titled as FIRST was a max occur of 1.  Then the second master page titled NEXT which will be used for the rest of the pages, starting with page 2. Both master pages have 2 content areas. The second having a bit smaller size at the top of the page. I did end up putting text fields, binded to some of the same header fields, in both of the "top" content areas. This helped me achieve the results I was looking for. Thanks.

  • My mac keeps freezing on highlighting only way to get out of it is to power down and restart

    my mac keeps freezing on highlighting only way to get out of it is to force a power down and restart

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually login automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Can I setup v9 with 3 buttons to highlight in yellow, pink, orange?

    I'm considering upgrading to Acrobat Pro 9 (I've got an older Pro).
    I'm only interested if I can do one simple task that any doctor, lawyer, student would want:
    Have multiple buttons and hotkeys to highlight PDFs in different colors (besides yellow).
    Changing the color each time is not an option, I need to have separate buttons and hotkeys for this task.
    Is this available with Acrobat or some other 3rd party PDF program?
    Thanks!

    It's not available in Acrobat, nor is it scriptable.
    Maybe with a plugin.

  • Selected row highlighted only for split second

    Hi, i am using the following javascript to highlight the row i select and to turn the selected rows background to yellow. The background changes to yellow when the row is clicked but only for a split second.
    var rindx=null;
    var rint=null;
    function myhandler() {
         rindx = document.forms['resultsForm'].elements['routeDisplayId'].value;
         var rint = parseInt(rindx);
         trs = document.getElementById('resultsForm:routeList:tbody_element').getElementsByTagName('tr');
         trs[rint].bgColor = "#FFFF66";
    the function i then called in the dataTable below:
    <t:dataTable id="routeList" value="#{RouteHandler.routeWithIdList}" var="rowElement" rowIndexVar="rowIndex" cellspacing="0" cellpadding="3"
    border="0" headerClass="listhead" columnClasses="listresults" bgcolor="#FFFFFF" rowOnClick="myhandler()">
    <t:column width="104">
                                  <h:commandLink id="editLinkCarrier" action="#{RouteHandler.prepareAddScheduleAction}" >
                                       <h:outputText value="#{rowElement.carrierCode}"/>
                                       <f:param name="routeDisplayId" value="#{rowElement.routeDisplayId }" />
                                       </h:commandLink>
                                  </t:column>
    <t:column width="165">
    <h:commandLink id="editLinkDeptAirport" action="#{RouteHandler.prepareAddScheduleAction}" >
                                       <h:outputText value="#{rowElement.departureAirport}"/>
                                       <f:param name="routeDisplayId" value="#{rowElement.routeDisplayId }"/>
                                       </h:commandLink>
    </t:column>
    <t:column width="920">
    <h:commandLink id="editLinkArrAirport" action="#{RouteHandler.prepareAddScheduleAction}" >
                                       <h:outputText value="#{rowElement.arrivalAirport}" />
                                       <f:param name="routeDisplayId" value="#{rowElement.routeDisplayId }"/>
                                       </h:commandLink>
    </t:column>
    </t:dataTable>
    If anyone can help or guide me in the right direction i'd really appreciate it. Thanks.

    Hi Akash,
    Thanks for your responce. Any suggections about how i can stop this from happening or what i should do?
    Thanks in advance.

Maybe you are looking for

  • HT201250 Can I use one Time Capsule to back up two iMacs?

    Can I use one Time Capsule to back up two iMacs using Time Machine? Both are running Mountain Lion. Fouind the answer in other questions. Don't know how to remove this message. Sorry, Des

  • Suddenly strange new folder in Mailserver

    Hello everybody, I'm having a problem with my mailserver. Until a couple of days, the structure of my mailserver-folder looked like this: MAILSERVER/imap/stage. MAILSERVER/imap/sync. MAILSERVER/imap/user Then suddenly, a new folder appeared: MAILSERV

  • How to dynamically changes items properties

    How to dynamically changes items properties likes position order in tabular view, width, prompt

  • Flash Player Update Pop Ups

    Hi, I have a MacBook Air bought on January 2014. it has the Mavericks operating system. Since yesterday I can really surf the internet because everytime I open a Facebook, Youtube or Google page the page gets redirected to a FlashPLayer-Update Page,

  • Iphone time changes and calendar events get triggered

    Iphone 3GS recently updated to IO5 .... Windows PC (vista)...... Every so often, usually about once a day, sometimes twice a day. The correct time that shows jumps forward like 2-3 days with the wrong time. I lose AT&T connection and my calendar even