How do I keep my Imessages from being viewed on other devices under my apple ID?

How do I keep my Imessages from being viewed on other devices under my apple ID?

No, you can authorize any number of email addresses on your Apple Id and then select one of those to use as an alternate Send and Recieve for Messages. It isn't necessary to use seperate AppleIDs. I use my phone number on my iPhone and an email address on the iPad.

Similar Messages

  • How do I keep my iPod from deleting emails on other devices?

    My wife and I share the same POP and iCloud account. When I delete email from my iTouch it deletes emails on all of our Macs. How do I keep this from happening?
    I have my iPod set to delete on iPod only. Settings> Mail, Contacts, Calendar> my POP account or IMAP> Out going Mail Server, Advanced> Mailbox Behaviors, Deleted Mailbox> and I have selected the setting: On My iPod.
    I've been trying to find a way to change this behaiveour with out any luck. I have some friends with the same problem.
    Thanks!

    A POP account does not syncronize the account among messages.
    Could it be that your are deleting the messages from the server when you get the mail on your iPo
    in Settings> Mail, Contacts, Calendar> my POP account or IMAP> Out going Mail Server, Advanced> Mailbox Behaviors, Deleted Mailbox> set it to nerver remove messages from the server.

  • How do I stop my text messages/iMessages from being sent to other devices on my account?

    Ok. Ive just about had it with my parents/siblings being able to read every single text message I send/receive from their ipad or iphone. Is there anyway to disable this without having to lose all my music, apps, etc. by getting a new account? I understand the "grown up" thing to do would be to set up a new account, and just get off their freakin account, but it would just really suck to have to start all over. Ive never had this problem before until I got the new update. Help?

    iMessages, not text messages as in SMS/MMS.
    Have the other iPhones with iMessage registered with your shared Apple ID register iMessage on their iPhone with their own Apple ID.

  • If you delete your backup on iTunes and iCloud and then wipe the phone to factory settings, does that delete all iMessages from being read on other devices (re:iPad)?

    My friend had a shared phone account with his now ex girlfriend and he was not phone savy so they shared an apple id. She is able to read all of his text messages. I was wondering if the backup is deleted from the iTunes account and the iCloud, are those messages still readable by her on her iPad?

    If you physically delete ANY file, you CANNOT acess it from the cloud. Because THERE'S NOTHING TO ACCESS anymore...
    If you move your files to the EHD, you need to point your library to the EHD or NONE of the songs will be available anywhere, including the MBA.
    EVERYTHING on your iPhone will likely have to be "reacquired" once the move is complete.

  • Re: How do I keep an application from being started morethan once?

    Here are some quick ideas. None of them should be too hard to implement,
    although each has some drawbacks.
    1. Have a login server track who is logged on, and if there is already a
    logon for a given user or a given machine, then deny the application
    startup. The nice thing about this is that a user will not be able to have
    multiple logins even by going to another machine. Then again, this may not
    be so nice, and you also get a possible single point of failure on the
    login server for which you will have to prepare.
    2. Drop to the operating system, and get a list of processes for the client
    machine. If the name of one of them matches the name of application that
    is being run, then deny startup. This avoids a network hit, but requires
    some OS specific code. Also, a clever user could change the name of an
    executable to get around this. Note that a user could have another login
    on another machine.
    3. Write to a file on the local machine. You can hide the file in some
    suitable place, and can also scramble some information so that a user
    cannot get around having this file present by reading from the file at
    startup and then writing to it. Based on the state of your application,
    the file will have some scrambled information indicating if an instance of
    an application can be started. If you retain the write lock (i.e. do not
    close) the file for the duration of the application, you increase your
    security at the risk of a confused user if the application gets terminated
    without releasing the lock. Depending on the OS where the client will run,
    this could be an issue. If you like this option, perform some experiments
    first on all configurations of an example client machine to determine the
    behavior. Again, this only works to prevent an extra login on a single
    machine, not system wide.
    If you are not concerned about your users hacking around too much and don't
    care about a login on another machine, I would opt for some version of
    number 3. Otherwise, I would venture number 1.
    Regards
    CSB
    At 07:47 AM 2/18/98 -0500, Martin G Nystrom wrote:
    A user can launch an application, then launch it again. How do we make it so
    that the user can only run one instance of the application?
    Martin Nystrom
    Eli Lilly and Company
    ([email protected])
    Curtis Bragdon, Senior Consultant, Forte Software
    [email protected]
    Voice Mail: (510) 986-3807
    Paging: (888) 687-6723
    "I've seen dozens of triggering towns." - Richard Hugo

    Yet another quick and dirty solution is to use local ExternalConnections.
    This is a single instance per machine solution.
    Example is attached.
    (See attached file: TestOne.pex)
    [email protected] on 02/18/98 10:01:07 PM
    Please respond to [email protected]
    To: [email protected]
    cc: [email protected]
    Subject: Re: How do I keep an application from being started more than
    once?
    Martin,
    there are two ways to read your question
    (a) no more than one instance of an application per machine
    (b) no more than one instance of an application per "user"
    now if a user has only one machine, and your system has "userids" and you
    only want
    one active "session" per "user" then the distinction is irrelevant.
    However, many systems
    let people share logins, so a token based thing enforcing one login will be
    problematic.
    The downside of #1 approach suggested by Curtis happens when a machine gets
    hosed without "logging" the user off the security system, then they can't
    get in until their ticket expires or a sysadmin gets involved. Should be
    manageable, however. But this enforces one application
    instance per user, unless you check both for the presence of an active
    token for that user as well as the presence of a token tied to that
    particular node name. Otherwise there is nothing to prevent the same user
    from launching the app again and logging in as a different user. This is
    definitely the best approach of the bunch, and can be adapted for either
    (a) or (b).
    Suggestion # 2 won't work unless the application is built as a compiled
    client,
    since the process name will be 'ftexec' and not the "name" of the
    application. And it doesn't
    prevent a user from launching the app from a different machine (or people
    sharing logins). So again it depends on what you are trying to achieve.
    #3 also only prevents multiple instances per machine, not necessarily by
    user. Of course
    most people don't have multiple machines. The point is that you may be
    trying to
    prevent your users from sharing logins. In which case the file thing won't
    do it.
    Some other ideas:
    1. You could, however, enforce one application per machine using the
    installed partition agent's ExecutingPartition instrument name. As long as
    the user doesn't run the app in a different environment, you can have the
    app check at startup time if there is another
    ActivePartition running under the same InstalledPartition name.
    (ActivePartitions are child agents
    of InstalledPartitions).
    2. use the ObjectLocationManager and bind a simple object into the naming
    system using a naming scheme such as
    /MyApplication/MyNode or
    /MyApplication/MyUserId
    the presence of either one would indicate that another instance of that
    application is running on either that machine or that user. Of course
    these have to be cleaned out, and subject to similar downside as
    alternative #1. So you'd essentially be using the forte naming system as a
    distributed lock manager (ouch).
    3. Have the application remove the shortcut to launch it upon startup, and
    recreate it when it is finished, or move it to a hidden place. There it
    is - the worst idea I've ever come up with. Don't
    do this!
    Regards,
    John
    From: Curtis Bragdon <[email protected]>
    Date: Wed, 18 Feb 1998 16:36:58 -0500
    Subject: Re: How do I keep an application from being started more than
    once?
    Here are some quick ideas. None of them should be too hard to implement,
    although each has some drawbacks.
    1. Have a login server track who is logged on, and if there is already a
    logon for a given user or a given machine, then deny the application
    startup. The nice thing about this is that a user will not be able to have
    multiple logins even by going to another machine. Then again, this may not
    be so nice, and you also get a possible single point of failure on the
    login server for which you will have to prepare.
    2. Drop to the operating system, and get a list of processes for the client
    machine. If the name of one of them matches the name of application that
    is being run, then deny startup. This avoids a network hit, but requires
    some OS specific code. Also, a clever user could change the name of an
    executable to get around this. Note that a user could have another login
    on another machine.
    3. Write to a file on the local machine. You can hide the file in some
    suitable place, and can also scramble some information so that a user
    cannot get around having this file present by reading from the file at
    startup and then writing to it. Based on the state of your application,
    the file will have some scrambled information indicating if an instance of
    an application can be started. If you retain the write lock (i.e. do not
    close) the file for the duration of the application, you increase your
    security at the risk of a confused user if the application gets terminated
    without releasing the lock. Depending on the OS where the client will run,
    this could be an issue. If you like this option, perform some experiments
    first on all configurations of an example client machine to determine the
    behavior. Again, this only works to prevent an extra login on a single
    machine, not system wide.
    If you are not concerned about your users hacking around too much and don't
    care about a login on another machine, I would opt for some version of
    number 3. Otherwise, I would venture number 1.
    Regards
    CSB
    At 07:47 AM 2/18/98 -0500, Martin G Nystrom wrote:
    A user can launch an application, then launch it again. How do we make itso
    that the user can only run one instance of the application?
    Martin Nystrom
    Eli Lilly and Company
    ([email protected])
    Curtis Bragdon, Senior Consultant, Forte Software
    [email protected]
    Voice Mail: (510) 986-3807
    Paging: (888) 687-6723
    "I've seen dozens of triggering towns." - Richard Hugo
    John Jamison
    Vice President of Technology
    Sage IT Partners, Inc.
    415 392 7243 x 306
    [email protected]

  • How do I stop my SMSs from being read by other family members?

    How do i stop my SMSs from being read by other family members?

    batterseauser wrote:
    They r receiving my text messages onto their iPhones and they are not allowing me access to stop this
    Change the password for your AppleID you used to set up iMessaging, and do not tell them the password.  Tell them to get their own AppleIDs for use with their own iMessage accounts.

  • How do i keep certain songs from being uploaded from my library to my ipod

    how do i keep certain songs form being uploaded from itunes to my ipod the check button does nothing
    30gig ipod   Windows 98  

    Set your iPod so you can manually manage your songs, see here for details:http://www.apple.com/support/ipod/tutorial/ipgettingstartedt3.html

  • How to stop a recurring imessage from being accepted on my iphone

    How do I stop a recurring, daily imessage from being accepted on my iphone 4?

    Contact who ever is sending you the message and tell them to stop. With SMS messages, replying with STOP will often stop automated messages.

  • How do I keep my text from being distorted when I do a lower arc?

    When I create an upper arc in my text it looks normal, but when I do a lower arc, it expands all the letters in the middle instead of just curving them, so that it has a sort of "fish eye" look. How do I keep it from doing this?

    No, gratitude for your help. Since I've never done the text the way you suggested, I found a video on youtube to show me how. However, I have not been able to get satisfactory results. Why will PS allow me to make a perfect upper arc with my type, and it won't do the same on the lower arc?

  • How do I keep older emails from being in the cloud, taking up my space?

    How do I keep older e-mails out of the cloud, taking up my space?

    Patti23 wrote:
    How do I move purchased movies from itunes to the icloud? 
    Delete them from the local computer.  Nothing gets moved.  If the content was purchased from iTunes it should be available for download again in the future.
    Patti23 wrote:
    I want to keep them on the ipad they have been moved to.
    If the device is synced with iTunes on the computer and the content is deleted from iTunes it will also be removed from the device.
    Realistically, if you want to keep the content, keep it stored locally.  Purchase an external drive to store the content on.  Keep in mind that iOS devices are NOT backup devices, they merely mirror the content in the iTunes library on the computer.

  • How do I keep iPhone Contacts from being visible in iMessage on MacBook?

    I've disabled iMessage, but if you open it and try to type a message, you can easily see all the Contacts from my iPhone. How do I prevent that?

    HI,
    When I have turned Off the Contacts app part of my iCloud account it asks me whethr I want to keep them on my Mac (and not whether I want to delete them from all devices).
    They always stay on my iPhone.
    7:36 pm      Sunday; June 1, 2014
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • App or podcast downloaded to iphone is deleted from iphone and transferred to iTunes 11.  How can I keep the file from being deleted from the iPhone?

    I recently updated iTunes from version 10.x to 11.  In version 10, I could download a podcast or an app to my iPhone from the app store, then the app or podcast would co COPIED to iTunes during a sync.  Now with version 11, when I sync, the app or podcast is deleted from my iPhone and MOVED to iTunes.  How can I get back the old feature of making a copy?  This is a very dumb thing that happens in iTunes and I can not believe that I am the only one to complain abou this.  Please help me.  What do I need to change in iTunes to keep my copy on the iPhone.
    Thanks to all you geniouses out there!
    Doug

    Not 100% sure of your question.  If you are wanting to delete apps from itunes just right click then delete then empty recycle bin.

  • How do I keep my videos from being squeezed in Premiere Elements 12?

    I was using one dell laptop and moved over to another dell laptop and suddenly Premiere Elements 12 was squeezing my projects. I am unable to adjust the project settings and when I use the interpret footage option, my videos play horribly.  What is the best answer for this?  How can I fix my settings for PE12 since all my footage comes from the same source?

    CKENN19
    Thanks for the follow up. It sounds like you are OK, but let me review a few things to make sure.
    Assuming NTSC setup...Windows
    1. If you are capturing DV data with a firewire connection into Premiere Elements 12/12.1, your source media can be DV Standard 4:3 or DV Widescreen 16:9 depending on your camera recording settings.
    Premiere Elements 11, 12, and 13 are set up to take over setting the project preset automatically based on the properties of the first video dragged to the Timeline. When it cannot do the job for whatever reason, it does not give you the closest fit to what you require for your particular source. It gives you its default 1080i30 (1920 x 1080 @ 29.97 interlaced frames per second).
    If your camera has DV data 4:3, then you set the project preset manually beforehand to NTSC DV Standard. If your camera has DV data 16:9, then you set the project preset manually beforehand to NTSC DV Widescreen. Both Standard and Widescreen have the same frame size, that is, 720 x 480. In the case of the Widescreen, there is a 16:9 flag which stretches the video for display after encoding (to 856 x 480).
    You should not have to be using Interpret Footage to get the appropriate aspect ratio when you have done DV data 4:3 or 16:9 capture firewire into Premiere Elements Capture Windows. That concerns me if you do.
    Also important is that you are putting DV AVI type 2, not type 1, on your Timeline in the DV data capture firewire process. If Premiere Elements is part of this capture process, DV AVI type 2 is what you should have.
    Please consider the above and then let us know, when your schedule permits, if you are OK with the information
    Thank you.
    ATR

  • How can I keep my emails from being deleted from the Telus server so I can view them on my home computer as well?

    How can I set my IPad email account to leave the messages on the server?  I want them left on the Telus server until I choose to delete them.

    I have POP mail accounts on my iPad.
    Settings > Mail, Contacts, Calendar leads me to the correct place.
    At the top will be a list of my Mail accounts.
    Tapping on an Account brings up all the info in the account.
    The Advanced choice is at the bottom of the window and usually requires scrolling down to see it.
    Tapping Advanced brings up another widow with the Delete from Server choice. Tap that and you can then tap Never.
    I'm using an iPad 2 and an iphone5 running iOS 6.0.1

  • My homepage keeps getting reset to something I do not want. How to I keep my homepage from being changed

    I go to tools and set my homepage. Everytime I click on home it changes it back to some search page I do not want. How do I prevent this

    Set the Integer pref browser.sessionstore.max_resumed_crashes to 0 on the about:config page to get the about:sessionrestore page immediately with the first restart after a crash has occurred or the Task Manager was used to close Firefox.
    * http://kb.mozillazine.org/browser.sessionstore.max_resumed_crashes
    That will allow you to deselect the tab(s) that you do not want to reopen, but will allow to reopen other tabs.
    See:
    * http://kb.mozillazine.org/Session_Restore#Restoring_a_session_after_a_crash
    * http://kb.mozillazine.org/Browser.sessionstore.max_resumed_crashes
    See also:
    * https://wiki.mozilla.org/Session_Restore#Preferences
    To open the <i>about:config</i> page, type <b>about:config</b> in the location (address) bar and press the "<i>Enter</i>" key, just like you type the url of a website to open a website.<br />
    If you see a warning then you can confirm that you want to access that page.<br />
    *Use the Filter bar at to top of the about:config page to locate a preference more easily.
    *Preferences that have been modified show as bold (user set).
    *Preferences can be reset to the default via the right-click context menu if they are user set
    *Preferences can be changed via the right-click context menu: Modify (String or Integer) or Toggle (Boolean)

Maybe you are looking for

  • Error While manually updating xperia sola to android 4

    hi I did the following download and install the latest Fashtool software ( flashtool-0.9.10.1-windows ) and I had installed the drivers .exe in the drivers folders and selected all the devices and I am not able to flash sola to the new version of and

  • Working on creation of PO using smartforms

    Dear experts, let me know at present in am working on ECC 6 version of SAP.when inserting the text under display order.And when checked in OUTPUT OPTIONS, i am unable to find the sub heading OUTPUT TABLE. which is actually present in the tutorial. Ho

  • Invalid java class problem

    Hi , I have found this invalid java class in my schema portal30 : 3334f18_HttpProviderDispatche In which way can I recompile it , or eventually change it with a new one ? Thanks Max

  • ADDM and AWR report interpretation

    Hi, I have some confusion regarding the understanding of ADDM and AWR report. I have created AWR reports for various period. All report indicated that all Instance efficiency checklists at their high 90s. I have also created ADDM report during the sa

  • Error in Unit of Hours

    Sorry iam posting the same thread which was posted last week. Iam getting Error in Unit of Hours instead of display as H it shows as ERR. The data in ODS is fine it is(2.3   H)when i update into cube Unit of work is dropped (2.3  ). There are no rout