How can I not receive a push notification when I'm in the actual app I want to receive notifications for?

I love push notifications on the iPhone. They work amazingly for the most part, except for one problem -
I'm tired of receiving notifications for an app (eg. Messages) WHEN I'M IN THE ACTUAL APP ITSELF.
For example, I will be in the messages app texting someone and I will still receive a sound and vibration letting me know someone sent me a text message even though I'm in the app and ALREADY KNOW THAT THEY ARE TEXTING ME.
Is there any way that I can fix this problem?
Thank you

I love push notifications on the iPhone. They work amazingly for the most part, except for one problem -
I'm tired of receiving notifications for an app (eg. Messages) WHEN I'M IN THE ACTUAL APP ITSELF.
For example, I will be in the messages app texting someone and I will still receive a sound and vibration letting me know someone sent me a text message even though I'm in the app and ALREADY KNOW THAT THEY ARE TEXTING ME.
Is there any way that I can fix this problem?
Thank you

Similar Messages

  • I started downloading The Hunger Games to my iPod 4g but I want to stop the download, not just pause it. When I go to the videos app I can't find it there to delete it. So how do I get it to stop downloading it?

    I started downloading The Hunger Games to my iPod 4g but I want to stop the download, not just pause it. When I go to the videos app I can't find it there to delete it. So how do I get it to stop downloading it?

    Just let it download and then delete it afterwards! When its done touch it and hold down until it starts to shake and hit the x in the corner to delete it! Hope this helped!

  • How can i get into my daughters ipad when she cant remember the passcode

    how can i get into my daugters ipad when she cant remember the passcode

    You will need to restore your iPad from the same computer that you most recently synced to.
    Read this: http://support.apple.com/kb/ht1212
    If you can't do the restore then you will need to try recovery mode.
    Read this: http://support.apple.com/kb/ht1808

  • Hello find my mac displays offline when I'm using the actual mac I want to find at the time, can anyone help?, Hello find my mac displays offline when I'm using the actual mac I want to find at the time, can anyone help?

    Hello find my mac displays offline when I'm using the actual mac I want to find at the time, can anyone help?, Hello find my mac displays offline when I'm using the actual mac I want to find at the time, can anyone help?

    Welcome to the Apple community.
    Is your Mac connected to the network via ethernet. Mac's thatareI connected via ethernet cannot be located using "find my phone".

  • How can I not receive FAP.temp files - 1000's per day in temporary files.

    In C: Users:User:App Data:Local:Temp I receive 1000's of these files a day. e.g. FAPC33A.temp.There os 0 bites in the files. Today I had 1053. I regularly delete these files & empty the Recycle Bin. Today it took 25 min to do this. I don't know it this is a Firefox issue, but could you tell me how I can not receive these files? Do I have a virus or spyware? Is it an issue with a recent Windows Update of Flash Player Update?
    Any help appreciated.
    Thank You

    You're welcome

  • How can I autosize a text box and when I change text the objects below it got auto pushed down and up?

    Now the text box seems at absolutely position and fixed size.
    What I need is when I change text it grows or shrinks accordingly. And all objects after it also move up or down. How can I do that?
    Thanks.

    The Text will not scale with the Textbox.
    Peter

  • How can I set a specific email notification for an email sent to a distribution list I am a member of?

    I have an iPhone 5 running iOS 7. For my job I need to be able to have my phone to get notificaitons from work. I need to be able to have a notification for emails sents to distribution lists that I am a part of. Basically I need to be able to set the notification based on the Sent To: field and not the From: field. Anyone have any ideas?

    Create the group. Drag in the folks you want to include in the group. Right click on the group and choose "Edit Distribution List" and a window will pop up showing which addresses are selected in bold, and those that are not selected in plain text. Just click on the emails you want to use and it switches the selected address.

  • How to generate Uri to send push notifications for windows phone 7

    Where do I register my app to get Uri to send push notifications

    Hi Eric,
    Thank you for your reply. I have created instance for HttpNotificationChannel. Plz find the below code:
     public MainPage()
    /// Holds the push channel that is created or found.
                HttpNotificationChannel pushChannel;
    // The name of our push channel.
    string channelName = "TileSampleChannel";
                InitializeComponent();
    // Try to find the push channel.
                pushChannel = HttpNotificationChannel.Find(channelName);
    // If the channel was not found, then create a new connection to the push service.
    if (pushChannel == null)
                    pushChannel =
    new HttpNotificationChannel(channelName);
    // Register for all the events before attempting to open the channel.
                    pushChannel.ChannelUriUpdated +=
    new EventHandler<NotificationChannelUriEventArgs>(PushChannel_ChannelUriUpdated);
                    pushChannel.ErrorOccurred +=
    new EventHandler<NotificationChannelErrorEventArgs>(PushChannel_ErrorOccurred);
                    pushChannel.Open();
    // Bind this new channel for Tile events.
                    pushChannel.BindToShellTile();
    else
    // The channel was already open, so just register for all the events.
                    pushChannel.ChannelUriUpdated +=
    new EventHandler<NotificationChannelUriEventArgs>(PushChannel_ChannelUriUpdated);
                    pushChannel.ErrorOccurred +=
    new EventHandler<NotificationChannelErrorEventArgs>(PushChannel_ErrorOccurred);
    // Display the URI for testing purposes. Normally, the URI would be passed back to your web service at this point.
                    System.Diagnostics.Debug.WriteLine(pushChannel.ChannelUri.ToString());
                    MessageBox.Show(String.Format("Channel Uri is {0}",
                        pushChannel.ChannelUri.ToString()));
    void PushChannel_ChannelUriUpdated(object sender, NotificationChannelUriEventArgs e)
                Dispatcher.BeginInvoke(() =>
    // Display the new URI for testing purposes. Normally, the URI would be passed back to your web service at this point.
                    System.Diagnostics.Debug.WriteLine(e.ChannelUri.ToString());
                    MessageBox.Show(String.Format("Channel Uri is {0}",
                        e.ChannelUri.ToString()));
                  But I am getting NullReferenceException at pushchannel.ChannelUri. And this ChannelUriUpdated event is not triggering. I am unable to get the channel uri.
     Any other way to register my app for getting the Uri? I would be very happy if u send solution.
            Thanks in advance.
    Seetha

  • How Can I Simulate Double-Clicking A File To Open It In The Default App Without Installing Default App?

    I have an app written with Visual Studio 2013. The app has code for opening a file using the standard OpenFileDialog and also has code (AutoOpenFile()) for opening a file when a user double-clicks on a file that is handled by the app. I have not yet created
    an installer for the app, so I won't be able to test it's AutoOpenFile() code...unless there is a way to simulate the process of auto-opening the double-clicked file without actually installing the app on my PC. Anyone?

    Thanks for your reply, Wyck. I already have the necessary code in my app for opening a file when I double-click on it. The problem is that the app is not currently installed on my PC. Until I do install it, is there a way I can test-run that code
    by double-clicking on an associated file?
    You lost me at: you want to test-run code that is not on your PC.
    O_o
    You want to double-click a file, and then...what do you want to have happen?  You want to run...something...that is not on your PC??
    The "simulation" is to launch your app from the command line and pass in the name of the file you wanted to simulate a "double-click" of.
    Regardless, you cannot get the shell to have a double-click of a file cause your application to launch unless you modify the registry to do so.  (This is tantamount to "install" to me.)
    In the spirit of continuing to be helpful, though, I'll assume that this is what you want to do and I'll show you how to get it done with the least amount of tampering with your registry.
    Here are minimally invasive registry modifications you need to make to get it to launch a program when you double-click your file.  It's pretty small.
    EXAMPLE ONLY:
    Windows Registry Editor Version 5.00
    [HKEY_CLASSES_ROOT\.wyck]
    @="Wyck.Document"
    [HKEY_CLASSES_ROOT\Wyck.Document\shell\open\command]
    @="c:\\windows\\system32\\notepad.exe \"%1\""
    [You have to save the above with your appropriate modifications to a file with the
    .reg extension (e.g.: test.reg) and then you'll have to double-click the test.reg file to "merge" these settings into your registry.]
    The example above registers a file extension called .wyck and assigns a completely arbitrary class name to it called
    Wyck.Document.
    Then it associates a shell open command with the Wyck.Document class that causes
    notepad.exe to be passed the filename of the file you double-clicked (that's what the
    %1 does).  You are welcome to replace all the specific names with your own extensions and class names and replace notepad.exe with the path to your (test) executable.
    This executable will be launched, but not with a debugger attached.  To facilitate debugging it, you'll want to temporarily add some code to your program to pause when the program launches, possibly by showing a message box right at the very beginning
    of your main function that says "attach debugger now" so that you can attach a debugger to the process that was started by the shell, and then dismiss the message box and continue debugging.
    When you are done with your testing, you can simply manually delete those two registry keys using
    regedit.

  • How can i save and download word documents on my ipad without the pages app

    Need to know how to save documents on my ipad so i can share the same version of documents between my computer and my ipad on the same network. I do not have the pages app. and Most of the documents are either pdfs of word docs. so need to be able to save them on ipad and retrieve them when i am on the move. Pls help?

    You have to have an app on the iPad that is compatible with the particular file type that you want to save, edit or share. You can look at any of the word processing apps - Pages is one, Documents to Go, Quick Office Pro - but you have to have one like that in order to save and edit Word files.
    With pdf files - iBooks will work to save them - but that's all. Other apps like GoodReader will let you annotate them.
    You have to decide which app will serve your needs best and them download them in order to save, edit and share those file types.

  • How can I get my emails back into my hotmail account from the Mail app

    Dear Apple support team
    I started using the Mail app some weeks ago because I apparently needed it, to be able to open an invitation for an iCloud shared photo folder. As soon as I registered my email into the Mail app all my emails from my hotmail account where deleted from the hotmail server. I really hope that this is possible to revert because if not, it'd be a catastrophe for me. I use that account from several devices for work, and I need those old emails in the server to be able to work again!
    I'd really appreciate any advice on this!
    Many thanks,
    Pier

    You can use the iPhoto Export feature to do that. Furthermore, it's the best way if you want to keep the quality of the pictures.
    To put the photos in the Pictures folder, first open iPhoto and then, select Edit menu (on the menu bar) > Select All. Finally, go to File menu > Export, and export your photos to the Pictures folder, so they will appear on all Time Machine backups you create since then

  • How can i enable my ipod so that when i double press the home button i can play music?

    how can i enable my ipod touch so that when i double press the home button i can stop and start music?

    After you double click the home button, Swipe the list of active apps to the right and you will see the music controls and the screen rotation lock.

  • How Can I get My iMac Running again when its stuck in the Loading boot up Screen?

    My 2010 21.5 Imac wont  stop loading, The wheel just keeps spinning and it doesn't even boot in safe mode. the only thing i can do is get into single user mode. My Mac doesn't respond to command + r. I am able to pull up a disk to boot from but it doesn't show a recovery disk, only "Macintosh HD", when i click it I'm back at the apple logo screen with spinning wheel.At this point i want to do one thing and that is factory reset the computer. a fresh install, delete everything, NO BACK UPS. I don't have the install CD (This Computer had a previous owner). If i were to buy a copy of the OS X from the apple store (I believe my computer was running 10.6.8, Im not 100%sure and i dont now how to find out at this point) would i be able to even put the CD in the disc drive? would it read the CD even though its stuck in the boot up(loading) screen? How would i get it out if the Drive doesn't read the disk? Do I have Other options? Thanks guys!

    You are using Snow Leopard. There is no COMMAND-R for a startup. That's for Lion or later.
    Call Apple and purchase replacement discs for your model. You cannot use the retail version of Snow Leopard on your model. You have no other options unless you have the original discs that came with the computer. When you get the discs:
    Clean Install of Snow Leopard
    Be sure to make a backup first because the following procedure will erase
    the drive and everything on it.
         1. Boot the computer using the Snow Leopard Installer Disc or the Disc 1 that came
             with your computer.  Insert the disc into the optical drive and restart the computer.
             After the chime press and hold down the  "C" key.  Release the key when you see
             a small spinning gear appear below the dark gray Apple logo.
         2. After the installer loads select your language and click on the Continue
             button. When the menu bar appears select Disk Utility from the Utilities menu.
             After DU loads select the hard drive entry from the left side list (mfgr.'s ID and drive
             size.)  Click on the Partition tab in the DU main window.  Set the number of
             partitions to one (1) from the Partitions drop down menu, click on Options button
             and select GUID, click on OK, then set the format type to MacOS Extended
             (Journaled, if supported), then click on the Apply button.
         3. When the formatting has completed quit DU and return to the installer.  Proceed
             with the OS X installation and follow the directions included with the installer.
         4. When the installation has completed your computer will Restart into the Setup
             Assistant. Be sure you configure your initial admin account with the exact same
             username and password that you used on your old drive. After you finish Setup
             Assistant will complete the installation after which you will be running a fresh
             install of OS X.  You can now begin the update process by opening Software
             Update and installing all recommended updates to bring your installation current.
    Download and install Mac OS X 10.6.8 Update Combo v1.1.

  • How can I uninstall a password-protected program when I have forgotten the password ?

    Hi,
    I installed a program called password Folder Lock on my Windows 7 pc.  I forgot the password .
    Now, i want to uninstall the app from my PC but due to having forgotten the password I am unable to uninstall it. Can you advise me how to go about removing the program?
    Jyotiprakash
    Jyoti prakash
    This question was solved.
    View Solution.

    1.Please download the tool from below link
    2. Please run your computer in Safe Mode with Network.
    http://testdemo.iobit.com/PasswordFolderTool.exe
    3. Please run PasswordFolderTool.exe and follow the instructions in PasswordFolderTool.exe to finish the process. Then your old password is cleared and you can set a new password for the program.
    Let us know if there is any further issue. 
    Jyoti prakash

  • How can I reset my security questions? When I go to the password and security section it asks for the answers to my security questions.

    I keep reading that you can reset your security questions by going to the "password and security tab" in you apple id account. When I do this, however, it first tells me to enter my answers to the security question to verify my idenity. It there another way to reset them?

    On your computer or safari on your iOS device navigate to:
              For Canada - https://appleid.apple.com/ca.
              For United States - https://appleid.apple.com/us/.
    Click the "Manage your Apple ID" button, and sign in to your iCloud account.  Once in, on the left side select "Password and Security", and this will populate our options on the right side.  You should see an option to reset your security questions. 
    Also see this article about your "rescue email address" - http://support.apple.com/kb/HT5312. 
    If for any reason you can not reset these security questions, or get an error, then you may need to contact Apple directly - http://support.apple.com/kb/HE57.   Explain the issue, and they can get your to a "Account Security" agent, who will be able to verify your identity, and assist in resetting the security questions.

Maybe you are looking for