How would 2 people call each other using facetime if both were in a foreign country but staying at different locations within that country?

How would 2 people call each other using facetime if both were in a foreign country but staying at different locations within that country?

It's tied to the Apple ID also - I believe it would use that to find the right person/device.
Perhaps this article would help: http://support.apple.com/kb/HT4319. It looks like you may want to go in through your contacts and make the call.
If you're concerned about data charges, put your phone in Airplane mode before trying to Facetime. That will prevent it from trying to make a call over your cellular data.
~Lyssa

Similar Messages

  • My brother and I will both be in Quito at the same time but staying in different hotels. If we both have facetime how would we call each other (over wifi of course)?

    My brother and I will both be in Quito at the same time but staying in different hotels. If we both have iphones with facetime how would we call each other (over wifi of course)?

    Hello ajs42548,
    The article linked below details how to go about using FaceTime. In order to use FaceTime over Wi-Fi, just verify that you are connected to a Wi-Fi network prior to initiating the call.
    iOS: Using FaceTime
    http://support.apple.com/kb/HT4319
    Cheers,
    Allen

  • I'm trying to find an addon that I used to have. It had blue and pink stickman people fighting each other's colored teams on the screen.

    I'm trying to find an addon that I used to have. It had blue and pink stickman people fighting each other's colored teams on the screen.

    This didn't help!

  • HT201493 My family has multiple iphones registered to me,we would like to follow each other how do i do this.

    My family has mutiple iphones regitered to one account we would like to follow each other on find my friends cant get it to work.

    You will all need to use your own iCloud accounts.

  • I can not use mac book air with samsung galaxy 3 to transfer files. i download the  OS X mountain line version the latest one...how can i introduce them each other?

    i can not use mac book air with samsung galaxy 3 to transfer files. i download the  OS X 10.8.1 mountain line version the latest one...how can i introduce them each other?

    Thanks how do I get the latest version then? online its asking me to submit address details and all sort and I'm not keen to do that, I'm working away from the city I bought it in and there is no Apple Store near me yet?

  • How would you read in each line of data and display them to message box?

    How would you read in each line of data from the _.txt file_ and display the whole data using an information-type message box?
    I know how to display each line of the .txt file data, but I do not know how to display the whole thing.
    Here is how I did to display each line of data using the message box:
    import javax.swing.JOptionPane;          // Needed for the JOptionPane class
    import java.io.*;                         // Needed for file classes
    public class problem3
         public static void main(String[] args) throws IOException
              String filename;          // Needed to read the file
              String categories;          // Needed to read the categories
              // Get the filename.
              filename = JOptionPane.showInputDialog("Enter the filname.");
              // Open the file.
              FileReader freader = new FileReader(filename);
              BufferedReader inputFile = new BufferedReader(freader);
              // Read the categories from the file.
              categories = inputFile.readLine();
              // If a category was read, display it and
              // read the remainig categories.
              while(categories != null)
                   // Display the last category read.
                   JOptionPane.showMessageDialog(categories);
                   // Read the next category.
                   categories = inputFile.readLine();
              // Close the file.
              inputFile.close();
    }I think I need to change here:
    // If a category was read, display it and
              // read the remainig categories.
              while(categories != null)
                   // Display the last category read.
                   JOptionPane.showMessageDialog(categories);
                   // Read the next category.
                   categories = inputFile.readLine();
              }but I don't know how to.
    Could you please help me?
    Thank you.

    kyorochan wrote:
    jverd wrote:
    What is not understood about your question is which part of "read a bunch of lines and display them in a textbox" do you not understand.
    First thing's first though: You do recognize that "read a bunch of lines and display them in a textbox" has a few distinct and completely independent parts, right?I'm sorry. I'm not good at English, so I do not understand what you said...
    What I was trying to say is "How to display the whole lines of .txt file in single dialog box."We know that.
    Do you understand that any problem can be broken down into smaller pieces?
    Do you understand that your problem has the following pieces?
    1. Read lines from the file.
    2. Put the lines together into one String.
    3. Put the String into the message box.
    and maybe
    4. Make sure the message box contents are split into lines exactly as the file was.
    (You didn't make it clear if that last one is a requirement.)
    Do you understand that 1-4 are completely independent problems and can be solved separately from each other?
    Do you understand that you have stated that you already know how to do 1 and 3?
    Therefore, you are NOT asking "How to display the whole lines of .txt file in single dialog box." Rather, you ARE asking either #2 or #4 or both.
    If you say once more "display all the lines of the file in one dialog box," then it is clear that we are unable to communicate with you and we cannot help you.

  • Can two functions call each other?

    I'm converting some code and have run into two functions that call each other. While I seem to have converted both functions to plsql ok, they do not compile, seemingly because they ref each other. As soon as I de-reference one one function's call to the other function they both compile.
    I know that Oracle 10g supports recursion; and on the surface of things, this situation does not seem much different than recursion. If both functions are well formed, I would hope that they'd compile.
    I wasn't able to find much by searching the forums on this topic...but I'm hoping that someone will have some info on this issue.

    what happens when f2 sends 2 as parameter to f1 (i mean F1(2) in place of f1(1) ) at line 6 of f2).probably that what you expected ;) :
    SQL>  create or replace function f1 (i integer default 0)
         return integer
    as
    begin
         dbms_output.put_line ('In function f1');
         return case when i != 1 then f2 end;
    end f1;
    Warning: compiled but with compilation errors
    SQL>  show error
    Errors for FUNCTION F1
    LINE/COL ERROR                                                           
    6/31     PLS-00201: identifier 'F2' must be declared                     
    6/2      PL/SQL: Statement ignored                                       
    SQL>  create or replace function f2
         return integer
    as
         i integer;
    begin
         dbms_output.put_line ('In function f2');
         execute immediate 'begin :1 := f1(2); end;' using out i;
         return i;
    end f2;
    Createfunction successfully completed.
    SQL>  select f2() from dual
    select f2() from dual
    Error at line 1
    ORA-00036: maximum number of recursive SQL levels (50) exceeded
    ORA-06512: at "MICHAEL.F2", line 8
    ORA-06512: at "MICHAEL.F1", line 6
    ORA-06512: at line 1
    ORA-06512: at "MICHAEL.F2", line 8
    ORA-06512: at "MICHAEL.F1", line 6
    ORA-06512: at line 1
    ORA-06512: at "MICHAEL.F2", line 8
    ORA-06512: at "MICHAEL.F1", line 6
    ORA-06512: at line 1
    ORA-06512: at "MICHAEL.F2", line 8
    ORA-06512: at "MICHAEL.F1", line 6
    ORA-06512: at line 1
    ORA-06512: at "MICHAEL.F2", line 8
    ORA-06512: at "MICHAEL.F1", line 6
    ORA-06512: at line 1
    ORA-06512: at "MICHAEL.F2", line 8
    ORA-06512: at "MICHAEL.F1", line 6
    ORA-06512: at line 1
    ORA-06512: at "MICHAEL.F2", line 8
    ORA-06512: at "MICHAEL.F1", line 6
    ORA-06512: at line 1
    ORA-06512: at "MICHAEL.F2", line 8
    ORA-06512: at "MICHAEL.F1", line 6
    ORA-06512: at line 1
    ORA-06512: at "MICHAEL.F2", line 8
    ORA-06512: at "MICHAEL.F1", line 6
    ORA-06512: at line 1
    ORA-06512: at "MICHAEL.F2", line 8
    ORA-06512: at "MICHAEL.F1", line 6
    ORA-06512: at line 1
    ORA-06512: at "MICHAEL.F2", line 8

  • My phones unable to call each other internally.what 's missing in my configuration? please help me

    hi everyone!
    I did not really know in TOIP . Can someone look at my configuration attached and tell me what 's missing?
    For now , I'm just at the stage where my phones must call each other internally.
    That is to say, the user who has the number 100 , should be able to call the one with the number 101 .
    My phones are recorded correctly, there has intonnation , but they do not casually refer to them internally
    please what is wrong with my setup ?
    CME: cisco 3925
    ip phone types: 7841 and 9971
    here is the status of the message that appears on the IP phone: File Not Found: Ringlist-wb.xml

    Hi, Sreekanth,
    Thank you for your Help, 
    Nothing happens when I order these tapes and when I initiate a call.
    i've somes errors messages on my 9971:
    Error Updating Local
    File Not Found: United_States/g4-tones.xml
    Upgrade Reject: HW comptat faillure. Must use 9.3(2) or later release on this phone
    VPN Error: VPN is not Configured.
    No trust List installed
    Updating Trust List
    CUCM closed TCP connection
    Is this that prevents calls ? I can not find the firmware
    United_States/g4-tones.xml
    Kind regards

  • How can i record call when i use handfree

    How can i record call when i use handfree

    Define hands-free, are you using a headset/Bluetooth?
    To note, Recording is not a natively supported function of the iPhone. There are laws regarding this... and in America, both parties have to be notified/in-knowledge of being recorded.
    Where are you from? If outside the USA, Google Voice won't work.
    Have you looked into a VoIP provider that supports what you wish to do?

  • HT203164 I used to be able to print labels for burned CDs with the cover being the playlist name and the other side the song titles...now the titles print out compacted, overlapping each other and illegible. I thought it was the printer but it happened w/

    I used to be able to print labels for burned CDs with the cover being the playlist name and the other side the song titles...now the titles print out compacted, overlapping each other and illegible. I thought it was the printer but it happened w/1 other printer as well,  which I used before for this exact thing w/no problem.

    Try cleaning the print head with rubbing alcohol wipe, then replace your print head. Keep pushing the Ok. 
    Go to this link and HP shows you how.
    support.hp.com/us-en/document/c01643079
    Lucky for me it worked!

  • Can my family use 'find my iphone' for each other if we each have separate apple ids? recently had to create separate ones b/c we were getting each others texts/facetimes and i read this happens when you share an apple id.

    Can my family still use the 'find my iphone' app from our iphones / ipod touch to locate each others phone if we have separate apple ids?  We were sharing a single apple id but recently we started getting each others texts/facetimes .. I read that this happens when you share an apple id.  Will we just have to sign in with the others' apple id to locate their phone ?

    Use Find My Friends app instead.   Much easier to manage, and you won't need each other's id/pw's to do it.   They only need to accept your invitations and vice versa.

  • I need to play a song on a Keynote presentation, how do I do this ? I use to drag and drop the mp3 in Keynote but it stops playing when the slide move to the other one... how can I make the song keep playing through the whole presentation ? Thanks.

    I need to play a song in a row in a Keynote presentation, how do I do this ? I use to drag and drop the mp3 in Keynote but it stops playing when the slide move to the other one... how can I make the song keep playing through out the presentation ?
    Thanks.

    Drag the file into the audio window in the Document inspector...

  • When syncing 2 iphones to itunes how do you avoid getting each others apps

    When you sync 2 iphones to itunes how do you avoid
    getting each others apps

    For some reason without syncing
    when I download an app the 2 phones
    get the same app. They are 2 different
    phones with 2 different apple IDs

  • TS2755 My wife and I have IPhone 5's.  For some reason, we can call each other, and if I text her she gets it, but if she texts me I don't get it.  Any one else ever have something like this happen?

    My wife and I have Iphone 5's.  For some reason, we can call each other, no problem, but if we text she receives my texts but I don't recieve hers.  Any one ever have a problem like this, and more importantly, a solution?   Thanks!

    In Settings> Messages
    make sure iMessage is turned on, and
    in Settings> Messages> Send & Receive...
    make sure you have your phone number listed under "you can be reached by imessage at"

  • HT4623 How would you update your iPod Touch using your iPod touch?

    I want to update the software on my iPod Touch 4th Generation from my iPod Touch itself. I can't figure out how to do it, though. In the past, it has just asked me to update, but now, it doesn't do that. Anyone with any information on how to update your iPod touch software, it would be greatly appreciated if you shared your knowledge with me. Thanks so much!(:

    See:
    iOS: How to update your iPhone, iPad, or iPod touch
    If the iPad already has iOS you can go to Settings>gener>wifi update and update via wifi. Otherwise yu will have to connect to iTunes and update via iTunes.
    The current iOS is iOS 6.

Maybe you are looking for

  • HT1338 I updated my Mac computer, and now it wont let me open my mail.

    I downloaded the latest software for my computer, and now I have no access to any of my email accounts. Any suggestions?                                                               Keith

  • Attachment missing in back end for purchase order

    Hi all, We are using SRM 5.0 SP10 extended classic scenario. I have created a shopping cart with attachment. A local purchase order has been successfully created and i can find the attachment in it. When i check in the backend the purchase order does

  • Connecting an HP 4050 to a Dell laptop

    I am trying to connect a 10 yr old LaserJet 4050 to a Dell Latitude D830 laptop as a local printer. Connecting the serial (DB9) ports didn;t work. Any suggestions Paul

  • [svn:fx-4.x] 14327: Fix maximize/ restore button in spark chrome skin when running on AIR 2.

    Revision: 14327 Revision: 14327 Author:   [email protected] Date:     2010-02-22 08:48:05 -0800 (Mon, 22 Feb 2010) Log Message: Fix maximize/ restore button in spark chrome skin when running on AIR 2. Listen for the Window state change event instead

  • Using Interactive forms in Webdynpro Abap

    Hi all, I need to learn using Interactive forms in Webdynpro Abap. Can any please tell me from where to start with and what are the things that needs to be installed extra in the client system. Also please tell me where i can get the tutorials on it.