is there a way to tell if the person calling me is really using an iPhone.

A person calls me a phone which, said, is an iPhone, yet when I text, my outgoing text does not appear in blue, what he does with everyone who has an iPhone.   In addition, I get the text of the message undeliverable.  So my questions are: 1) is there a way for me to verify that the person calling is the use of an iPhone, and 2) if indeed it is an iPhone, why the text would not delivered?  Even if the person was using a droid, the text should go.

There is no way to determine what type of phone a person uses when they call you. As iMessage versus SMS is, if the person who uses an iPhone does not choose to have iMessage activated, so you would not get the opportunity to send a message as an iMessage, he would send as a normal SMS. If the message is not delivered, it could be for any number of reasons, connection problems, the lack of a SMS plan on one of the devices, etc. Can send you a SMS? If so, can answer you?

Tags: iPhone

Similar Questions

  • Is there a way to tell when the bin was emptied last?

    Is there a way to tell when the bin was emptied last?

    Open a new Finder window. The display in the FInder menu, select Customize toolbar... Drag / move the icon to get information from the right toolbar on the left of the existing action button. Click done in the personalization Control Panel and close the window of the Finder. This Get Info button will also be useful for selections of files.

    OS X does not connect to an event to empty the trash. You can click on the trash icon in your Dock, and if the Recycle Bin has been emptied recently, you'll be watching an empty Finder window. Now, you can click on this button to obtain information about the toolbar, and the displayed change date will be when the Recycle Bin has been emptied. If you add more items to the trash, this date modifed will be when the last element has been added.

  • Is there a way to test for the first call of a function?

    Hello

    I created a function (using other functions I created) to generate a dynamic hierarchy tree menu based on parentID and itemID etc etc - I'm sure you are familiar with this concept. It works very well, and there is no problem.

    However, I do all this build in a string, and then dumped on the page. Again, this works very well. However, because the function is called recursively, my class, the class = 'tree' repeat itself in each occurrence of the opening UL tag.

    I want to only this class to be applied to the first UL, but because it is recursive, I don't know how to detect if the function is called for the first time or 5th time, etc.. I mean something like:

    < cfif myFunction is called the first time >
    Add the class
    < cfelse >
    do not add the class
    < / cfif >

    Please see my attached code. It is fully functional. Please don't worry that all the other functions do etc, they work very well, but I need a way or a variable to test against.

    Any ideas?

    Thank you very much
    Michael.

    Kapitaine wrote:
    > Hmmm, I bet that the solution is simple, but my mind is frazzled! Haha.
    >

    Yes, it's simple, you test the Boolean value and it will be true if it is
    set to true for a recursion.






    #somethingStupid(5,true) #.

  • I have been using firefox since the beginning on my Mac G-5 until today, when I was asked to put my browser I did and now I can't not geet firefox as my browser. I s there a way to reset to the old version? I really enjoyed using Firefox.

    I can't get Firefox to work on my Mac G5 computer, since I have excluded the last proposed update today. Now, he says he is not supported by this computer. I would like to know where to go to get the older version that I had been using version 9.0.1 does not work for me.

    From Firefox 4, Mac must have an Intel x 86 processor (that yours is a Mac PPC) and OSX 10.5 or higher (you don't).

    The good news is that Firefox 3.6.x supports even OSX 10.4 and Mac PPC Mac architecture. The bad news is that the support for Firefox 3.6.x series is likely to end in the first quarter of 2012.

    You can try the TenFourFox third-party product that supports the PPC Macs with OSX 10.4.11 and OSX 10.5.8. There are 9 Firefox version TenFourFox . The product is based on versions of Firefox released. All support is provided by the developer, not by this site:

    If this answer solved your problem, please click 'Solved It' next to this response when connected to the forum.

  • Can not hear the person calling, unless I have use speaker/speaker

    Phone worked perfectly up until a day or 2 ago now I can't hear people when they call. I change all the parameters with the phone at the same time. T-mobile told me to take it in a t-mobile store to find out what the problem. I suspect that it is broken. I did a reset, pulled out the battery and even got a cup of tea, but nothing not helped... it still does not work properly. If send it back us for repair? I'd be more inclined to return permanently. There is a phone on a 2 year contract with only a 12 month warranty. To go so bad after only a week or 2 of property has put me off a bit.

    I had sony ericsson to the only reason why I have not so far is that my only final was ruined in a rain storm while I was on my bike, where a "lifeproof" defies torrential.

    I will post what happens at the shop in the morning, if anyone is interested.


  • Is there a way to tell what 'effects' I applied to a chart? I need to go back

    I need to go back and change the effects, I applied to one area of the logo, is there a way to tell what the effects were originally? It would be useful to know if I'm not too greatly changing

    Thank you

    If you haven't used something later as decompose the aspect that has removed the original appearance.

  • Is there a way to tell if a virtual machine was created using the LSI or BusLogic SCSI device?

    Is there a way to tell if a virtual machine was created using the LSI or BusLogic SCSI device?

    No worries, you can try going to the virtual machine and looking for an online .vmx file such as - scsi0.virtualDev = "free".

    I shot on a vmware workstation VM, don't know if it's exactly the same vmware server, but is worth a visit.

    • Kyle

  • Is there a way I can find the AUTHID set of PL/SQL?

    If I am logged in as A user and I have a query a view that calls a function of authid DEFINER belonging to user B, and it called as a function of the user current authid owned by C that I am not some priivileges of the user whose second service runs under. I think it should be A but y at - it a routine system that I can call that tells me for certain that it is?
    Keith.

    Is there a way I can find the AUTHID set of PL/SQL?

    You can view the current_schema:

    SQL> create or replace procedure p1
       authid definer
    as
    begin
       dbms_output.put_line ('P1 :' || sys_context ('userenv', 'current_schema'));
    end p1;
    /
    Procedure created.
    
    SQL> create or replace procedure p2
       authid current_user
    as
    begin
       dbms_output.put_line ('P2 :' || sys_context ('userenv', 'current_schema'));
    end p2;
    /
    Procedure created.
    
    SQL> grant execute on p1 to scott
    /
    Grant complete.
    
    SQL> grant execute on p2 to scott
    /
    Grant complete.
    
    SQL> connect scott/tiger@oracle
    Connected as SCOTT@oracle
    
    SQL> exec michael.p1
    P1 :MICHAEL
    PL/SQL procedure successfully completed.
    
    SQL> exec michael.p2
    P2 :SCOTT
    PL/SQL procedure successfully completed.
    
  • Is there a way to tell how many objects (paths) I chose?

    Is there an easy way to tell how the paths I have selected in Illustrator CS4?

    I have a lot of small sections on the artboard, I want to assure you that I have enough for what I need and I don't want to hand count of hundreds of them to be sure... are at - it a reading somewhere in the interface user of Illustrator that will tell me how many things I chose?

    Go to window > Document Info, in the drop down menu on the side right ensure selection only and objects are checked. If the lines (and only the lines you want to count) are selected, the number of lines will appear next to paths in the palette.

  • Search for "blackle". Is there a way to auto-noir the bottom of each page visited?

    I like the idea of using a black background instead of white on my devices. I'm saving the planet and my eyes. Is there a way to display all the origins of the auto-noir site? And I suppose that, by extension, the white of the text? I understand the images on the page would remain in their original colors, and that's fine. I see a blank page and I want to paint it black.

    People have experimented with modules in this direction over the years. Some who always seem to be maintained are:

    https://addons.Mozilla.org/firefox/addon/night-mode-Pro/

    https://addons.Mozilla.org/firefox/addon/aniverto/

    https://addons.Mozilla.org/firefox/addon/eyeguard/

    This allows you to switch between different color profiles and is probably a little more of "brute force":

    https://addons.Mozilla.org/firefox/addon/color-toggle/

  • Is there a way to globally disable the cache of Firefox?

    I run a computer lab with several linux PC (Ubuntu LTS 14.04 / latest version of Firefox). The users homedirectories are located on a file server central and limited by a diskquota. Unfortunately, Firefox takes an important part (if not all) of this quota with its cache. Is there a way to globally disable the cache?

    EDIT:
    Add the following lines to /etc/xul-ext/ubufox.js helped...

    Pref ("browser.cache.disk.enable", false);
    Pref ("browser.cache.disk.smart_size.enabled", false);
    Pref ("browser.cache.disk.capacity", 0);

    Add the following lines to /etc/xul-ext/ubufox.js helped...

    Pref ("browser.cache.disk.enable", false); Pref ("browser.cache.disk.smart_size.enabled", false); Pref ("browser.cache.disk.capacity", 0);

  • I bought an Apple Store Gift card by mistake instead of a gift card to iTunes. Is there a way I can swap the card?

    I bought a gift card from Apple Store by mistake - I was intending to buy an iTunes gift card. Is there a way I can exchange the Apple Store Gift card for iTunes card?

    You must ask to whom he sold.

  • The applications listed under Launchpad, is there a way I can delete the ones I don't use on my MAC Air?

    The applications listed under Launchpad, is there a way I can delete the ones I don't use on my MAC Air? I hope that I can free up space.

    Start the LaunchPad and hold the option key. The icons will start to shake and an X will appear in the upper corner of some but not all. Click the X to remove the application. Programs that have an X are only purchased/downloaded from the App Store. Integrated programs in Mac OS (like Safari) or programs you have downloaded/purchased elsewhere will not be a X. You should not delete (or move) programs such as Safari and Mail (built-in programs) because the update from Apple guess they were be on your computer in their installation location. Weird things happen if they are moved or deleted.

    Programs you don't purchase/download from the App Store can be deleted without the help of the dashboard, but you must be careful about this. Third party programs can be installed in different ways: some come in disk images and are trained in your application forms. These can be moved without danger in the trash. Some are installed using an installation program, and these require a little care to remove. In some cases, they set up items in addition to the program and require a special uninstall program, but this is not true in all cases. I always do the note of programs using a Setup program, so I can make sure I have properly uninstall.

  • Publication in FCPX settings... IS THERE A WAY TO MAKE EDITING THE PARAMETERS EASIER TO HAVE FCP TO PUBLISH EACH SCHOOL SETTING? IS THERE A WAY TO "PUBLISHED IN THE WORLD" A WHOLE PROJECT OR AT LEAST PARAMETERS?

    IS THERE A WAY TO MAKE EDITING THE PARAMETERS EASIER TO HAVE FCP TO PUBLISH EACH SCHOOL SETTING?

    IS THERE A WAY TO "PUBLISHED IN THE WORLD" A WHOLE PROJECT OR AT LEAST PARAMETERS?

    Is it wise to publish all THE settings of a plugin?

    I prefer to reduce the options, for example I'm rigging 'size' to distribute only one of them-in my eyes - range 'useful '; or create by rigging the drop-down menu 'plans', for example for the color selections...

    In any case...

    'Major settings' as Transform or filling or 3D can be published, just click Reset arrow, and all the "sub menu" get published too... can't imagine how to make the publication easier...

    BTW: CAPS means YELLING on the boards...

    be nice... what goes around, comes around ...

  • Is there a way to manually activate the built in FLASH on my Canon Rebel T3i?

    Is there a way to manually activate the built in FLASH on my Canon Rebel T3i? I can't find the place to do this.
    Thank you.

    You can also use the "Programming" mode  Program mode allows the camera to choose the initial settings, but unlike the automatic mode where you cannot override the decisions of the exhibition, you CAN override the decisions of the exhibition in programming mode if you wish.

    If you choose the programming mode, press the button to bring up the flash and then don't bother to circumvent the decisions of exposure of the camera then it will work a lot like automatic mode.

Maybe you are looking for

  • Winner 850 000 $

    Hi I have a question. I received an email on my email * address email is removed from the privacy *, it's something that I won $ 850,000, Microsoft Asia Zone... and thay want contact me Trust Bank Uk, they sent me these information: Name: e-mail: * a

  • How to back up the local directory/favorite in the C series or series EX with TC5.0

    Hi all I would like to know there is any method to safeguard the local directory/favorite in the series C or EX-series, with TC5.0. On the other hand, we have configured the root account. We found the local phone are stored with FolderId (localGroupI

  • cannot read the docs pdf printed, too small

    When I go to the website web sonye for download instructions / manual of my recorder, it load in pdf format. When I print it, its too small to read.  I can zoom in and read, but if I print on zoom, it always comes out even, too small to read.  In the

  • BlackBerry Smartphones SmartLight does not work

    I downloaded the app SmartLight allowing the torch is sous-eclaire stays on despite bright light conditions, but I can do work of ti. It says it is installed but I can't access the applications or make it work. Can someone help me?

  • When I try to send an e-mail with AOL, I get this error: "bad SMTP to the host.

    I get this message every time I try to send an e-mail to a recipient who has AOL. I know what SMTP, but this what/who is the host? Is my server or the server of the recipient? How can I solve this problem? original title: bad SMTP to the host