Strange MagSafe Issue-How can I fix this?

I have a MacBook Pro and out of nowhere started experiencing trouble charging my computer. Here is what is happening.
-Charger turns green but never Amber (and won't charge)
-I used my moms charger on my computer, and it works. She has an older MacBook.
-My charger works on her computer, but not on mine.
Is there anything I can do to fix this?
edit: it's not even turning green now.
Message was edited by: mantooth77

See whether anything here helps:
http://support.apple.com/kb/TS1713

Similar Messages

  • I purchased a season of a TV show from itunes and it won't go onto my ipad, i've purchased several seasons in the past and never had this issue, how can i fix this?

    I purchased a season of a TV show from itunes and it won't go onto my ipad, i've purchased several seasons in the past and never had this issue, how can i fix this?

    Drew how is that even possible? I use gift cards all the time, any time I've had insufficient funds iTunes will not allow the purchase, sights Insufficient funds and rejects the purchase. Any time I log into my account the money in that account appears in the upper left corner. If you're not seeing that then you have other issues. Anyway... Kneil is right you should be able to rip CDs you own to your iTunes library (regardless of your money matters with iTunes), then depending on how you set up the music you need to add it to your playlist and then sync it to your iPod. Did imported music ever work? How are you ripping or importing the music to iTunes? Are you using a compatible format?
    Something else to look at-- It's possible your cable is defective, have you tried a new or different cable? Some of what your describing is a bad cable issue. Good luck, Cheers.

  • Css issue, How can i fix this ?

    Hi guys! Im trying to load this CSS file but this message shows up: What should i do ?
    WARNING: com.sun.javafx.css.StyleManager loadStylesheet Resource "null" not found.
    In my Code i have this in my main class :
    Scene Scene = new Scene(root,500,500);
            Scene.getStylesheets().add("src/Musica.css");
            root.getChildren().add(grid);And this at Musica.css file :
        Document   : Musica
        Created on : 06/05/2012, 09:30:00
        Author     : André
        Description:
            Purpose of the stylesheet follows.
    .root{
        -fx-font-size: 16pt;
        -fx-font-family: "Courier New";
        -fx-base: rgb(132, 145, 47);
        -fx-background: rgb(225, 228, 203);
    }

    The Css File is here : E:\ACPN 2\Netbeans Projetos\Musica\src\musica
    its in musica folder.
    its name was musica , i changed to musica.css
    Exception in Application start method
    Exception in thread "main" java.lang.RuntimeException: Exception in Application start method
         at com.sun.javafx.application.LauncherImpl.launchApplication1(Unknown Source)
         at com.sun.javafx.application.LauncherImpl.access$000(Unknown Source)
         at com.sun.javafx.application.LauncherImpl$1.run(Unknown Source)
         at java.lang.Thread.run(Thread.java:722)
    Caused by: java.lang.NullPointerException
         at musica.Musica.start(Musica.java:179)
         at com.sun.javafx.application.LauncherImpl$5.run(Unknown Source)
         at com.sun.javafx.application.PlatformImpl$4.run(Unknown Source)
         at com.sun.javafx.application.PlatformImpl$3.run(Unknown Source)
         at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
         at com.sun.glass.ui.win.WinApplication.access$100(Unknown Source)
         at com.sun.glass.ui.win.WinApplication$2$1.run(Unknown Source)
         ... 1 more
    Java Result: 1
    This is the code of the program:
    package musica;
    import java.io.File;
    import javafx.application.Application;
    import javafx.beans.property.ObjectProperty;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.TextField;
    import javafx.scene.layout.GridPane;
    import javafx.scene.layout.StackPane;
    import javafx.scene.media.Media;
    import javafx.scene.media.MediaErrorEvent;
    import javafx.scene.media.MediaPlayer;
    import javafx.scene.media.MediaView;
    import javafx.scene.text.Font;
    import javafx.scene.text.FontPosture;
    import javafx.util.Duration;
    import javax.swing.Action;
    import javax.swing.JFileChooser;
    import javax.swing.JOptionPane;
    import javafx.scene.web.WebEngine;
    import javafx.scene.web.WebView;
    import javafx.stage.Stage;
    import javax.swing.JTextField;
    * @author André Lopes
    public class Musica extends Application {
        public MediaPlayer MP;
        public Media Media;
        public static String MusicURL;
        public static JFileChooser JFC;
        public static Duration currentTime;
        public MediaView mediaView;
        public static WebView view;
        public static WebEngine webEng;
        public static TextField webFieldURL;
        private static String webUrl;
        private void init(Stage primaryStage) {
           view = new WebView();
            view.setMaxSize(1000,900);
             view.setMinSize(950,700);
           webEng = view.getEngine();
           webEng.load("http://www.google.com.br");
           System.out.println("Web Engine Started!");
        public Musica()
        webUrl = "www.google.com.br";
        webFieldURL = new TextField(webUrl);
        currentTime = Duration.ZERO;
        mediaView= new MediaView(MP);
        MusicURL = "";
         //URL = "http://download.oracle.com/otndocs/products/javafx/oow2010-2.flv";
        @Override
        public void start(Stage primaryStage) {
            primaryStage.setTitle("Hello! This is Yours Music Player!");
            //Carrega A Web-Objects!
            init(primaryStage);
            //Botão Play
            Button Play = new Button();
            Play.setText("Play");
            Play.setOnAction(new EventHandler<ActionEvent>() {
                @Override
                public void handle(ActionEvent event1) {
                    Media = new Media(MusicURL);
                    MP = new MediaPlayer(Media);
                    MP.setStartTime(currentTime);
                    mediaView.setMediaPlayer(MP);
                    MP.play();
                    System.out.println("MediaPlayerStatus: "+ MP.getStatus());
                    mediaView.setOnError(new EventHandler<MediaErrorEvent>() {
                      @Override
                        public void handle(MediaErrorEvent arg0) {
                            System.out.println("MediaErrorEvent-arg0: " + MP.getStatus());
           //Botão para Entrar No site Digitado
            Button SendWebUrl = new Button();
            SendWebUrl.setVisible(true);
            SendWebUrl.setText("Send");
            SendWebUrl.setOnAction(new EventHandler<ActionEvent>() {
                @Override
                public void handle(ActionEvent arg0) {
                    webUrl = webFieldURL.getText();
                    EnterWebSite(webUrl);
           //Botão pra escolher Musica
            Button SelctFileButton = new Button();
            SelctFileButton.setText("Music Chooser/Finder:");
            SelctFileButton.setOnAction(new EventHandler<ActionEvent>() {
                @Override
                  public void handle(ActionEvent arg0) {
                    System.out.println("Java File Chooser Opened");
                    JFileChooser search = new JFileChooser();
                    search.showDialog(search,null);
                    MusicURL = search.getSelectedFile().toURI().toString();
                    System.out.println("File URL: "+MusicURL);
           //Botão para pausar;
           Button Pause = new Button();
           Pause.setText("Pause");
           Pause.setFont(Font.font(null, FontPosture.ITALIC,15));
           Pause.setOnAction(new EventHandler<ActionEvent>() {
           @Override
                public void handle(ActionEvent arg0) {
                try {
                    currentTime = MP.getCurrentTime();
                    MP.pause();  
                    }catch(java.lang.NullPointerException e)
                     System.out.println("java.lang.NullPointerException \n");  
                     System.out.println("Error: Unable To pause! May happens if you didnt have a music Playing!");  
           //Botão Para Continuar;
           Button Continue = new Button();
           Continue.setText("Continue/UnPause");
           Continue.setOnAction(new EventHandler<ActionEvent>() {
                @Override
                public void handle(ActionEvent arg0) {
                   //MP.setStartTime(currentTime);
                   MP.pause();
            //Grid ! Layout
            GridPane grid = new GridPane();
            StackPane root = new StackPane();
            grid.setHgap(2);
            grid.setHgap(2);
            grid.setVgap(2);
            Scene Scene = new Scene(root,500,500);
            //Scene.getStylesheets().add("musica.css");
            Scene.getStylesheets().add(getClass().getResource("musica.css").toExternalForm());
            root.getChildren().add(grid);
            //root.getChildren().add(mediaView);
            //Scene.getStylesheets().add(Musica.class.getResource("src/Musica.css").toExternalForm());
            //grid.getStyleClass().add(Musica.class.getResource("Musica.css").toExternalForm());
            primaryStage.setScene(Scene);
            primaryStage.show();
            //Adicionando Botoes no Grid (Grid.add(NODE,Column,Row);
            grid.add(Play,1,3);
            grid.add(Pause,2,3);
            grid.add(SelctFileButton,1,4);
            grid.add(view,10,10);
            webFieldURL.appendText(" ");
            grid.add(webFieldURL,10,8);
            grid.add(SendWebUrl,9,8);
        //Método para trocar de Site
        public static void EnterWebSite(String WebUrl)
            System.out.println("Entering A Website!");
            webEng = view.getEngine();
            webEng.load("http://" + WebUrl);
        //Main
        public static void main(String[] args) {
        launch(args);
    }

  • Why can I not attach a document to an email? Every time I want to send an email with a document attached to it, an error notice pops out. It tell me that the file is being used even when  it is not. How can I fix this issue?

    Why can I not attach a document to an email? Every time I want to send an email with a document attached to it, an error notice pops out. It tells me that the file is being used even when  iall other programs are closed. How can I fix this issue?

    Thanks Jeff, I was not aware that a template could be multi-page.  (All the existing templates were 1 page)
    But it worked, saving me some steps.  When I was finished I renamed the document, and locked it.
    Then tried to save it but  could not because it was locked.  I closed it, went to my Spread Sheet Folder ,
    to find it, it was not there.  The Finder could not find it either.
    So I start over again.
    I opened up Numbers and it showed my personal Numbers template folder, it contained both my new 
    original 4 page template and the vanished saved document!
    I tried to delete the template containing these document data and could not - I had to go to the Library/Application Support/Numbers to physically remove it from this folder. Then I started over again.  I Finally found out how to make it work: I can now "save as", and then lock, and it will go to place where I want it to be saved and locked.
    The secret is: Click on the document title in the menu bar, and it opens up  "Save as...", which works the same as in OS 10.4.11, and you can pick the place you want for saving.  Once done that, you can then lock the document in the same pull down menu, and then close it.
    I also found later that I can delete a template from its folder, by letting Numbers open the templates,
    clicking on the one I want to remove, then go to the "Numbers Menu/File/Move to...", select "Desktop"
    and from there the selected template can then be thrown into the Trash from there.
    It appears now that the real fault of the Numbers software is that the "Save as" command is not available in the "Edit" or "File" pull-down menus, but hidden behind the title of the document.

  • My external Apple USB Keyboard letters doesn't work, but the numbers do. Why and how can I fix this issue?

    My external Apple USB Keyboard letters doesn't work, but the numbers do. Why and how can I fix this issue? Also, When I open the Keyboard Viewer, the letters will highlight only if I hold the modifier key(s) "Control" or "Control and Option". I really need help with this. I don't have any other computer to try it on, so I will have to test it on a friends computer sometime. But perhaps solutions that I can try right now? Thanks.

    Hello there, IDuncan23.
    The following Knowledge Base article has some great troubleshooting steps you can follow to work on resolving your keyboard issue:
    One or more keys on the keyboard do not respond
    http://support.apple.com/kb/ts1381
    Thanks for reaching Apple Support Communities.
    Cheers,
    Pedro D.

  • I have a iphone 4s, it died and has been on the charger for the last two days and still wont turn on. How can i fix this???? condition of phone is not the best and was having issues staying charged to begin with but never NOT came back on.

    I have a iphone 4s, it died and has been on the charger for the last two days and still wont turn on. How can i fix this???? condition of phone is not the best and was having issues staying charged to begin with but never NOT came back on. I've tried the holding of the home and power button but still nothing

    iOS: Not responding or does not turn on - Apple Support
    try this but maybe terminal if no result

  • How can I fix this camera software issue?

    My iPhone 5 was most recently updated to iOS 7.1, and now my rear camera is showing up black. The front camera works, however it freezes when I attempt switching back to the rear camera. How can I fix this software issue?
    Please Help.

    RESET DEVICE
    Hold down the Sleep/Wake button and the home button together until the apple logo appears (ignore the ON/OFF slider) then let both buttons go and wait for device to restart (no data will be lost).
    Then try the camera again

  • Hello, i'm trying to download the new verison of itunes, and im getting an error message: Apple mobile failed to start and c;runtime failed. how can i fix this issue

    Hello, i'm trying to download the new verison of itunes, and im getting an error message: Apple mobile failed to start and c;runtime failed. how can i fix this issue

    Hi Tatilopez86,
    If you are having issues with iTunes after an attempted update, you may want to try the steps in the following articles:
    Apple Support: Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    http://support.apple.com/kb/HT1923
    Apple Support: Issues installing iTunes or QuickTime for Windows
    http://support.apple.com/kb/HT1926
    Regards,
    - Brenden

  • I get an error code 50 when downloading digital movie. How can I fix this issue?

    I get an error code 50 when downloading digital copy of a movie to my iTunes. I try to restart and still get the smae error code. I have my PC plugged directly into my modem and still get error, when trying to download failed movies. I have 5 failed downloads. How can I fix this issue?

    Try the "Error -50," "-5000," "8003," "8008," or "-42023" section in the Specific Conditions and Alert Messages: (Mac OS X / Windows) section of the following document:
    iTunes: Advanced iTunes Store troubleshooting

  • I have Adobe Elements 9 and I used to be able to export HD 1080p videos with no issue. But recently, when I export using H.264 MPEG or MPEG 2, which I normally used, the high resolution videos come out very choppy.  How can i fix this?

    I have Adobe Elements 9 and I used to be able to export HD 1080p videos with no issue. But recently, when I export using H.264 MPEG or MPEG 2, which I normally used, the high resolution videos come out very choppy.  How can i fix this?

    mr
    Are you running the 9.0.1 Update of the program and on what computer operating system is it running?
    Is your video card/graphics card driver up to date according to the manufacturer of the card?
    Is your computer optimized, including maintenance of pile ups of preview files, conformed audio files, and conformed video files?
    Do you have the latest version of QuickTime installed on your computer with Premiere Elements 9.0/9.0.1?
    What are your project settings and what are the properties of your source media? When you say that "used to be able to export...." is that on the same computer, same brand/model/settings for the camera recording the video now in use, same Premiere Elements 9.0/9.0.1?
    Where player are you using for the playback of these exports?
    Please give us more details on the size of the projects (then and now) as well as details of the customized export settings in your Share/Computer/ route. Premiere Elements 9.0/9.0.1 is only a 32 bit application running in 32 bit or 64 bit system. Not sure if computer resources might be taxed more so now than before.
    More later.
    ATR

  • I have an iPod mini that I have not used for mover 3 years.  I am trying to download music and it  is giving me a warning sign.  How can I fix this issue.

    I have an iPod mini that I have not used for more than 3 years.  I am trying to download music and it is giving me a warning sign.  How can I fix this issue?
    patrishafrombrooklyn

    Try:
    http://snapguide.com/guides/calibrate-your-home-button/?utm_expid=69945963-15
    fix for Home button
    iPhone Home Button Not Working or Unresponsive? Try This Fix
    - If you have iOS 5 and later you can turn on Assistive Touch it add the Home and other buttons to the iPods screen. Settings>General>Accessibility>Assistive Touch
    - If not under warranty Apple will exchange your iPod for a refurbished one for:
    Apple - Support - iPod - Repair pricing
    You can do it an an Apple store by:
    Apple Retail Store - Genius Bar
    or sent it in to Apple. See:
    Apple - Support - iPod - Service FAQ
    - There are third-party places like the following that will repair the Home button. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens

  • My mac is running slow. How can I fix this issue?

    Hi,
    My Mac has been running very slow for quite some time now. It takes a very long time to load a window and it freezes at times. Does this mean that I have a virus? If so, how can I fix this issue? Can you suggest a good and inexpensive spyware software? I appreciate any help that you can provide.
    Thank you,
    Pita-Gay

    Hi P,
    Run Verify/Repair Disk.
    You should have at least 15% free space available on your HD; if not, need to delete some things.
    You may need more RAM. One way to get an idea whether more RAM will help or not, is to check Page outs and Swap used. First, use your Mac as you normally would, the longer the better (checking this right after starting up isn’t likely to show you anything). After you’ve used your Mac for awhile (again, the longer the better), go to Applications > Utilities > open Activity Monitor > in the top menu at right, select All Processes in the drop down menu > near the bottom of the window click on System Memory. If Page outs is more that about 10% of Page ins, and/or Swap used is large, chances are good that adding RAM will help. http://support.apple.com/kb/HT1342

  • My Iphone updated today with new IOS 6.1 and while doing that it has sync my phone number with my wife number in the same cloud that we have hence we receive each others SMS when we message each other. Anyone have idea how can I fix this issue in settings

    My Iphone5 updated today with new iOS 6.1 and while doing that it has sync my phone number with my wife number in the same icloud due to which we receive each others SMS when we message each other. Anyone have idea how can I fix this issue in settings etc
    Thank you

    My Iphone5 updated today with new iOS 6.1 and while doing that it has sync my phone number with my wife number in the same icloud due to which we receive each others SMS when we message each other. Anyone have idea how can I fix this issue in settings etc
    Thank you

  • How can i fix this wireless issue?

    My problem is, few days now my wireless router either not showing my SSID or give me Worst signal even though im far from it like 5ft.,it sometime load fast then right back slow.
    but when i run a speed test on verizon website i get a decent
    21Mbps download  and 15mbps upload
    and this happen to almost all my devices, tivo, iphone, xbox360 and laptop.
    how can i fix this problem.
    this is the first issue that i have with this router.
    Im currently using a
    Firmware Version: 20.10.7.5 Model Name: MI424WR-GEN2 Hardware Version: E
    Solved!
    Go to Solution.

    Ptnguyen wrote:
    My problem is, few days now my wireless router either not showing my SSID or give me Worst signal even though im far from it like 5ft.,it sometime load fast then right back slow.
    but when i run a speed test on verizon website i get a decent
    21Mbps download  and 15mbps upload
    and this happen to almost all my devices, tivo, iphone, xbox360 and laptop.
    how can i fix this problem.
    this is the first issue that i have with this router.
    Im currently using a
    Firmware Version: 20.10.7.5 Model Name: MI424WR-GEN2 Hardware Version: E
    change the wireless signal.  you can do that in the router.   open a browser, and go to http://192.168.1.1
    user name is admin.  and the password is most likely the serial number found on the service tag of your VZ router unless you changed it.
    }Once you login succesfully, go to the top and hit wireless, then on the left basic security.   then go to option 3 which is channel
    1, 6 and 11 and are the only channels you should try.
    So it will likely be set to auto, change it to 11 and put the check for keep settings even after reboot (Directly under the channel) and then hit apply.,
    after you hit apply,  test your connection out, if you notice a difference, leave it like that until the problem happens again, and if it happens again, go back into the router, and try channel 6,     test it out.  and then finally 1 if the first two don't work.
    Also take a look at page 2 of Actiontec's Wireless PDF File.  It gives you some idea's with regards to position and orientation of where the router sits and how it can best be positioned for maximum coverage.

  • When I copy/paste a paragraph from a PDF doc, it pastes with no spaces between words. How can I fix this? I've searched everywhere for the solution but didn't find anyone had this issue.

    When I copy/paste a paragraph from a PDF doc (onto Facebook status bar, for example) it pastes with no spaces between words.  I.e: "The manhadajugofcoolwaterand offeredmeadrink." How can I fix this? I've searched everywhere for the solution but didn't find anyone had this issue. I'm new to Apple so any help will be much appreciated. Thanks!

    I can't speak about this occurring with FaceBook since I don't use FaceBook, but I see the same type of thing when I copy and pasted from websites. It doesn't always happen and I cannot find any particular set of circumstances under which it occurs or does not occur.
    I am merely responding to let you know that it happens to me as well and I have seen no way to correct it. I'm not so sure that there is a way to correct in in that it may have something to do with how the original text is formatted in the PDF or on the website and how it eventually "fits" into the text field or the area in which it is pasted.

Maybe you are looking for