I have updated to ios 9.3.1 now I have no sound for text messages alerts and alert sounds no calendar! I just missed a meeting disaster. Any ideas how to solve this problem, all the settings are correct.

I have updated to ios 9.3.1 now I have no sound for text messages alerts and alert sounds no calendar! I just missed a meeting disaster. Any ideas how to solve this problem, all the settings are correct.

Try a reset...

Force restart your iPhone: tap on and hold the Home and Sleep/Wake buttons for at least ten seconds, until you see the Apple logo.

If this does not help, tap settings > general > reset > reset all settings

Tags: iPhone

Similar Questions

  • you just bought LR6 as I tried to install Adobe says that the installation is not possible because I am running Vista, even if I run Win7 Home Premium on my computer. Any ideas how to solve this problem?

    you just bought LR6 DVD that I tried to install Adobe says that the installation is not possible because I am running Vista, even if I run Win7 Home Premium on my computer. Any ideas how to solve this problem?

    Right click on the file Setup.exe and choose Properties option.

    Then click on the Compatibility tab.

    The value of the Windows 7 operating system and check.

    See the link below:

    trying to install lightroom 6 on windows 7 continues to receive operating requirement not met windows vista not supported

  • Do you have any idea how to solve this problem.

    Hello

    I created a very simple game that plays music. It loads and plays automatically when you go to the game scene. The problem is when the game is over and you play again, the music starts again, not at the beginning, but layered, once on top of the other.

    I would that be better with ActionScript that I am. I hope someone is able to help me solve this problem. I need to stop going around in circles with this.

    Thank you!

    Michelle

    keeps track of the score
    var score: number = 0;

    determines the first time that the fire button is pushed
    to start the timer
    var flag: Number = 1;

    create a new timer
    var myTimer:Timer = new Timer (1000);


    Variable that contains the name of the
    music file to download.
    var soundReq:URLRequest = new URLRequest ("music.mp3");

    Create an object of class Sound.
    This will allow you to use methods
    to manipulate the music.
    var sound: Sound = new Sound();

    Create an object of the SoundChannel class.
    This will allow you to control the audio playback.
    var soundControl:SoundChannel = new SoundChannel();

    Create a new object to control the volume
    var volumeControl:SoundTransform = new SoundTransform();

    Mark to keep track of the music (whether he plays or not).
    0, the music does not play.
    var flag2:Number = 1;

    set the initial note in the text box
    count_txt. Text = "0";

    Adds a listener to the timer
    myTimer.addEventListener ("timer", timedFunction);

    make the button invisible insect in the beginning
    insect_btn. Visible = false;

    set the initial time in the text box
    timer_txt. Text = "20";

    makes the insect disappear when the user draws on it
    function disappear(e:MouseEvent):void
    {
    If the timer reaches 0
    If (timer_txt.text is "0")
    {
    make the fire buttons and inactive insects
    launch_btn. RemoveEventListener (MouseEvent.CLICK, target);
    insect_btn. RemoveEventListener (MouseEvent.Click, disappear);
    }
    on the other
    {
    remove the button from the insect
    insect_btn. Visible = false;

    increase the score
    count_txt. Text = String(++score);

    }
    }

    makes the insect appear when the user
    Click on the view button and begins
    the timer if this is the beginning of the game
    function target(e:MouseEvent):void
    {
    If this is the beginning of the game
    Start the timer as soon as the user
    Click on the view button
    if(flag==1)
    {
    myTimer.start ();
    flag = 0;
    }

    Position the insect on stage
    insect_btn.x = Math.random () * 625;
    insect_btn.y = Math.random () * 475;

    make the visible insect
    insect_btn. Visible = true;
    }

    Displays the number of times and
    When the timer reaches 0
    makes the insect and inactive launch button
    function timedFunction(e:TimerEvent)
    {
    the timer between 1 and more
    Subtract 20 to create a timer that decreases the value
    var tc: int = 20 - myTimer.currentCount;

    display the clock in the text box
    timer_txt. Text = tc.toString ();

    If the number of timer 0
    If (myTimer.currentCount > 19)
    {
    make the fire button and the inactive button bug
    insect_btn. RemoveEventListener (MouseEvent.Click, disappear);
    launch_btn. RemoveEventListener (MouseEvent.CLICK, target);

    stop the clock
    MyEventArgs;

    move image where is the button 'replay '?
    gotoAndPlay ("done_frame");

    }
    }
    function playAgain(evt:MouseEvent):void
    {
    gotoAndPlay ("play_frame");
    }


    Load method applied to the sound object
    who will be our music.
    Sound.load() (soundReq);

    Play method applied to the sound object
    starting to play our music.
    soundControl = sound.play().


    When you click on the btn_play, this function
    will be called and it will play music
    function playSound(event:MouseEvent):void
    {
    Check the indicator.
    If the flag is 0, then the music is not playing.
    If (Flag2 == 0)
    {
    soundControl = sound.play().

    Reset indicator 1, to indicate that
    Subsequently the music plays.
    Flag2 = 1;
    }

    }

    When you click on the btn_stop, this function
    will be called and it stops the music
    function stopSound(event:MouseEvent):void
    {
    soundControl.stop ();

    Reset the indicator to 0, to indicate that
    Subsequently the music does not play.
    flag = 0;
    }


    When btn_up is enabled, the function is called
    function increaseVolume(event:MouseEvent):void
    {
    Adjust the volume by adding a unites.5
    the current volume
    volumeControl.volume +=. 5;

    Change the volume of the background music
    soundControl.soundTransform = volumeControl;
    }

    When btn_down is enabled, the function is called
    function decreaseVolume(event:MouseEvent):void
    {
    The volume in soustrayant.5 units
    volumeControl.volume-=. 5;

    If the volume is not less than zero
    change the volume
    otherwise to give volume to zero
    If (volumeControl.volume > = 0)
    soundControl.soundTransform = volumeControl;
    on the other
    volumeControl.volume = 0;

    }


    set up event listeners
    insect_btn.addEventListener (MouseEvent.Click, disappear);
    launch_btn.addEventListener (MouseEvent.CLICK, target);


    Add listeners to the play and stop buttons
    btn_play.addEventListener (MouseEvent.CLICK, playSound);
    btn_stop.addEventListener (MouseEvent.CLICK, stopSound);

    Add listeners to events for the up/down buttons
    btn_up.addEventListener (MouseEvent.CLICK, increaseVolume);
    btn_down.addEventListener (MouseEvent.CLICK, decreaseVolume);

    These two lines are already in your code:

    Sound.load() (soundReq);

    soundControl = sound.play().

    Find them and replace them with

    {if(!bool)}

    bool = true;

    Sound.load() (soundReq);

    soundControl = sound.play().

    }

    and place

    var bool:Boolean at the top of your code.

  • I am trying to open a web site called shark Groove and he always tells me that I have no ' adobe flash', but I do. I tried to open it in 'Internet Explorer' and it works? Do you have any idea how to solve this problem?

    I have version 3.6.13 Firefox and Windows XP. I don't know if I had something off or not? I put Firfox in safe mode to see if it would run faster, and since I'm now getting this message?

    There are 2 versions of Adobe Flash:

    • the version of the Plugin for Firefox and most other browsers
    • the only ActiveX for IE version (see: ActiveX)
    • Updated, you need to update as well

    You do not have the Plugin version installed for Firefox. Search for "Shockwave Flash" in tools > Modules > Plugins

    1. Install the Flash plugin to the latest version.

      • Download and SAVE to your desktop, so you can find the Setup program later
      • If you do not have the current version, click on the "Player Download Center" link on the 'download and information' or 'Download manual installers' below
      • Once the download is complete, exit Firefox
      • Click on the installer, you just download and install
        • Windows 7 and Vista: will need to right click on the installer and choose 'run as administrator '.
      • Launch Firefox and recheck your version or up to the download link below to test the installation
      • Download and information: http://www.adobe.com/software/flash/about/
        • Use Firefox to go to the site above to update the Firefox plugin (will also install the plugin for most other browsers, except IE)
        • Use IE to go to the site above to update the ActiveX to IE
      • Download manual installers.
  • When I close a window, it closes like a window shade. Any ideas how to solve this problem?

    It's on a Windows XP count.  Demension Dell Dim 4700.

    Pentium 4 CPU 280 GHz

    2.79 GHz, 504 MB ram.

    It's on a Windows XP count.  Demension Dell Dim 4700.

    Pentium 4 CPU 280 GHz

    2.79 GHz, 504 MB ram.

    ========================================
    Perhaps the Visual effects settings could be changed:

    Right-click the icon of your workstation and then...

    Properties / Advanced tab / section Performance / Settings button / tab Visual effects

    Now, you can experiment...

    Personally, I choose 'Adjust for best results' / apply / OK...
    This setting disables all effects.

  • My photos aren't going to the photo gallery. All the settings are correct. iPhone 5 s

    iPhone 5s does not load the photos to photo streams. All the settings are correct.

    It loads new photos - try to take one and see if it goes to the cloud

  • Windows Media Player opens when I type any key. This started 2 days ago and did the computer virtually unusable. The mouse is however immune to this phenomenon, so I can still use it. No idea how to solve this problem?

    Windows Media Player opens when I type any key. This started 2 days ago and did the computer virtually unusable. The mouse is however immune to this phenomenon, so I can still use it.

    No idea how to solve this problem?

    Ideas:

    • You have problems with programs
    • Error messages
    • Recent changes to your computer
    • What you have already tried to solve the problem

    Do a system restore. Choose at least 3 days ago when you did not have this problem as your restore point.

    Start button > Search box, type system restore > press the Enter key > uac prompt > click on choose a different restore point > next > select dates as your restore point, until the click > next > finish
    To sit and wait. The machine restarts when it's done.

    For the benefits of others looking for answers, please mark as answer suggestion if it solves your problem.

  • I use iphone videos and still images in a project.  When I drag the videos in the timeline, they work fine, but when I drag still images, I have only a small part of the original photo.  No idea how to solve this problem?

    I use iphone videos and still images in a project of first Pro CC.  When I drag the videos in the timeline, they work fine, but when I drag still images, I have only a small part of the original photo.  No idea how to solve this problem?

    Right click on the photo in sequence and "ladder to the chassis '. Can also be set in the preferences and affect imports after the change

    Thank you

    Jeff

  • My email is not working, no idea how to solve this problem?

    I have two addresses - email [email protected] that does not work and the [email protected] who works there. I have no warnings or error messages, but I have not received emails for a week and it will not send emails. No idea how to solve this problem? Ildi

    OK let see VAT present one bit at a time.

    You should send messages using the tassiemoments server no bigpond. I think I might even be a technical violation of their service life... The provider is used to cover their bets as we ISP block port 25 connections home. I can attest to Telstra/Bigpond do not do that my mail server has worked well until the server has exploded at Christmas.

    There are significant problems with the server and especially e-mail with no records among other things a DNS server. See here the page is slow to load because it tests the configuration of the server to tassiemoments.

    The technical contact for the domain is JOANNE SMITH, WUNDOWIE, WA perhaps that is where you should direct your questions.

  • I have an Iphone 6 and can't send or receive text messages to Iphone users not.  I can send the Imessages blue very well, but it is impossible to send green messages any idea how to solve this

    I have an Iphone 6 and can't send or receive text messages to Iphone users not.  I can send the Imessages blue very well, but it is impossible to send green messages any idea how to solve this

    SMS or text messages, are a specific function of the carrier. You must have an addition of text on your cell phone plan. If you can not send SMS, you must contact your operator to solve the problems.

  • I have Pandora Radio and he plays only a song and must then be restarted. He has not done this before. No idea how to solve this problem?

    I have Pandora Radio and he plays only a song and must then be restarted.  He has not done this before. No idea how to solve this problem?

    Hi Howard,

    -What version of Windows you are using on the computer?

    The question you posted would be better suited in Pandora Radio support Forums. Contact them for assistance. Please see the link below.

    www.Pandora.com/contact

    www.Help.Pandora.com

    It will be useful. Back to us for any problem related to Windows. We will be happy to help you.

  • Please insert disk photoshop CS5 to continue.  Disc is already.  No idea how to solve this problem?

    Please insert disk photoshop CS5 to continue.  Disc is already.  No idea how to solve this problem?

    You install from the DVD?  If yes then please try copying the installation files to your desktop and install from there.

  • I lost some data during a copy and paste procedure between folders on a thumb drive... any ideas how to recover this data?

    I lost some data during a copy and paste procedure between folders on a thumb drive... any ideas how to recover this data?

    I lost some data during a copy and paste procedure between folders on a thumb drive... any ideas how to recover this data?

    If you did a copy and paste, the original files are left intact when they came.  If you did a cut and paste, they are lost if you do not paste them and your paperweight (the location of storage to copy or cut and paste) was allowed.  It would be cleared if you did quite exemplary or cuts too fill it, or if you rebooted.

  • New computer Windows 7 keeps waking my Brother printer, do not own, all the settings are correct on the printer?

    My new Acer computer with Windows 7 continues to wake up my Brother MFC J625DW printer, has done that with my old XP unit, does not not a clean place and all the printer settings are correct and identical forward can help them a whole?

    Hello

    I have a Brother printer and for now, it is not the same installer and it lights up occasionally. I think so
    This cleaning the inkjet.

    Mine is an all-in-one Brother MFC-J825DW.

    Maybe there is a setting in the Setup/properties of the printer driver be awakened.

    The answer will come from brother.

    Rob - SpiritX

  • Auto weekly full scan never start despite all the settings are correct

    I use XP and I was using AVG which I could always count on doing my Automatic weekly Full Scan. I've been using Microsoft Security Essentials since the beginning of the summer, but I'm a little worried it won't kick and do my weekly analysis automatically. I always have to do it manually. Is this a common problem, I know two other people with the same problem. I double checked all the settings and everything is as it should be.

    Hello

    Getting started with Microsoft Security Essentials
    Refer (Scheduling scans) links
    If you got the question, then you uinstall and resinstall Microsoft Security Essentials
    Protect your PC
    Download Microsoft Security Essentials for the low price, low free.
    Help protect your PC with Microsoft Security Essentials

Maybe you are looking for

  • IPhoto, Synology, NAS

    Hello I have a mac book pro, which runs from storage, mainly due to volume of the iPhoto library. I also have a synology NAS. What are my alternatives to move my iPhoto library to the NAS without losing the access from my other devices (i.e. with the

  • change my Windows LIVE ID and now I can not connect to Games For Windows LIVE

    all games that support GFWL and I tried to connect it says: the e-mail address or password entered is not valid. I know that my email and password, but every time I try to connect, it gives me this error I tried to change my ID back, but it says that

  • computer laptop Pavilion G6-1d71nr is supports the SSD drive?

    I have a Pavilion G6(g6-1d71nr) laptop.  Currently, it has factory-installed memory of HD and 8 GB to 500 GB.  The laptop had run sluggish lately, that I won't be able to increase the memory that it tops out at 8 GB per user manual.  I wonder If the

  • | If someone managed to install Drupal 7 Developer on XP using WebMatrix?

    Unlike applications made by MS, I have yet to find one person who managed to install Drupal 7 developer using WebMatrix. I get as far as running install.php, then it fails with various errors such as 'table xxx already exists' so I delete all tables

  • Cisco VPN and Cisco 2651 customer support

    I 2651 and remote VPN client Client can successfully establish VPN to 2651 but nothing through this tunnel. In the stats customers there are no decrypted packets. In 2651 I saw the incoming packets but no response. What evil? (This cisco also make VP