How do you get only a contacts mobile number to show up when sending text....

On the Droid, when you typed a contact in the "To" line of a text message, only their mobile number  showed up.  On the Droid X, all contacts phone numbers show up.  Very annoying. Anybody know how to fix this? Thanks in advance for any help/suggestions.

Check the settings for your messaging app and see if there's a show only... option. I use handcent on my Eris and I know it has the option.

Similar Messages

  • How can I get a picture to go with my email signature when sending emails from my iPad? Only a square box shows up on my signature not the actual picture I iploaded in my settings.

    How can I get a picture to go with my email signature when sending emails from my iPad? Only a square box shows up on my signature not the actual picture I iploaded in my settings.

    Only Apple Account Security could help at this point. You can try calling Apple Support in Canada - you'll have to find one of the several ways, such as Skype, to call an 800 number from outside of the relevant country - and ask for Account Security and see if they can help. Or you can find a friend who speaks Chinese and ask them to help you talk to Apple Support in China. There are really no other options that I know of.
    Note, by the way, that these are user-to-user support forums. You aren't speaking with Apple when you post here.
    Regards.

  • How to you get the percentage of a number in an array in ipad numbers

    How to you get the percentage of a number in an array in ipad numbers?

    Try asking here
    https://discussions.apple.com/community/iwork/numbers
    it's a part of the forum dedicated to numbers.

  • How do you get the percentage of one number compared to the sum of the total in an array in ipad numbers

    How do you get the percentage of one number compared to the sum of the total in an array in ipad numbers

    On the iPad my example looks like this:
    To fill the formula down you tap cell and then Fill:
    And drag the bottom part of the yellow rectangle down:
    Wayne's example would look similar.
    SG

  • How do you get iTunes to not ask for a device password when syncing

    how do you get iTunes to not ask for a device password when syncing?

    Over 6000 people have downladed the script to get around this after a fashion. Is it still required?

  • How do you get the nano to repeat a minute or so when listening to audible book.  not the whole chapter

    I have an ipod nano and load audible books on it.  How do you get it to repeat a small segment without going back to the beginning of the chapter?

     - Well, everything is on-line or TV these days.
    Check out u-verse.com TV at home
    If you want to know what number a channel is on - http://www.att.com/u-verse/shop/channel-lineup.jsp
    If you are looking for a show - on the TV - Menu/search
    If you want an abbrviated guide on the TV, you have choice of hide channels or Favorites - https://forums.att.com/t5/Using-your-U-verse-TV/Channels/m-p/4276714#M6707

  • My Boyfriend has lost all of his contacts on his phone after down loading the new iphone soft wear why would this happen and how can he get them back                          how can you get back your contacts after down loading the new iphone soft wear

    My boyfriend has lost all of his contacts on his phone after downloading the new iphone softwear. why would this happen and how can he get it all back

    You don't have to post the same question at one minute intervals.  Somebody will answer it, but perhaps not in 60 seconds.

  • How do you get a deleated contact back ?

    How can you retrieve contacts that you deleted ?

    If it's an iPhone/iPad, you can restore from your iCloud backup, or iTunes backup - depending on which one you use. Restoring from iTunes and iCloud backup instructions can be found here... Back up and restore your iPhone, iPad, or iPod touch using iCloud or iTunes - Apple Support

  • How do you get a topic to open in a custom window when accessed from the index?

    I right click on an index key word and open Properties. There is only one topic associated with this key word. I click on the Advanced tab, select the custom window that I created. Click OK, compile, etc.
    When I try to access this topic from the index, it still opens in the default pane. When I access it from the TOC, it opens in the custom window. How can I get the topic to open in the custom window from the index?
    Thanks!
    Sue

    Hello,
    The link might not work in Preview (When the option to open link in new tab is checked) however it will work if you do a File>Preview page/site in Browser.
    Muse Preview has only one tab and cannot open another tab/window which is why this functionality does not work in Muse Preview. but works in preview in Browser and in published site.
    Regards,
    Sachin

  • How do you retain only fractional part of number

    If I have a number say 3.10383, how do I use only the fractional part? In other words, how do I get rid of the three? My ultimate goal is to add two values of hours, minutes and seconds, say 1 hour, 30 min, 4 secs plus 2 hours, 7 min, 2 secs as an example. Any help would be appreciated.

    afried01 wrote:
    If I have a number say 3.10383, how do I use only the fractional part?Most likely you want to do this:
    double x = 3.10383;
    double fracPartOfX = x - (int)x; //integer cast amounts to simple truncation You might as well check java.lang.Math, which contains methods like round, floor and their siblings.
    My ultimate goal is to add two values of hours, minutes and seconds, say 1 hour, 30 min, 4 secs plus 2 hours, 7 min, 2 secs as an example.Is the need for the fractional part trick related to actually performing the sum or just to displaying the results?

  • How do you get the integer of a number with more than 10 digits

    I can't seem to be able to get the integer of a number with more than 10 digits.
    ex:
    integer(12345678901.3) returns -539222987 when it should really return 12345678901
    Thanks for the help
    (I'm on director 11 at the moment)

    You can write a Parent script to represent Big Integers. I wrote some code to get you started. It consist of two classes - "BigInt" and "Digit".  At this point you can only add two "BigInts" and print out the value with a toString() function. Note that you pass a String to the "BigInt" constructor.
    In the message window you could enter something like:
    x = script("BigInt").new("999999999999")
    y = script("BigInt").new("100000000000000000004")
    z = x.add(y)
    put z.toString()
    And the output window will show:
    -- "100000001000000000003"
    Here are the two Parent scripts / Classes
    -- Digit
    property  val
    property  next
    on new me, anInt
      val = anInt
      next = 0
      return me
    end new
    -- BigInt
    property  Num
    property  StringRep
    on new me, aString
      Num =  script("Digit").new(Integer(aString.char[aString.length]))
      curNum = Num
      repeat with pos = aString.length - 1 down to 1
        curNum.next = script("Digit").new(Integer(aString.char[pos]))
        curNum = curNum.next
      end repeat
      return me
    end new
    on add me ,  Num2
      curNum = Num
      curNum2 = Num2.Num
      result = curNum.val + curNum2.val
      if result > 9 then
        carry = 1
      else
        carry = 0
      end if
      result = result mod 10
      sum = script("Digit").new(result)
      curSum = sum
      curNum = curNum.next
      curNum2 = curNum2.next
      repeat while curNum.ObjectP AND curNum2.ObjectP
        result = curNum.val + curNum2.val + carry
        if result > 9 then
          carry = 1
        else
          carry = 0
        end if
        result = result mod 10
        curSum.next = script("Digit").new(result)
        curSum = curSum.next
        curNum = curNum.next
        curNum2 = curNum2.next
      end repeat
      repeat while curNum.ObjectP
        result = curNum.val +  carry
        if result > 9 then
          carry = 1
        else
          carry = 0
        end if
        result = result mod 10
        curSum.next = script("Digit").new(result)
        curSum = curSum.next
        curNum = curNum.next
      end repeat
      repeat while curNum2.ObjectP
        result = curNum2.val +  carry
        if result > 9 then
          carry = 1
        else
          carry = 0
        end if
        result = result mod 10
        curSum.next = script("Digit").new(result)
        curSum = curSum.next
        curNum2 = curNum2.next
      end repeat
      StringRep = ""
      me.makeString(sum)
      return me.script.new(StringRep)
    end add
    on toString me
      StringRep = ""
      me.makeString(Num)
      return StringRep
    end toString
    on makeString me, digit
      if not digit then
        return
      end if
      me.makeString(digit.next)
      put String(digit.val) after StringRep
    end makeString

  • How can you get your ipod touch serial number from apple beacause my ipod was stolen

    how can i get my ipod serial number from apple

    http://support.apple.com/kb/HT2526?viewlocale=en_US
    Basic troubleshooting steps  
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 
    Got problems with your Apple iDevice-like iPhone, iPad or iPod touch? Try Troubleshooting 101
     In Memory of Steve Jobs 

  • How do you get the auto red eye to work in iphoto when it won't click?

    When we are trying to correct the red eye problems from photos taken from my dads Sony point and shoot camera iphoto's automatic red eye option isn't enabled. We tryed to fix this by upgrading to the latest version of iphoto but the problem persists- the autocorrect for the red eye won't click. We are feeling ripped off because it should work. Right?

    Try this:  launch iPhoto with the Option key held down and create a new, test library.  Import some photos and check to see if the same problem persists. If it does try the following:  make a temporary, backup copy (if you don't already have a backup copy) of the library and try the following:
    1 - delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your
         User/Home()/Library/ Preferences folder.
    2 - delete iPhoto's cache file, Cache.db, that is located in your
         User/Home()/Library/Caches/com.apple.iPhoto folder. 
    Click to view full size
    3 - launch iPhoto and try again.
    NOTE: If you're moved your library from its default location in your Home/Pictures folder you will have to point iPhoto to its new location when you next open iPhoto by holding down the Option key when launching iPhoto.  You'll also have to reset the iPhoto's various preferences.
    NOTE 2:  In Lion and Mountain Lion the Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and hit the Enter button - 10.7: Un-hide the User Library folder.
    If the red eye correction works OK in the new library do the following on your original library: make a temporary, backup copy of your library if you don't already have one (Control-click on the library and select Duplicate from the contextual menu) and  apply the two fixes below in order as needed:
    Note:  the following is for iPhoto 9.4
    Fix #1
    Launch iPhoto with the Command+Option keys held down and rebuild the library.
    Since only one option can be run at a time start with Option #1, followed by #3 and then #4 as needed.
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    Download iPhoto Library Manager and launch.
    Click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option
    In the next  window name the new library and select the location you want it to be placed.
    Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments.  However, books, calendars, cards and slideshows will be lost. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • How do you get the rest of the form to shift down when a field grows in a subform

    I am using ES2, I am trying to get a form to shift down when a field grows in a subform, and nothing I tries works.  I am not an expert in this area, but all the help I have tried on-line does not seem to workI would be more than happy to email the form to anyone that could give me some assistance.  I have already spent too much time on this project, and if I cant get it to work, I will have to move back to a simple word form without all the fancey bells and whistles, but I hate to move backwards.  Any help or guidance would be greatly appreciated.
    Thanks in advance,
    Kathy

    Thank you so much, I tried to duplicate the form from Assure and something is still wrong.  The background of the subform is not light green, I am not sure if the color was for display purpose only, but it still did not flow right either.  I was unable to find the option in the testfield to "Display all of the content (on exit).  I am also getting an warning note: The object may not work properly. Although the object is allowed to break, deselecting the "allow page breaks within content" option of the parent object restricts this object from breaking between pages.    Here is the settings as they are currently set:
    Subform:
    OBJECT TAB
         Binding:
              Object: subform1
              DataBinding: Usename (subform1)
         Pagination:     Greyed out
         Subform:
              Content: Flowed
              Flow Direction:     Top to Bottom
              Allow Page Breaks withing Content     Checked
              This subform is an insertion point        Unchecked
    BORDER TAB - NA
    LAYOUT TAB
         x = .25IN                         Y=.25IN
         width = 8in                       height = greyed out
         autofit no checked             autofit = greyed out but checked
    ACCESIBILITY TAB
         Role: None
         Rest is greyed out
    TEXT FIELD SETTINGS:
    OBJECT TAB
         Field:
              Field type: Text Field
              Caption: TextField
              Appearance: Sunken Box
              Allow Multiple Line     Checked
              Limit Length - Not Checked
              Limit Lenfth to visible Area - Not Checked
              Allow Page Breaks within content - Checked
              Keep with Next - Not Checked
       Value
              Type: User Entered Optional
              The rest is blank
         Binding 
              Name: TextField1
              Data Binding: Use name (testField1)
    BORDER TAB - NA
    LAYOUT TAB
         X = Greyed out                    Y = Greyed out
         Width: 2.4409in                    Height: .3543in
         Expand to fit - not checked     Expand to fit = Checked
    What am I missing?

  • How do you get the pannel in your mac that shows your documents in icloud

    I've upload some pages files to icloud and i don't know how to make the pannel in my mac to show up to get the documents. Help me please.

    If you are using the latest version of Pages on your Mac in Mountain Lion (OS X 10.8) the iCloud panel appears when you go to open a Pages document.
    You need to upgrade your Mac OS to get it.

Maybe you are looking for

  • Is there a way to log the PID at the same time as GC ?

    Hi there, I have two JVMS running inside a j2ee container. If I log GC with -Xloggc, the output only goes to the one file, written to by both JVMs, and the PID of the JVM does not get output so I cannot tell in which JVM the GC has occurred. Was wond

  • Oracle CRM On Demand Outlook Integration - Add-in shows inactive

    I have followed the steps given in the Oracle CRM On Demand->MySetup. After installing the OEI, the dll file is registered. In MS outlook->Tools->Trust Center->Add-ins. The Siebel Outlook Integration Add-ins is shown in the "Inactive Application Add-

  • What's the meaning of these information?

    I use java -verbose:gc to run MyApp, and there are two information displayed on the console. [GC 905K->905K(1984K), 0.0198318 secs] [Full GC 945K->944K(2152K), 0.0497921 secs] what's the every part's meaning of these information?

  • Cant get rid of JOptionPane Message title

    Im trying to get some user input using a JOptionPane message. I am able to get the information that im looking for but when the window comes up there is a header that says "JOptionPane message" and I would like to get rid of this. Here is the code th

  • OTL TIme card: How to make Project as criteria for Expenditure type

    Hi, I need to add project as criteria for Expenditure Type LOV. Can we pass project information as bind varaiable to Expenditure LOV? I need to customize expenditure LOV such that it picks up expenditures defind at the project level apart from prefer