Envelope icon with "X" on text list

On my Droid X when I look at the list of text message conversations, one of my conversations has an icon with an envelope and a tiny red x on it. I can't figure out what that means. I have had several text conversations with that specific contact since that icon appeared. What does it mean and how do I get rid of it?

The icon is not appearing in the notification area at the top. It is appearing on the initial screen that displays when I check text messages. An image of that screen is at this link. 
I click on the contact entry with the icon on it and I get a list of all the texts to/from that person. I searched back and found a specific message with that same icon on it at this link.
Then I click on that specific message and get the screen displayed at this link.
If I click the left button (options) nothing is displayed. I can't figure out how to delete the message with the icon on it. I can't even see how to resend it - although I don't really want to resend it now. I just want to delete it so that the icon will go away on the screen displayed at the first link above.
Any ideas? Thanks

Similar Messages

  • Placement of icon with text issue in fluid layout, how do i fix it?

    Am trying to make things look like the above image, this is for the fluid layout, but no matter what i do, that phone icon with the number 1-844.....does not move to right next to talk to us. Here is JS fiddle:http://jsfiddle.net/xtf205mk/
    .fluid {clear: both; margin-left: 0; width: 100%; float: left; display: block;}
    .top_nav_icon {vertical-align:middle;}
    .call_icon_header{content:url(images/call-us-icon.png); float:left;}
    .talk_icon_header{content:url(images/talk-to-us-icon.png); float:left;}
    .float_right{float:right;} .top_nav_icon {vertical-align:middle;}
    .top_nav_list1 { float:left;}
    .top_nav_list1_1 {font-size:1em; width: 100%; float:right;}
    .top_nav_list1_2 {font-size:1em; width: 100%; clear:none;}
    .top_nav_list1_2 {font-size:1em; width: 100%; clear:none;}
    Am using DW CC, but the visual aids is nowhere helping me in moving things to the right.
    Can anyone help with this one please, thank you.

    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
    <style>
    .navlist li {
        display: inline;
        list-style-type: none;
        padding-right: 20px;
    .navlist li a {
        text-decoration: none;
        color: black;
    </style>
    </head>
    <body>
    <div>
        <nav>
            <ul class="navlist">
                <li class="top_nav_list1_1"><i class="fa fa-phone"></i> (281) 358-4900</li>
                <li class="top_nav_list1_2"><a href="#"><i class="fa fa-comment"></i> talk to us</a></li>
            </ul>
        </nav>
    </div>
    </body>
    </html>

  • IS there a way to fix the issue with text list boxes where they shift (empty space is smaller than the text size) when two text lsit boxes are side by side?

    Currently I have a webpage I designed for a company where I have multiple text list boxes side by side for the purpose of displaying data in each one based on a category in the database. So a text list box for the primary key, name, serial number, etc. I have to use Firefox as it typically works best for printing and functionality for the page. The single issue we are having is that in Firefox if the field is null as far as text the text are shrinks meaning all the data in that list box shifts up and is no longer in line with its congruent data in the other text list boxes. In other browsers that's not a problem and everything stays lined up regardless of whether there's text in the box or not.
    Unfortunately I cannot provide a link but if contacted I will provide screen shots.

    Try posting at the Web Development / Standards Evangelism forum at MozillaZine. The helpers over there are more knowledgeable about web page development issues with Firefox. <br />
    http://forums.mozillazine.org/viewforum.php?f=25 <br />
    You'll need to register and login to be able to post in that forum.

  • How to display data with the same text and key in the drop down list?

    Hi All,
    Would like so to seek for you advice on the above mention topic. How to display the data with the same text and key using function module 'VRM_SET_VALUES'. From my testing by writing a program, this function module will only show the text and key if both have different data. Please find the coding as below. Is the normal behaviour of this function module? How to overcome this problem? Thanks in advance.
    REPORT ZTESTING.
    TYPE-POOLS: VRM.
    DATA: NAME  TYPE VRM_ID,
          LIST  TYPE VRM_VALUES,
          VALUE LIKE LINE OF LIST,
          c(20) type c.
    *      c = 'select any'.
    data:begin of itab occurs 0,
          kunnr like kna1-kunnr,
          name1 like kna1-name1,
         end of itab.
    data:begin of jtab occurs 0,
          kunnr like kna1-kunnr,
          land1 like kna1-land1,
         end of jtab.
    PARAMETERS: p_list(20) AS LISTBOX VISIBLE LENGTH 20
                              default 'SELECT'.
    AT SELECTION-SCREEN OUTPUT.
    NAME = 'p_list'.
    VALUE-KEY = 'Name'.     "---> Data for key is the same with text
    VALUE-TEXT = 'Name'.    "--> Data for text is the same with key
    APPEND VALUE TO LIST.
    VALUE-KEY = '2'.
    VALUE-TEXT = 'Country'.
    APPEND VALUE TO LIST.
    CALL FUNCTION 'VRM_SET_VALUES' EXPORTING ID = NAME VALUES = LIST.
    start-of-selection.
    select kunnr name1 up to 20 rows from kna1 into table itab.
    select kunnr land1 up to 20 rows from kna1 into table jtab.
    case p_list.
    when '1'.
    loop at itab.
    write:/ itab-kunnr,itab-name1.
    endloop.
    when '2'.
    loop at jtab.
    write:/ jtab-kunnr,jtab-land1.
    endloop.
    endcase.
    <Added code tags>
    Moderator Message: Please use the "code" tags to format your code snippet.
    Edited by: Suhas Saha on Nov 17, 2011 11:19 AM

    shawnTan wrote:
    Hi All,
    >
    > Would like so to seek for you advice on the above mention topic. How to display the data with the same text and key using function module 'VRM_SET_VALUES'. From my testing by writing a program, this function module will only show the text and key if both have different data. Please find the coding as below. Is the normal behaviour of this function module? How to overcome this problem? Thanks in advance.
    >
    >
    REPORT ZTESTING.
    >
    > TYPE-POOLS: VRM.
    >
    > DATA: NAME  TYPE VRM_ID,
    >       LIST  TYPE VRM_VALUES,
    >       VALUE LIKE LINE OF LIST,
    >       c(20) type c.
    >
    > *      c = 'select any'.
    >
    > data:begin of itab occurs 0,
    >       kunnr like kna1-kunnr,
    >       name1 like kna1-name1,
    >      end of itab.
    >
    > data:begin of jtab occurs 0,
    >       kunnr like kna1-kunnr,
    >       land1 like kna1-land1,
    >      end of jtab.
    >
    > PARAMETERS: p_list(20) AS LISTBOX VISIBLE LENGTH 20
    >                           default 'SELECT'.
    >
    > AT SELECTION-SCREEN OUTPUT.
    >
    > NAME = 'p_list'.
    >
    > VALUE-KEY = 'Name'.     "---> Data for key is the same with text
    > VALUE-TEXT = 'Name'.    "--> Data for text is the same with key
    > APPEND VALUE TO LIST.
    >
    > VALUE-KEY = '2'.
    > VALUE-TEXT = 'Country'.
    > APPEND VALUE TO LIST.
    >
    > CALL FUNCTION 'VRM_SET_VALUES' EXPORTING ID = NAME VALUES = LIST.
    >
    > start-of-selection.
    > select kunnr name1 up to 20 rows from kna1 into table itab.
    > select kunnr land1 up to 20 rows from kna1 into table jtab.
    >
    > case p_list.
    > when '1'.
    > loop at itab.
    > write:/ itab-kunnr,itab-name1.
    > endloop.
    >
    > when '2'.
    > loop at jtab.
    > write:/ jtab-kunnr,jtab-land1.
    > endloop.
    > endcase.
    >
    > <Added code tags>
    >
    > Moderator Message: Please use the "code" tags to format your code snippet.
    >
    > Edited by: Suhas Saha on Nov 17, 2011 11:19 AM
    This surely seems to be a bug to me(if not by design),  did you check for any SAP notes? Perhaps a front end trace can help(Note 407743) !
    -Rajesh.

  • Mail icons, can i have text with icons

    My missus is a computer novice but i am pleased with her progress with her iPad2, but she does struggle when using Mail, she finds the icons very vague in what they represent, i was hoping there might be an option to have text under  the icon, or perhaps text on it's own ?
    tim

    No, there is no option to have just text or icons with text in the Mail app (http://www.apple.com/feedback/ipad.html). As a work-around you can always do a screenshot, print it off, and label the icons so that she's got something handy to refer to

  • ICON with field contents in case of ALV GRID

    please have a look at the program. the output of the program display ICONS with the field contents.
    I wanted the same functionality in case of GRID layout.
    But in case of GRID layout I am only getting ICON without field contents.
    In this Example
    if I use ALV LIST the ouput will be STACk ICON with X
    IF I use ALV GRID the output will be STACK ICON.
    REPORT ZTEST_SO1 .
    type-pools : slis.
    data : result(25).
    types : BEGIN OF Ty_MARA,
            gv_flag type char25,
            end of ty_mara.
    data : gt_mara type standard table of ty_mara,
           wa_mara type ty_mara.
    DATA : gt_fieldcat type slis_t_fieldcat_alv,
           wa_fieldcat type slis_fieldcat_alv.
    wa_fieldcat-fieldname = 'GV_FLAG'.
    APPEND WA_FIELDCAT TO GT_FIELDCAT.
    CALL FUNCTION 'ICON_CREATE'
      EXPORTING
       name                        = '@3B@'
       TEXT                        = 'X'
       INFO                        = 'YY'
       ADD_STDINF                  = 'X'
    IMPORTING
       RESULT                      = wa_mara-gv_flag.
    IF sy-subrc EQ 0.
    APPEND WA_MARA TO GT_MARA.
    ENDIF.
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
    EXPORTING
      I_INTERFACE_CHECK              = ' '
      I_BYPASSING_BUFFER             =
      I_BUFFER_ACTIVE                = ' '
       I_CALLBACK_PROGRAM             = 'ZTEST_SO1'
      I_CALLBACK_PF_STATUS_SET       = ' '
      I_CALLBACK_USER_COMMAND        = ' '
      I_STRUCTURE_NAME               =
      IS_LAYOUT                      =
       IT_FIELDCAT                    = GT_FIELDCAT
      IT_EXCLUDING                   =
      IT_SPECIAL_GROUPS              =
      IT_SORT                        =
      IT_FILTER                      =
      IS_SEL_HIDE                    =
      I_DEFAULT                      = 'X'
      I_SAVE                         = ' '
      IS_VARIANT                     =
      IT_EVENTS                      =
      IT_EVENT_EXIT                  =
      IS_PRINT                       =
      IS_REPREP_ID                   =
      I_SCREEN_START_COLUMN          = 0
      I_SCREEN_START_LINE            = 0
      I_SCREEN_END_COLUMN            = 0
      I_SCREEN_END_LINE              = 0
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER        =
      ES_EXIT_CAUSED_BY_USER         =
      TABLES
        t_outtab                       = GT_MARA
    EXCEPTIONS
      PROGRAM_ERROR                  = 1
      OTHERS                         = 2
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

    Read the documentation of FM ICON_CREATE, the purpose of the Function module is entirely different from what you are using it for.
    To print Icons in ALV (Using FMs ) all you need to do is to send the Icon name in the field.
    Also parameters TEXT and INFO of FM ICON_CREATE seem to be flags, that are appended to the icon name so that when you set it on the screen the appropriate info or Text is shown.

  • Saving from Safari as PDF results in an icon with 0 byte volume that fails to open as it is "damaged" Why and how to solve?

    saving from Safari as PDF results in an icon with 0 byte volume that fails to open as it is "damaged" Why and how to solve?

    Back up all data before making any changes. Please take each of the following steps until the problem is resolved.
    Step 1
    If Adobe Reader or Acrobat is installed, and the problem is just that you can't print PDF's displayed in Safari, you may be able to print by moving the cursor to the the bottom edge of the page, somewhere near the middle. A black toolbar may appear under the cursor. Click the printer icon.
    Step 2
    There should be a setting in its preferences of the Adobe application such as Display PDF in Browser. I don't use those applications myself, so I can't be more precise. Deselect that setting, if it's selected.
    Step 3
    If you get a message such as ""Adobe Reader blocked for this website," then from the Safari menu bar, select
    Safari ▹ Preferences... ▹ Security
    and check the box marked
    Allow Plug-ins
    Then click
    Manage Website Settings...
    and make any required changes to the security settings for the Adobe PDF plugin.
    Step 4
    Triple-click anywhere in the line of text below on this page to select it, the copy the selected text to the Clipboard by pressing the key combination command-C:
    /Library/Internet Plug-ins
    In the Finder, select
    Go ▹ Go to Folder
    from the menu bar, or press the key combination shift-command-G. Paste into the text box that opens (command-V), then press return.
    From the folder that opens, move to the Trash any items that have "Adobe" or “PDF” in the name. You may be prompted for your login password. Then quit and relaunch Safari.
    Step 5
    The "Silverlight" web plugin distributed by Microsoft can interfere with PDF display in Safari, so you may need to remove it, if it's present. The same goes for a plugin called "iGetter," and perhaps others — I don't have a complete list. Don't remove Silverlight if you use the "Netflix" video-streaming service.
    Step 6
    Do as in Step 4 with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari.

  • Green Envelope Icon Problem

    Hi,
    I have a Palm Centro with Verizon.  I do not have a data plan.  I have picture and video text messages blocked because they charge me  for internet data.  When I send or receive a text message, I have a green envelope icon at top with a blinking yellow arrow that hangs my palm for up to 2 minutes. 
    Verizon cant reset the envelope, but said it might be because of a text message with an attached picture in cyberworld that cant get in.  Another rep thought it might be trying to sync with an email address???  I have talked to 5+ reps with no solution yet.
    Verizon keeps ragging on me to get a data plan.  They say I am the only person in the world with a smart phone / PDA without a data plan.  I have internet access 24/7 without my phone.
    Any help, advise?
    Thanks

    No, there's no way to make it the default. You can, however, get the miniplayer if you hold down the Option key and then click the green button.
    BTW, questions about the Mac version of iTunes will usually get the quickest and most applicable responses if you ask in the iTunes for Mac forum rather than here in the iTunes for Windows forum.
    Regards.

  • How can I relace the Folder Icon with a more discriptive Icon

    Bookmark toolbar: When you add a folder, it uses a "folder" Icon. How I replace that "folder Icon with a more Discriptive Icon, so I don't need to add text?

    There are extensions that can replace the favicon of a bookmark, but AFAIK then there aren't extensions that can replace a folder icon.
    The only way to do that is via code in userChrome.css and specify an icon for each folder.<br />
    Place the icons in the same chrome folder as the userChrome.css file.
    The folder name is case sensitive and need to be exactly the same as specified for the bookmarks folder
    <pre><nowiki>#personal-bookmarks .bookmark-item[container][label="Folder_Name"] {
    list-style-image:url('folder-icon.png')!important;-moz-image-region:auto!important;}
    </nowiki></pre>
    Add the code to userChrome.css below the @namespace line.
    * http://kb.mozillazine.org/userChrome.css
    * http://kb.mozillazine.org/Editing_configuration
    You can use the ChromEdit Plus extension to have easier access to the customization files.
    * ChromEdit Plus: http://webdesigns.ms11.net/chromeditp.html

  • Probs with drop-down text in Word doc

    I'd like to include drop-down text in my printed
    documentation, but I'm having problems making it work. I have lots
    of i-frames in my Webhelp project and, for some reason, they all
    seem to have carriage returns in them. When I turn on the "include
    drop-down text" in my printed doc options, these carriage returns
    wreak havoc on my formatting.
    I've tried removing them from the TrueCode, but they just
    re-generate. I've also thought about writing a macro in Word to
    remove them, but I can't think of a way to ensure it is consisent.
    And, I have numerous long documents that will be generated from
    this project, so it is not feasible to remove them manually.
    I'd really like to use the drop-down text functionality for
    my printed docs. Short of turning of the drop-down text, using
    conditional tags, and duplicating text , I don't know how. Any
    ideas?
    BTW, I'm using RoboHelp X5.

    Based on the information I received from Peter Grainge, I completed the following steps.  The Bulleted-List issue was fixed, but not the numbered-lists.
    1.        Make sure your RoboHelp project is not opened.
    2.        Open up the default.css style sheet for your project in Notepad.
    3.        Search for the following text:
    P.Numbered-List {
       list-style: decimal;
       text-indent: -;
       margin-left: 0pt;
    4.        Replace with the following text:
    /*P.Numbered-List {
       list-style: decimal;
       text-indent: -;
       margin-left: 0pt;
    5.        Search for the following text:
    P.Bulleted-List {
       list-style: disc;
       margin-left: -6pt;
    6.        Replace with the following text:
    /*P.Bulleted-List {
       list-style: disc;
       margin-left: -6pt;
    7.        Open up your RoboHelp Project
    8.        Go to Edit : Find and Replace Files
    9.        Search for:  <li><p class="Bulleted-List">
    10.     Replace with: <li class="Bulleted-List"><p>
    11.     Now do another search and replace.
    12.     Search for: <li><p class="Numbered-List">
    13.     Replace with: <li class="Numbered-List"><p>
    14.     Remove any extra lines that appear at the end of the drop-down text.

  • Smartview 11.1.2.5- Cannot change value in Text-List Dropdowns- Excel Crashes

    Using latest/greatest Smartview with 64-bit Office and Windows 7.  I have a native essbase app utilizing text-lists. I am trying to update text-value through smartview. Smartview automatically produces a drop down to select a value from the linked text-list. However- as soon as a different value is entered or selcted in this cell with the drop-down list- Excel crashs. I have reproduced this consistently everytime. I have no way to change values for text-measure accounts linked to text-lists. I feel this is and incompatabiliyt issue with office 64-bit.  

    SmartView using the forms. It appears this issue has been logged as issue number 6566082 as seen here: http://docs.oracle.com/cd/E17236_01/epm.1112/readme/sv_1112200_readme.html
    But I can't seem to find out where I can get information on the status of this issue and whether it's been patched in future versions.

  • Retrieve files  from a text list and copy them to other location?

    Hi,
    I work as a photographer: my clients often send me their final selections of my pictures as a text list (i.e. file001.jpg file 004.jpg file 054.jpg and so on), so I have to go back and pick each picture "by hand": this is a huge waste of time since I'm dealing with hundreds of picks in thousands of files.
    My question is: is there a way to retrieve and copy the selected files automatically? I was thinking about feeding the list of files to Automator, but I can't seem to find a way to do it.
    any hints?
    thanks in advance
    Andrea

    ok I seemed to have it sorted out...
    Niel, I'm no programmer at all, but thanx to your script I was able to come up with this:
    tell application "Finder"
    set source_folder to choose folder with prompt "Select folder with all pictures"
    set the_files to every paragraph of (read (choose file with prompt "Select text file with the names of the pictures to be copied"))
    set target_folder to choose folder with prompt "Select destination folder"
    repeat with this_file in the_files
    try
    duplicate item this_file of source_folder to target_folder
    end try
    end repeat
    end tell
    that seems to work!
    needs some fine tuning, like including subfolders of the first folder chosen!
    THANX AGAIN!
    Message was edited by: SAPO!!

  • How can I generate a text list of the library?

    I'd like to know how to generate a simple
    Artist - Album
    text list of my iTunes library.
    I'm curious why this hasn't already been added as a feature?
    The export library command is not what I'm looking for. I just want something that generates a .txt without all the XML mumbo jumbo.
    Thanks for the help.

    I like that!
    And if you want tab delimiters and column headings, you can do this:
    tell application "iTunes"
         set the_output to "TITLE" & tab & "ARTIST" & tab & "ALBUM" & return & return
         --set counter to 0
         repeat with this_track in every track of playlist "Music"
              --set counter to counter + 1
              --if counter = 50 then exit repeat
              tell this_track
                   set the_output to the_output & name & tab & artist & tab & album & return
              end tell
         end repeat
         return the_output
    end tell
    If the library is big, it takes forever to collect the text, but you can try it out on just the first 50 tracks by un-commenting (or deleting) all the "counter" lines I added.
    It would be nice to have it write directly to an untitled TextEdit document (especially if there's a lot of text to copy/paste), but I'm a beginner with AppleScript so I don't know how or if it's even possible.

  • Is there a way to increase the icon size (and the text below) without using zoom?  I am trying to help out someone who has moderate visual impairment that does not want to use zoom just to see the icons and their labels.

    Is there a way to increase the icon size (and the text below) without using zoom in iOS 7?  I am trying to help out someone who has moderate visual impairment that does not want to use zoom just to see the icons and their labels.

    Hello Apple.
    It seems you have gone to great lengths to improve accessibility in many areas of the iPad. Why was this obvious problem with icon text size missed?  (It's not with the Mac.). And for so long too.
    Do you employ people with actual accessibility problems to help you do UI design?
    I think too, that some buttons are too close for people who might have motor control problems.
    I love my iPad but I fear as I age, the iPad might not keep up with me.

  • The icons in the bookmark tool bar are blank and the text that use to be below the icon is gone. I now have to cursor over the blank icons to see the text and the one I want. Can the icon/text customization be returned?

    In the Navigation Toolbar, the icons "Back", "Forward" etc. show the small icon and the descriptive text below the Icon. My Bookmark Toolbar use to have the same icon/text format but at some point, possibly a browser update, that changed. Currently, I do have a visible Bookmark Toolbar BUT the icons do not show the website icon, as previously, and the text below each icon is gone. I an cursor over each icon and the text becomes visible next to the icon. This is a bit of a pain to find a bookmark. Can I do a customization to return to the icon/text format.
    Was this changed because browser users requested this option, or was it an internal decision.? If the later why make such changes when not requested?
    Ed Sander

    That wasn't a change in Firefox. It sounds like something is broken in your Firefox installation, or you are misunderstanding the different between the Bookmarks Toolbar and the other Toolbars.
    In the Bookmarks Toolbar the text appears next to the website icon, not below the icon as with the other two Toolbars, and it's not switchable between text and no text as with the other Toolbars. With both the bookmark icon and the Bookmark name missing, something is broken in your installation. You need to do a little troubleshooting.
    Do you have that problem when running in the Firefox SafeMode? <br />
    [http://support.mozilla.com/en-US/kb/Safe+Mode] <br />
    ''Don't select anything right now, just use "Continue in SafeMode."''
    If not, see this: <br />
    [http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes]
    If your problem isn't related to an extension, your bookmarks data base file (places.sqlite) is probably corrupt. <br />
    http://kb.mozillazine.org/Locked_or_damaged_places.sqlite <br />
    Be aware that if you delete the "places.sqlite" and similar files, your bookmark website icons won't automatically appear (the JSON backups don't have that icon data) when you restart Firefox and the places.sqlite is rebuilt using the backup data file, but the icons should be saved the first time each bookmark is used for the first time.

Maybe you are looking for