Play/Pause/Power button toast. Warranty expires soon.

Over the past couple months the play/pause/power button has been getting more and more hard to use. my warranty is up in about a week and im sure the warranty would not cover this. i don't press the button hard at all. it just started a couple months ago if that.
what do i do?
6G 80GB

Hi, Sheogorath. When did you purchase it? Have you tried sending it to the Care Point for evaluation? You may check this link to locate the nearest one in your area: http://www.microsoft.com/en/mobile/locale/. 

Similar Messages

  • How best to handle a start button and a play-pause toggle button?

    Hello,
    Still new to AS3, on a project for a client. I'd appreciate advice on how best to handle the navigation for 5 movieclips set inside 5 separate frames on the main timeline. I have a play button on frame 1 to start the animation, but I'd like to include a play/pause toggle button on the other frames to finish the navigation. Everything works except the toggle button, when clicked, does toggle but does not stop the animation. I've copied the code, including the toggle button code on frame 4 below. How best to handle both a start button and a play-pause toggle button?
    Thanks for any help in advance.
    Frame 1:
    PlayBtn_mc.buttonMode = true;
    stop();
    PlayBtn_mc.addEventListener(MouseEvent.CLICK,startMovie);
    function startMovie(event:MouseEvent) {
    gotoAndPlay(2);
    Frame 2:
    stop();
    Frame 3:
    stop();
    Frame 4:
    RewindBtn_mc.buttonMode = true;
    RewindBtn_mc.addEventListener(MouseEvent.CLICK,rewind);
    function rewind(e:MouseEvent) {
    prevFrame();
    FFBtn_mc.buttonMode = true;
    FFBtn_mc.addEventListener(MouseEvent.CLICK,forward);
    function forward(e:MouseEvent) {
    nextFrame();
    ToggleBtn_mc.buttonMode = true;
    ToggleBtn_mc.addEventListener(MouseEvent.CLICK, doToggle);
    function doToggle(myevent:MouseEvent):void {
    ToggleBtn_mc.play();
    Frame 5:
    (Loops back to Frame 1)

    I can't tell you how appreciative I am of all your assistance.
    Could you double-check on this, I may have stumbled upon somthing- I tweaked your last code, which toggled, but didn't seem to call the scene_test_mc into action.
    But I copied below what both toggles the play/pause button and calls the mc into action. Could you verify this as reliable code and not a fluke that will break? Thank you so much! :
    ToggleBtn_mc.buttonMode = true;
    ToggleBtn_mc.addEventListener(MouseEvent.CLICK, doToggle);
    scene_test_mc.buttonMode=true;
    scene_test_mc.addEventListener(MouseEvent.CLICK, doToggle);
    function doToggle(myevent:MouseEvent):void {
    var mc:MovieClip=MovieClip(myevent.currentTarget);
    if(mc.currentFrame==1){
    mc.gotoAndStop(2);
    scene_test_mc.play();
    } else {
    mc.gotoAndStop(1);
    scene_test_mc.stop();

  • Animation couldnt control with Play pause toggle button..

    I have multiple movie clip with bg sound.I have used the code AS3 for toggling the animation ( Play & Pause ).Automatically the animation starts and button also togggled on click but couldnt control the animation .
    I need some solutions like when the intial stage the animation wont start etither the button click to play.After that the flow as it is in action ( ON Click ). Kindly anyone guide me to solve it. i'm very new to flash. this is my first project and ihave to finish it soon..
    btns.visible = false;
    btns.addEventListener(MouseEvent.CLICK,onEl);
    dfr.addEventListener(MouseEvent.MOUSE_OVER,onEls);
    dfr.addEventListener(MouseEvent.MOUSE_OUT,onEld);
    btns.addEventListener(MouseEvent.MOUSE_OVER,onEls);
    btns.addEventListener(MouseEvent.MOUSE_OUT,onEld);
    var _vrSts:int = 0;
    function onEl(eve:Event):void    {
        if(_vrSts)    {
            trace('status:'+_vrSts);
            _vrSts = 0;
            btns.gotoAndPlay(1);
        }else    {
            trace('status:'+_vrSts);
            _vrSts = 1;
            btns.gotoAndStop(2);
    function onEls(eve:Event):void    {
        btns.visible = true;
    function onEld(eve:Event):void    {
        btns.visible = false;

    Hi Ned!
    i done it. here is the solution.One issuse is" End of the animation it goes to 1st frame with pause button, but intially there has play button."
    stop();
    btns.visible = true;
    btns.addEventListener(MouseEvent.CLICK,onEl);
    dfr.addEventListener(MouseEvent.MOUSE_OVER,onEls);
    dfr.addEventListener(MouseEvent.MOUSE_OUT,onEld);
    btns.addEventListener(MouseEvent.MOUSE_OVER,onEls);
    btns.addEventListener(MouseEvent.MOUSE_OUT,onEld);
    var _vrSts:int = 0;
    function onEl(eve:Event):void    {
        if(_vrSts)    {
            //trace('status:'+_vrSts);  
            _vrSts = 0;
            //btns.label = "Play";
            btns.gotoAndPlay(1);
            btns.visible = false;
            //if(currentFrame == 445)
                //gotoAndPlay(1);
                if(currentFrame == 445) {
                gotoAndPlay(1);    
                btns.gotoAndStop(1);    
            else
               stop();
            //btns.gotoAndStop(1);
        }else    {
            //trace('status:'+_vrSts);
            //stop();
            _vrSts = 1;
            btns.gotoAndStop(2);
            //btns.label = "Pause";
               play();
    function onEls(eve:Event):void    {
        btns.visible = true;
    function onEld(eve:Event):void    {
        if(_vrSts)
            btns.visible = false;

  • Play pause toggle button

    Hi,
    I'm new to Flash. Kindly help anyone.
    Need assistance to create toggle button. Here attaced two screenshots.
    1. inner-animation.jpg - it contains all movie clips and play pasue controls.
    2.main-animation.jpg - this is the main timeline ( inside all movie clips & control buttons)
    3.playbuton-inside.jpg - its a button symbol ( as well as pause )
    4. There also bg music and sounds for some particular animation.
    Here all working fine. But i need play & pause animation as a toggle button.
    Here is the code i added for pause:
    play();
    pause_btn.onRelease=function(){
    stop();
    Here is the code i added for pause:
    stop();
    play_btn.onRelease=function (){
    play();

    You are using AS2 code, so you should be posting in the AS2 forum (http://forums.adobe.com/community/flash/flash_actionscript?view=discussions).  If the intention is to use AS3 code, then you need to change things.
    If the intention is to use the same single button for both pause and play, then what you normally would do is establish a boolean variable that you se to determine whether the clicking of the button should play or stop the movie...
    var playMovie:Boolean = true; // assumes the movie is stopped at the start
    pause_play_btn.onRelease = function (){
       if(playMovie){
           play();
           // manage play/pause btn
       } else {
           stop();
           // manage play/pause btn
       playMovie = !playMovie; // reverse the value of the playMovie variable
    In that code where I show "// manage play/pause btn" is where you need to do whatever you need to make the pause/play button appear as intended... either hiding one or the other, or changing its frames to show the appropriate image.

  • New Aluminium Keyboard Vol/play/pause etc buttons wont work

    Hello everyone, thank you for your time.
    I'm screaming at my new keyboard, I bought another Apple Aluminium Wireless keyboard to replace my previous one from 2007 that essentially went nuts after the last update.....I couldnt use the up and down arrows, the shift key would "hold itself down" etc.
    This new one wont let me use its play/pause, volume mute, down, and up etc buttons....I've remapped several Expose functions and Dashboard to work right, but you cant do anything for the audio control buttons....?
    This is too much for me, I'm very angry at this odd problem. It seems SO simple, it should just work like my previous keyboard did....
    I cant handle not having control of my iTunes music.... I could keep BOTH my Apple keyboards on and use one for play pause etc, and the other for everything else.....
    I have a hint for what the problem might be, it seems this keyboard shows up as the "old" "fat white and clear plastic wireless keyboard", perhaps that keyboard didnt have the same functions as the Aluminium? When it disconnects from my Mac for example, I dont get correct "aluminium keyboard connection lost" side on icon, I get one of the larger older plastic keyboard....
    I think this is the problem, that this keyboard identifies as the very old plastic model.....
    Im going nuts over this very simple function of a keyboard....my last keyboard blew up after the update....ok, so I have to shell out another $120 NZD for a new keyboard...ok....I'm an Apple fan, I'll choke on my pride, and when it finally arrives, from Australia....it wont control iTunes like I do several times a day....
    Can anyone help me? I tried using the firmware updates but it seems like it didnt even identify the keyboard...it showed nothing in the detection box....the keyboard was paired, probably showing up as another model of keyboard.....
    Very annoying!
    Thank you very much for your help. I hope you have a great day.

    alright its not doing it anymore after a restart. I think it was from plugging in a Logitech wireless mouse keyboard combo but i didn't use the keyboard so i didnt calibrate it. Sorry for the useless post.
    Message was edited by: NeoTranc3

  • Play/pause mouse button no longer works since update?

    I have a mouse with several buttons, one of which I customized to be "Play/Pause". This was great for iTunes -- if I was in Firefox or something, I could click it and immediately play/pause the song.
    However, with the new version of iTunes, this button no longer works, neither outside of iTunes nor inside. The button still works with other programs that it used to (eg, VLC), so it's specific to iTunes.
    My hopes aren't high, but is there any chance of solving this?

    Hi, Piafromvic. This forum is about using apple's new iBooks Author software to create books. There's a separate forum for help with the ibooks app for reading books and you might get more answers there:
    https://discussions.apple.com/community/app_store/ibooks
    Good luck!

  • Using default CS5 skin, play/pause & stop buttons disabled until going fullscreen

    We are using default CS5 skins with an flvplayback component built through action script 3.  When playing certain videos (and only certain videos, however there isn't yet a pattern), the play/pause, stop & seek buttons are completely unresponsive.  They don't change stats on hover & they are unclickable.
    However, the fullscreen button does always work, and upon going fullscreen and coming back out, the buttons now work again.
    I really have no idea what is going on here, it seems rather random.  So far, the problem was seemingly at its worst displaying a video that was encoded with Sorenson spark (an older codec) and we wondered if it had to do with the file itself, the headers, anything of that sort.  But the fact that the skin and buttons work fine once entering and exiting fullscreen - that is perplexing.

    Just an update, but the following line:
    my_FLVPlybk.scaleMode = "noScale";
    Has something to do with the issue.  When we include this line (which tells the player to resize to the size of the given FLV), we get the problem with the buttons not working.  If we take the line out, we do not see that problem.

  • A problem with the Play/ Pause control button in a quiz project

    Hi,
    I have a probem with the play/ pause button in this project,
    it is a quiz project, the problem is when I click the pause the
    project does not pause and keep working ? Any idea why?
    http://www.megaupload.com/?d=995I8WX9
    Thanks

    If you have bought you Macbook within 90 days or have bought AppleCare you can call them for free and ask them what you should do. 1-800-MY-APPLE

  • Is it possible to change the link to the WMP of the Play/Pause/Stop buttons

    Is it possible to change the link to the WMP of the Play/Pause and Stop Button?
    Because by software only the Network and Media Buttons are changable.
    And I don't prefer WMP to be my favorite media player.

    I used to have this problem too. When pressing +play/pause+ button on my +Satellite+ always wmp start. I used RM-X media to configure media keys, or Global Hotkeys in Winamp to solve this problem, but in case of +play/pause+ it was still the same. I found simple solution how to use this key in Winamp - assaying Winamp as default media player in Control panel/Add remove programs. And then in specific application edit file associations.

  • Using REW/Play/Pause/FF buttons in VLC Possible?

    Hello, just wondering if there's a way to make the new control buttons on the Air work in VLC like they do in QT/iTunes et al.?
    Thanks in advance!

    According to VLC Devs, this is currently not possible, but MAY be added into 0.9 if the keycodes for the Air's multimedia buttons can be decoded.

  • Hi! I bought my iPhone from USA and the power button doesn't work. I have warranty. I will come to UK soon. I wanna learn; can i benefit my warranty in UK?

    Hi! I bought my iPhone from USA and the power button doesn't work. I have warranty. I will come to UK soon. I wanna learn; can i benefit my warranty in UK?

    The warranty is not and has never been International.  Warranty and support are only valid in the country of origin.  The only exception is for devices sold in the EU where the EU is treated as one country for warranty and support purposes.

  • Power button not working properly for iphone 5. Warranty expired on 22 nov 2013 what to do?

    Hi,
    Power button not functioning properly for my iphone 5. Kindly give advice on what to do. Its warranty expired on 22nd november 2013.

    Read here:
    https://ssl.apple.com/support/iphone5-sleepwakebutton/

  • Mini's Play/Pause Button

    Hello I was wondering if anyone else has had such an issue. It's not a major problem but it does bug me sometimes.
    I have a 2nd generation Ipod Mini that's still under warranty. I usually turn off my Ipod by pressing and holding down the play/pause button. Lately however, I've noticed that this doesn't always work. Somtimes I have to try a couple of times for the Ipod to recognize that I'm actually holding down that key for it to turn off and not just pressing it to enable pause or play mode. The problem isn't always consistent but this was definitely not an issue before.
    Now my question is, is it really worth it to send it back to Apple? I understand that all Mini's that they send back now are refurbished..but is it worse to get a refurbished one back? Also, my warranty is expiring in November. If I do send my current Ipod back and get another one back does my warranty still only go until November? What if something is wrong (or goes wrong) with the one that they send back after the November deadline? Am I screwed?
    Thanks for any answers!

    Don't keep postiong with nothing else to say...saying "anyone?" is not going to make us answer any faster.
    Try this:
    when you go to turn it off, don't touch any buttons for a couple seconds before hand. I seem to have the same problem with my nano and I think the problem is just that the processor can't keep up.
    I hope this helps!

  • 30GB Play/Pause button won't work.

    Yes, another iPod Classic's play/pause button is messed up. I got it in March '09 so I believe that's over the 90 day fixing range. I've tried resetting, holding the menu & center button, & all of the suggestions on the Mac site, but it still won't work.
    Any ideas what could be wrong & how to fix it?

    Besides resetting the iPod, have you attempted restoring it? You can do that by clicking the "Restore" button on the the iPod's Summary page in iTunes.
    Assuming that doesn't work, you can check your [warranty status|https://selfsolve.apple.com/GetWarranty.do] to see if you are still covered for hardware repair. I doubt any 30GB iPods are still under warranty, since they were discontinued over two years ago, but you said you got it in March 2009 - did you purchase it used?
    Whether it's under warranty or not, you can always make a Genius Bar appointment at your closest Apple Store and see if they have any other suggestions, free of charge. If it's a hardware problem, they can replace the iPod for you, but there would be a charge to do so if you're out of warranty.
    Shawn

  • My play/pause button on my Ipod Classic is not working, I am unable to turn off my Ipod or push play. Can this be fixed?

    The play/pause button on my ipod classic is not working, I am unable to turn off or push play on my ipod. Is there away to fix this?

    Do other devices now connect?
    Did the iPod connect before?
    What encryption/security is the router using?
    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on the router
    - Reset network settings: Settings>General>Reset>Reset Network Settings
    - iOS: Troubleshooting Wi-Fi networks and connections
    - iOS: Recommended settings for Wi-Fi routers and access points
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    - Make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar

Maybe you are looking for

  • NVIDIA GeForce 8800 GS in iMac White

    Hello, is posible "NVIDIA GeForce 8800 GS" in my iMac 2.16 GHz Core 2 Duo 24" (MA456LL)? I dont have guarantee.

  • Why are photoshop icons showing up as color bars in AE6 even though the files are not missing?

    I have imported the file numerous times, they actually show up in After Effects. If I render it renders fine, however the icons next to the photoshop files show up as color bars. Can anyone hep me figure this out?

  • Loading SWF into level and setting height/width/location?

    Hi folks, I am an old AS2 guy who gave up on Flash heavy coding when it switched to AS3. Always thought it was less intuitive, longer, and a brand new language and I got tired of trying to keep up when most of my clients did not want to pay for a ful

  • How to swap columns and rows?

    Hi! I want to create a simple report from a db table. The "challenge": due to the nature of the data I always get twelve rows (yes, one for every month) and four columns. I'd really like to swap rows and columns. Does anybody know a way to do this? D

  • Failed bios update on Z87-GD65 gaming, now what?

    I need a bit help with getting my Bios A up and running again. I just tried the latest beta bios. Never had any issues with these. Downloaded to an USB stick, switched to bios, updated, the computer reset by it self and it installed the ME stuff and