Applet keeps failing, please help!

Why won't this code run as an applet in a web page?
my HTML code goes as follows (very simple just want it to show the applet)
<html>
<body>
<applet code="Main.class" width="450" height="450">
</applet>
</body>
</html>
import javax.swing.*;
import java.applet.Applet;
import java.awt.Color;
import java.awt.event.*;
public class Main extends JPanel
                        implements ActionListener {
    protected JButton b1, b2; //Add 3 JButtons to be used throughout the whole class
    protected JLabel l1, l2, l3; //add 3 labels to be used throughout the class
    public Main() {
        b1 = new JButton("vote Yes"); //Sets b1 (from protected) to Vote No
        b1.setMnemonic(KeyEvent.VK_D);
        b1.setActionCommand("yes");
        b2 = new JButton("Vote No"); //Sets b2 (from protected) to Vote No
        b2.setMnemonic(KeyEvent.VK_E);
        b2.setActionCommand("no");
        l1 = new JLabel("0");
        l2 = new JLabel("0");
        l3 = new JLabel("Votes (yes/no) :");
        //Listen for actions on buttons 1  and  2 (under).
        b1.addActionListener(this);
        b2.addActionListener(this);
        b1.setToolTipText("Click this button to vote yes.");
        b2.setToolTipText("Click this button to vote no.");
        //Adds the buttons and labels to the container (similar to the content in javax.swing that i posted earlier).
        add(b1);
        add(b2);
        add(l3);
        add(l1);
        add(l2);
    public void actionPerformed(ActionEvent e) {
        if ("yes".equals(e.getActionCommand())) {
             l1.setText("1");
             b1.setEnabled(false);
             b2.setEnabled(false);
             System.out.println("Thankyou for Voting!");
        } else if ("no".equals(e.getActionCommand())) {
            l2.setText("1");
            b2.setEnabled(false);
            b1.setEnabled(false);
     * Creates the GUI that the user will interact with.
     * the first block sets up the window
     * the second block adds a new content pane
     * the third block sets the frame to visible, and packs the frame.
    private static void createAndShowGUI() {
         //block 1
        JFrame frame = new JFrame("ButtonDemo");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        //block 2
        Main newContentPane = new Main();
        newContentPane.setOpaque(true);
        frame.setContentPane(newContentPane);
        //block 3
        frame.pack();
        frame.setVisible(true);
    public class main extends Applet {
          * This runs everything, this is the MAIN method
          * here is where you add you're "Create And Show GUI" method to run the GUI.
            public void run() {
                createAndShowGUI(); //Create And Show GUI Method
    }

I'd suggest:
Move createAndShowGUI into the "main" class. Rename the method "main" with the argument list "String[] argv", that is, make it a real main method.
Rename the "main" class AppWrapper. That's what it is, and having two classes whose names differ only in case is stupid. Get rid of the run() method. It actually does nothing as it is now.
Rename the Main class to something that expresses what it actually does.
Move the AppWrapper to a new, top-level class. Correct indentation while you're at it.
Decide whether you want an Applet or a JApplet. The rest of this assumes you want a JApplet.
Stop importing Applet. Start importing JApplet.
Write a new class called AppletWrapper. Make this class extend JApplet.
Change your HTML to use the class AppletWrapper.
Make your AppetWrapper instantiate the Main class (or whatever you've renamed it to), and add it to itself. You can do this in the constructor, or preferably in the init() method.
I think that'll be sufficient.

Similar Messages

  • HT1267 I have a big problem regarding my iphone4 it wont start up and it keeps vibrating, please help me fix it. its been vibrating since 2 pm until now 7pm here in Philippines :(

    I have a big problem regarding my iphone4 it wont start up and it keeps vibrating, please help me fix it. its been vibrating since 2 pm until now 7pm here in Philippines

    What program did you use to fix the internal hard drive? What repairs did it report making? More crucially, if repairs were reported, did you re-run the utility until it reported no problems found? It's possible for one set of problems with a drive to mask others.
    If you have about 5GB or so free space on the internal hard drive, you can use your OS X Install disc to perform an Archive and Install to recover from the failed Software Update. When the computer restarts, download and run the OS X Update Combo 10.4.11 (Universal). When the Mac restarts after that, run Software Update. During all this, make sure nothing interrupts or shuts down the Mac! Note that the first start after each of these updates will take significantly longer than subsequent starts, so be very patient.
    How did you back up your internal drive to the external one? Did you just drag things over in the Finder, or did you use a utility such as SuperDuper! or CarbonCopyCloner? Does the external HD show up as a bootable volume in System Preferences > Startup Disk, or using Startup Manager?

  • HT201210 hey my iphone software died  and everytime i restore it ,it fails please help me

    hey my iphone software died and every time i restore it , it fails please help me

    i get an erorr telling me the iphone could not be restored
    State the exact error message, including any numbers.

  • I need some help with my java game using applets, CAN SOMEBODY PLEASE HELP

    Hi,
    I am in the process of creating a RPG program using Java. I am not very experienced with java, however the problem i am currently facing is something i can't seem to figure out. I would like to draw a simple grid where a character (indicated by a filled circle) moves around this grid collecting items (indicated by a red rectangle). When the character moves on top of the grid with the item, i would like it to disappear. Right now i am not worrying about the fact that the item will reappear after the character moves away again, because sometimes, when the character moves over the item, nothing happens/another item disappears. i have been at this for 4 days and still cannot figure out what is goign on. can somebody please help me? it would be most appreciated.
    Thanks
    PS if i needed to send you my code, how do i do it?

    Thank you for replying.
    The thing is, I am taking java as a course, and it is necessary for me to start off this way (this is for my summative evaluation). i agree with you on the fact, however, that i should go in small steps. i have been doing that until this point, and my frustration caused me to jump around randomly for an answer. I also think that it may just be a bug, but i have no clue as to how to fix it, as i need to show my teacher at least a part of what i was doing by sometime next week. Here is my code for anybody willing to go through it:
    // The "Keys3" class.
    import java.applet.*;
    import java.awt.*;
    import java.awt.Event;
    import java.awt.Font;
    import java.awt.Color;
    import java.applet.AudioClip;
    public class Keys3 extends java.applet.Applet
        char currkey;
        int currx, curry, yint, xint;
        int itmval [] = new int [5],
            locval [] = new int [5],
            tempx [] = new int [5], tempy [] = new int [5],
            tot = 0, score = 0;
        boolean check = true;
        AudioClip bgSound, bgSound2;
        AudioClip hit;
        private Image offscreenImage;
        private Graphics offscreen;     //initializing variables for double buffering
        public void init ()  //DONE
            bgSound = getAudioClip (getCodeBase (), "sound2_works.au");
            hit = getAudioClip (getCodeBase (), "ah_works.au");
            if (bgSound != null)
                bgSound.loop ();
            currx = 162;
            curry = 68;
            setBackground (Color.white);
            for (int count = 0 ; count < 5 ; count++)
                itmval [count] = (int) (Math.random () * 5) + 1;
                locval [count] = (int) (Math.random () * 25) + 1;
            requestFocus ();
        public void paint (Graphics g)  //DONE
            resize (350, 270);
            drawgrid (g);
            if (check = true)
                pickitems (g);
                drawitems (g);
            g.setColor (Color.darkGray);
            g.fillOval (currx, curry, 25, 25);
            if (currkey != 0)
                g.setColor (Color.darkGray);
                g.fillOval (currx, curry, 25, 25);
            if (collcheck () != true)
                collision (g);
            else
                drawitems (g);
        } // paint method
        public void update (Graphics g)  //uses the double buffering method to overwrite the original
                                         //screen with another copy to reduce flickering
            if (offscreenImage == null)
                offscreenImage = createImage (this.getSize ().width, this.getSize ().height);
                offscreen = offscreenImage.getGraphics ();
            } //what to do if there is no offscreenImage copy of the original screen
            //draws the backgroudn colour of the offscreen
            offscreen.setColor (getBackground ());
            offscreen.fillRect (0, 0, this.getSize ().width, this.getSize ().height);
            //draws the foreground colour of the offscreen
            offscreen.setColor (getForeground ());
            paint (offscreen);
            //draws the offscreen image onto the main screen
            g.drawImage (offscreenImage, 0, 0, this);
        public boolean keyDown (Event evt, int key)  //DONE
            switch (key)
                case Event.DOWN:
                    curry += 46;
                    if (curry >= 252)
                        curry -= 46;
                        if (hit != null)
                            hit.play ();
                    break;
                case Event.UP:
                    curry -= 46;
                    if (curry <= 0)
                        curry += 46;
                        if (hit != null)
                            hit.play ();
                    break;
                case Event.LEFT:
                    currx -= 66;
                    if (currx <= 0)
                        currx += 66;
                        if (hit != null)
                            hit.play ();
                    break;
                case Event.RIGHT:
                    currx += 66;
                    if (currx >= 360)
                        currx -= 66;
                        if (hit != null)
                            hit.play ();
                    break;
                default:
                    currkey = (char) key;
            repaint ();
            return true;
        public boolean collcheck ()  //DONE
            if (((currx == tempx [0]) && (curry == tempy [0])) || ((currx == tempx [1]) && (curry == tempy [1])) || ((currx == tempx [2]) && (curry == tempy [2])) || ((currx == tempx [3]) && (curry == tempy [3])) || ((currx == tempx [4]) && (curry == tempy [4])))
                return false;
            else
                return true;
        public void collision (Graphics g)
            drawgrid (g);
            for (int count = 0 ; count < 5 ; count++)
                if ((currx == tempx [count]) && (curry == tempy [count]))
                    g.setColor (Color.darkGray);
                    g.fillOval (currx, curry, 25, 25);
                else if ((currx != tempx [count]) && (curry != tempy [count]))
                    g.setColor (Color.red);
                    g.fillRect (tempx [count], tempy [count], 25, 25);
        public void drawitems (Graphics g)
            for (int count = 0 ; count < 5 ; count++)
                g.setColor (Color.red);
                g.fillRect (tempx [count], tempy [count], 25, 25);
        public void pickitems (Graphics g)
            check = false;
            for (int count = 0 ; count < 5 ; count++)
                if (locval [count] <= 5)
                    tempy [count] = 22;
                else if (locval [count] <= 10)
                    tempy [count] = 68;
                else if (locval [count] <= 15)
                    tempy [count] = 114;
                else if (locval [count] <= 20)
                    tempy [count] = 160;
                else if (locval [count] <= 25)
                    tempy [count] = 206; //this determines the y-position of the item to be placed
                if (locval [count] % 5 == 0)
                    tempx [count] = 294;
                else if ((locval [count] == 1) || (locval [count] == 6) || (locval [count] == 11) || (locval [count] == 16) || (locval [count] == 21))
                    tempx [count] = 30;
                else if ((locval [count] == 2) || (locval [count] == 7) || (locval [count] == 12) || (locval [count] == 17) || (locval [count] == 22))
                    tempx [count] = 96;
                else if ((locval [count] == 3) || (locval [count] == 8) || (locval [count] == 13) || (locval [count] == 18) || (locval [count] == 23))
                    tempx [count] = 162;
                else if ((locval [count] == 4) || (locval [count] == 9) || (locval [count] == 14) || (locval [count] == 19) || (locval [count] == 24))
                    tempx [count] = 228;
        public void drawgrid (Graphics g)  //DONE
            g.drawRect (10, 10, 330, 230); //draws the outer rectangular border
            int wi = 10; //width of one square on the board
            int hi = 10; //height of one square on the board
            for (int height = 1 ; height <= 5 ; height++)
                for (int row = 1 ; row <= 5 ; row++)
                    if (((height % 2 == 1) && (row % 2 == 1)) || ((height % 2 == 0) && (row % 2 == 0)))
                        g.setColor (Color.gray);
                        g.fillRect (wi, hi, 66, 46);
                    else /*if (((height % 2 == 0) && (row % 2 == 1)) || ((height % 2 == 0) && (row % 2 == 0)))*/
                        g.setColor (Color.lightGray);
                        g.drawRect (wi, hi, 66, 46);
                        g.setColor (Color.lightGray);
                        g.drawRect (wi, hi, 66, 46); //drawn twice to make a shadow effect
                    wi += 66;
                wi = 10;
                hi += 46;
            } //this draws the basic outline of the game screen
    } // Keys3 class

  • Actiontec GT701C DSL light keeps flashing please help

    I use to have the WIFI router from verizon but the wifi range was not strong enough for certain items in my home... in addition the items could not even find the network on wifi. i replaced it with a Actiontec GT701C so i could use my old wireless router that was strong enough to support my whole home .. But know when i connect my DSL line to the New modem the GT701c i can not access the internet .. i Could get to the configure screen but other than that the DSL Light keeps flashing any suggestions.. i have rebooted the modem and tryed diffrent phone line and phone jacks in my home please help !!!

    Does your older modem connect still? If so, could you tell us which modem it is so that we could help you obtain the Transceiver Statistics from it? It's possible the ActionTec could either be defective or it could be sensitive to noise on the line if the signal isn't the greatest.
    ========
    The first to bring me 1Gbps Fiber for $30/m wins!

  • Internal software error cpp, line 214 - creating subtitles failed / please help

    Hello,
    it a pretty toutgh expierience trying to create my first dvd with Adobe,
    I have to hand it over this Friday, in some 12 hours,
    and there is another issue I have to cope with:
    1. I have the project ready, I check for errors and there are no.
    2. My project has 2 two timelines (movie and soundtrack) and subtitles in 7 languages. All already transcoded.
    3. I press build DVD.ISO and here comes the wonderful Adobe greeting: Internal software error. File Spec: cpp, line 214. I clik ok and the other window appears happilly informing me that creating subtitles failed. And creating of thesee subtitles was the only reason I started using Adobe Premiere Pro and Encore
    Could you please help me, I am going slightly crazy with it. How can I resolve this issue. I tried to look at the forum, but did not find the solution. Neither @ google.
    Best regards,
    Michal

    Thanks a lot Stan !
    I did two timelines, since I wanted to give the possibility to listen to the music track, without watching the movie. No idea if this could be done in one timeline (I am just starting my Adobe adventure .
    Coming to the point, I fixed it. Here is how:
    1. While building DVD the message was: Internal software error. File Spec: cpp, line 214. and creating subtitles failed.
    2. I tried to make really big spaces between subtitles, as well as change the fonts, the kerings, etc. - to no avail.
    3. I deleted all the subtitle text (marking it with the mouse and pressing delete), but leaving all the subtitle tracks, since I did not want to link them all again to the subtitle menu buttons.
    4. For each subtitle track I imported the subtitle text once again.
    And it worked! So simple if one already knows how to do it.
    Thanks for help anyway, you and others at this forum helped me a lot during the whole project (missing Encore library, baddriver.txt to mention the most critical issues).
    Best regards,
    Michal

  • InDesign Keeps Crashing - Please Help

    Please help. It has been a nightmare since we installed CS4. InDesign CS3 never crashed. But since we upgraded to CS4 it has continuously crashed.
    For some reason I keep getting the error "network connection lost for the C:\file.indd or the file was modified by another process". And then the system crashes. It usually happens as we are placing or link pictures. Occasionally it will happen as we are exporting to a PDF.
    We store all of our pictures and artwork on a Netgear file server. I don't think that is the culprit because CS4 and CS3 worked fine. Does anyone have any solution to this problem.
    I checked Adobe's website and they are aware of this error but only post a solution for a mac. We use PC's here, so upgrading Leopard will not help.
    http://kb.adobe.com/selfservice/viewContent.do?externalId=331822
    Any ideas?
    Thanks

    > We store all of our pictures and artwork on a Netgear file server. I
    > don't think that is the culprit because CS4 and CS3 worked fine.
    If you really think (despite the error message) that the network is not
    part of the problem here, test your theory by eliminating it. Move your
    files to your local hard disk and see if the crashes continue.
    Kenneth Benson
    Pegasus Type, Inc.
    www.pegtype.com

  • Imovie 10 wont let me share my videos over 3-4 minutes , youtube is ok but when i try a video of about 90  minutes i hit share and after about 10 mins i get the message box "video rendering error: -50 share failed please help!

    I uploaded the new Imovie 10 and cannot share videos,after about 10 mins I get the message "Share failed Video rendering error :-50", please help!

    I am getting the same problem. Downloaded Maverick and the new iMovie 10.0.1 and It will only upload 10 minutes of a 65 minute video then I get the rendering error 50 each time tried to export to desktop, to thumbdrive, to youtube. No luck.  any suggestions Apple?

  • Default dictionary keeps reverting, please help!!!

    I am running Firefox 9 on Windows 7. I use the spell check very often and I love it. However, I have changed the default dictionary to UK English but every time I close firefox it changes it back to US English. I have even resorted to deleting all other English dictionaries choices but alas it keeps resorting back. I know this sounds silly, but I have to use the UK English for personal and professional reasons. I am using a UK laptop with all default settings set to UK English. Please help so effing annoying!

    See:
    *http://kb.mozillazine.org/Preferences_not_saved
    *https://support.mozilla.org/kb/Preferences+are+not+saved
    You can uninstall the en-US version and install the en-GB version instead.
    The en-GB version doesn't come with a dictionary, so you need to install the the en-GB dictionary.
    You can look here for dictionaries:
    * https://addons.mozilla.org/firefox/language-tools/
    * http://kb.mozillazine.org/Spell_checking
    * http://kb.mozillazine.org/Dictionaries
    * https://support.mozilla.org/kb/Using+the+spell+checker

  • OS X Yosemite fails: Please help

    I tried to install the new OS X Yosemite from the App store and it fails to get downloaded completely.
    Error:
    The application could not be downloaded.
    An error occurred while running scripts from the package “pdl8741854432473810418.pkg”.
    I tried to download from the website which links me back to the App store and still gives the same error. It downloads smoothly for some time and stops suddenly giving above error. Please help.

    Try using a different network to download it.

  • Installation failed (Please help!)

    I am very new to JAVA and downloaded the Java 1.4 bundle for a class project, and on the very last screen of the setup, I got the message "Installation failed."
    This is the installation log I got:
    errormessage: INFO - unpacked jar file: activation.jar.pack
    INFO - unpacked jar file: appserv-assemblytool.jar.pack
    INFO - unpacked jar file: appserv-cmp.jar.pack
    INFO - unpacked jar file: appserv-ext.jar.pack
    INFO - unpacked jar file: appserv-jstl.jar.pack
    INFO - unpacked jar file: appserv-rt1.jar.pack
    INFO - unpacked jar file: appserv-rt2.jar.pack
    INFO - unpacked jar file: appserv-rt3.jar.pack
    INFO - unpacked jar file: appserv-rt4.jar.pack
    INFO - unpacked jar file: appserv-tags.jar.pack
    INFO - unpacked jar file: commons-launcher.jar.pack
    INFO - unpacked jar file: commons-logging.jar.pack
    INFO - unpacked jar file: deployhelp.jar.pack
    INFO - unpacked jar file: j2ee-svc.jar.pack
    INFO - unpacked jar file: j2ee.jar.pack
    INFO - unpacked jar file: jax-qname.jar.pack
    INFO - unpacked jar file: jaxr-api.jar.pack
    INFO - unpacked jar file: jaxr-impl.jar.pack
    INFO - unpacked jar file: jaxrpc-api.jar.pack
    INFO - unpacked jar file: jaxrpc-impl.jar.pack
    INFO - unpacked jar file: jsf-api.jar.pack
    INFO - unpacked jar file: jsf-impl.jar.pack
    INFO - unpacked jar file: mail.jar.pack
    INFO - unpacked jar file: relaxngDatatype.jar.pack
    INFO - unpacked jar file: saaj-api.jar.pack
    INFO - unpacked jar file: saaj-impl.jar.pack
    INFO - unpacked jar file: sun-appserv-ant.jar.pack
    INFO - unpacked jar file: xsdlib.jar.pack
    INFO - unpacked jar file: sun-as-jsr88-dm.jar.pack
    INFO - number of merged jar entries: 2675
    INFO - number of merged jar entries: 1426
    INFO - number of merged jar entries: 2459
    INFO - number of merged jar entries: 1169
    INFO - Start core server configuration.
    ERROR - default domain creation returned following exception:
    CLI130 Could not create domain, domain1
    INFO - End core server configuration.
    INFO - Start samples configuration.
    INFO - End samples configuration.
    INFO - Start Sun Java System Message Queue configuration
    INFO - End Sun Java System Message Queue configuration
    INFO - Start PointBase configuration
    INFO - Java home location configured
    INFO - End PointBase configuration
    Can someone tell me what went wrong and how to correct this error? SUN technical support couldn't/wouldn't answer my question when I contacted them directly. Please help!

    You downloaded the wrong thing.
    You want the J2SE v 1.4.2_09 SDK (not the J2EE or the JRE packages)
    That version isn't the most recent. The most recent is the JDK 5.0 Update 5 (this is a later version of 1.4.2_09 - Sun just made some name changes.)

  • IPHONE APP STORE KEEPS CRASHING PLEASE HELP

    ok so i was jailbroken then i unjailbroke and since then appstore keeps crashing right when i open it.. i have restored 3 times, rebooted, jailbroke and unjailbroke, and right now im erasing all data and stuff through settings, PLEASE HELP ME

    Since you said you jailbroke your phone no one here can help you. It is against the terms of service here. Sorry but you should never have jailbroken your phone in the first place.

  • My ipod keeps freezing please help

    my 5th generation video ipod keeps freezing up while im listening to music then starts playing lik 1 or 2 minutes later iv reset and restored it but it keeps on doing it please help me

    - Try a reset. Nothing is lost
    iOS: Troubleshooting applications purchased from the App Store
    - If still problem, see it iTunes nows sees the iPod so you can restore the iPod.
    - Next see if placing the iPOd in recovery mode will allow a restore. For recovry mode:
    iPhone and iPod touch: Unable to update or restore
    - Last, try DFU mode and restore.
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings

  • Time Machine Restore Fails PLEASE HELP!!!

    Hello,
    I originally installed Leopard as an Archive and Install. However, I was having performance issues and decided it would be best to make a backup with Time Machine and then bring everything back over with Migration Assistant. Now during the process of backup installation my computer snags up at the end on an iWork 08 file. However, I cant delete the file from my backup disc because of insufficent privlages (the exact error message is something to the effect of "the file cannot be deleted) Now, this wouldnt be a problem to restore everything 1 at a time through time machine prefrences>choose backup dic except for the fact when I try to bring my software back over that came bundled with the computer when I originally bought it. Specificaly im talking about Final Cut Pro HD: it ask for a product key that I dont have. Is there a way to regain admin privelages or a way to delete that particular file. Also, I have found my itunes music library but I cant find where my Movies,RIngtones, TV shows and Podcast are located in the FIle Hierarchy. If I need to manually bring my library over I dont want to lose purchased content. Where are these files located? If anyone can help me with these issues I would GREATLY appreciate it. I know it was dumb to do in the first place but I expected it to work and thus far its to no evail. I have a ton of programs installed that I have no idea where my install cd's are or product keys. PLEASE HELP!!!

    Erik,
    Thank you so much for all the detailed help. I figured out the solution. To delete any file permanently in Time Machine you have to do this. Open up Time Machine Window. Select a backup other than the most recent named "today" (or something like that). Then select the file. In the upper Time Machine Window there is a cog. Select the cog drop down menu and you get some options. Click Delete permanently from all backups. This is the ONLY way other than fudging with the root to permanently delete anything from a time machine backup. Otherwise, you get an error message about how back up items cant be edited (same if you try to drag it in the trash). Then, I had to do what you said and actually use Utility under the Leopard Install Disc instead of Restore from backup within leopard setup or Migration Assistant after setup. This actually erases the current Volume and fully restores the previous volume. Im not sure why that file was holding things up but this seems like the right fix. Now, my fingers are crossed but I think this will fix the problem. Again, thank you so much erik for the help.
    *Note to anyone viewing this thread*
    To restore from a time machine backup use Utility under the Leopard Install Disc and select a Time Machine Backup to restore. NOT Migration Assistant after Install and not the function after the install process where you choose the backup with your name,apps et. ( basically Migration assistant again but in leopard). You must use Utility from the Menu bar after the Leopard install disc restores.
    To PERMANENTLY delete an item from ALL time machine backup-- Within the time Machine application Window select a back up other than the most previous one (why this is I do not know). Highlight the document and in the upper menu bar select the "cog" looking icon. The menu then drops down. Select *DELETE PERMANENTLY FROM ALL BACKUPS*. You cant do it through finder. You cant right click delete. You cant drag it in the trash.
    I hope this thread helps anyone if they have a similar problem.
    Once again thanks to Erik for all the detailed help!!!!
    Message was edited by: John Milan
    Message was edited by: John Milan

  • Kernel Panic, Keeps happening, please help me.

    Everytime i close my macbook pro and let it set for a while, when i open it up, it takes me to the restart screen because of a kernel panic. Someone, or Apple, PLEASE help. Information is below
    KERNEL PANIC INFO:
    Interval Since Last Panic Report:  12111 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    FCFCFD58-5C67-6570-2281-E5DFA9FC2B0F
    Thu Aug  1 19:09:03 2013
    panic(cpu 0 caller 0xffffff800a4b8655): Kernel trap at 0xffffff7f8a9bb786, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0x0000000000000000, CR3: 0x000000000ce9d000, CR4: 0x00000000001606e0
    RAX: 0xffffff8016f34800, RBX: 0xffffff80756d5000, RCX: 0x0000000000000002, RDX: 0x0000000000000004
    RSP: 0xffffff808a98bdc0, RBP: 0xffffff808a98bde0, RSI: 0x0000000000000002, RDI: 0x0000000000000000
    R8:  0xffffff8016f5d000, R9:  0x00000000000003ff, R10: 0xffffffffffffffff, R11: 0x00000000ffffffff
    R12: 0xffffff8016efea00, R13: 0x0000000000000002, R14: 0x0000000000000004, R15: 0x0000000000000002
    RFL: 0x0000000000010246, RIP: 0xffffff7f8a9bb786, CS:  0x0000000000000008, SS:  0x0000000000000000
    Fault CR2: 0x0000000000000000, Error code: 0x0000000000000000, Fault CPU: 0x0
    Backtrace (CPU 0), Frame : Return Address
    0xffffff808a98ba60 : 0xffffff800a41d626
    0xffffff808a98bad0 : 0xffffff800a4b8655
    0xffffff808a98bca0 : 0xffffff800a4ce17d
    0xffffff808a98bcc0 : 0xffffff7f8a9bb786
    0xffffff808a98bde0 : 0xffffff800a83a02c
    0xffffff808a98be30 : 0xffffff800a8364f1
    0xffffff808a98be80 : 0xffffff800a841694
    0xffffff808a98bec0 : 0xffffff800a835ccb
    0xffffff808a98bef0 : 0xffffff800a84138d
    0xffffff808a98bf30 : 0xffffff800a84708a
    0xffffff808a98bf80 : 0xffffff800a8471b9
    0xffffff808a98bfb0 : 0xffffff800a4b3137
          Kernel Extensions in backtrace:
             com.apple.iokit.IOUSBFamily(5.6)[065077C5-A49E-3C52-BDC0-60169E293563]@0xffffff 7f8a99b000->0xffffff7f8a9f6fff
                dependency: com.apple.iokit.IOPCIFamily(2.7.3)[1D668879-BEF8-3C58-ABFE-FAC6B3E9A292]@0xffff ff7f8a972000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    12E55
    Kernel version:
    Darwin Kernel Version 12.4.0: Wed May  1 17:57:12 PDT 2013; root:xnu-2050.24.15~1/RELEASE_X86_64
    Kernel UUID: 896CB1E3-AB79-3DF1-B595-549DFFDF3D36
    Kernel slide:     0x000000000a200000
    Kernel text base: 0xffffff800a400000
    System model name: MacBookPro9,1 (Mac-4B7AC7E43945597E)
    System uptime in nanoseconds: 12216607264644
    last loaded kext at 9418119174944: com.apple.driver.AppleUSBCDC          4.1.23 (addr 0xffffff7f8c7b2000, size 16384)
    last unloaded kext at 9478168782497: com.apple.driver.AppleUSBCDC          4.1.23 (addr 0xffffff7f8c7b2000, size 12288)
    loaded kexts:
    com.Symantec.kext.SAVAPComm          12.1
    com.silex.driver.sxuptp          1.10.0
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.iokit.IOBluetoothSerialManager          4.1.4f2
    com.apple.driver.AudioAUUC          1.60
    com.apple.driver.AGPM          100.12.87
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.X86PlatformShim          1.0.0
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleHDA          2.3.7fc4
    com.apple.driver.AppleMikeyDriver          2.3.7fc4
    com.apple.driver.AppleUpstreamUserClient          3.5.10
    com.apple.GeForce          8.1.2
    com.apple.driver.AppleMCCSControl          1.1.11
    com.apple.driver.AppleSMCLMU          2.0.3d0
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport          4.1.4f2
    com.apple.driver.AppleIntelHD4000Graphics          8.1.2
    com.apple.driver.AppleIntelFramebufferCapri          8.1.2
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.ApplePolicyControl          3.4.5
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.driver.AppleMuxControl          3.4.5
    com.apple.driver.AppleLPC          1.6.0
    com.apple.driver.SMCMotionSensor          3.0.3d1
    com.apple.driver.AppleUSBTCButtons          237.1
    com.apple.driver.AppleUSBTCKeyboard          237.1
    com.apple.driver.AppleIRController          320.15
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          34
    com.apple.iokit.SCSITaskUserClient          3.5.5
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.3.1
    com.apple.driver.AirPort.Brcm4331          615.20.17
    com.apple.driver.AppleUSBHub          5.5.5
    com.apple.driver.AppleSDXC          1.4.2
    com.apple.iokit.AppleBCM5701Ethernet          3.6.1b4
    com.apple.driver.AppleFWOHCI          4.9.6
    com.apple.driver.AppleAHCIPort          2.5.2
    com.apple.driver.AppleUSBEHCI          5.5.0
    com.apple.driver.AppleUSBXHCI          5.6.0
    com.apple.driver.AppleEFINVRAM          1.7
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleACPIButtons          1.7
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.8
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.7
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          196.0.0
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2.1
    com.apple.driver.AppleIntelCPUPowerManagement          196.0.0
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.kext.triggers          1.0
    com.apple.driver.DspFuncLib          2.3.7fc4
    com.apple.iokit.IOAudioFamily          1.8.9fc11
    com.apple.kext.OSvKernDSPLib          1.6
    com.apple.nvidia.gk100hal          8.1.2
    com.apple.NVDAResman          8.1.2
    com.apple.driver.AppleSMBusController          1.0.11d0
    com.apple.driver.X86PlatformPlugin          1.0.0
    com.apple.iokit.IOSurface          86.0.4
    com.apple.iokit.IOBluetoothFamily          4.1.4f2
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport          4.1.4f2
    com.apple.driver.AppleHDAController          2.3.7fc4
    com.apple.iokit.IOHDAFamily          2.3.7fc4
    com.apple.iokit.IOAcceleratorFamily          74.5.1
    com.apple.driver.AppleSMBusPCI          1.0.11d0
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.driver.AppleGraphicsControl          3.4.5
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.iokit.IONDRVSupport          2.3.7
    com.apple.iokit.IOGraphicsFamily          2.3.7
    com.apple.driver.IOPlatformPluginFamily          5.3.0d51
    com.apple.driver.AppleSMC          3.1.4d2
    com.apple.driver.AppleUSBMultitouch          237.3
    com.apple.iokit.IOUSBHIDDriver          5.2.5
    com.apple.driver.AppleThunderboltDPInAdapter          1.8.9
    com.apple.driver.AppleThunderboltDPAdapterFamily          1.8.9
    com.apple.driver.AppleThunderboltPCIDownAdapter          1.2.6
    com.apple.driver.AppleUSBMergeNub          5.5.5
    com.apple.driver.AppleUSBComposite          5.2.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.5.5
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOAHCISerialATAPI          2.5.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.5
    com.apple.driver.AppleThunderboltNHI          1.7.8
    com.apple.iokit.IOThunderboltFamily          2.4.0
    com.apple.iokit.IO80211Family          530.4
    com.apple.iokit.IOEthernetAVBController          1.0.2b1
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IOUSBUserClient          5.5.5
    com.apple.iokit.IOAHCIFamily          2.3.1
    com.apple.iokit.IOUSBFamily          5.6.0
    com.apple.driver.AppleEFIRuntime          1.7
    com.apple.iokit.IOHIDFamily          1.8.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220.3
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          345
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.driver.AppleKeyStore          28.21
    com.apple.driver.AppleACPIPlatform          1.7
    com.apple.iokit.IOPCIFamily          2.7.3
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    System Profile:
    Model: MacBookPro9,1, BootROM MBP91.00D3.B08, 4 processors, Intel Core i7, 2.3 GHz, 4 GB, SMC 2.1f173
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In, 384 MB
    Graphics: NVIDIA GeForce GT 650M, NVIDIA GeForce GT 650M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1600 MHz, 0x02FE, 0x45424A3230554638424455302D474E2D4620
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1600 MHz, 0x02FE, 0x45424A3230554638424455302D474E2D4620
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xF5), Broadcom BCM43xx 1.0 (5.106.98.100.17)
    Bluetooth: Version 4.1.4f2 12041, 2 service, 11 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: APPLE HDD HTS547550A9E384, 500.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-8A8
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1a100000 / 2
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0x1a110000 / 3
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1d100000 / 2
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0x1d180000 / 3
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0252, 0x1d183000 / 6
    USB Device: BRCM20702 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x1d181000 / 5
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821d, 0x1d181300 / 9
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x1d182000 / 4
    USB Device: SCR35xx USB Smart Card Reader, 0x04e6  (Shuttle Technology), 0x5410, 0x14200000 / 2
    USB Device: 2.4G Wireless Mouse, 0x04f3  (Elan Microelectronics Corportation), 0x02f4, 0x14100000 / 1
    MACBOOK INFO:
    Model Name:          MacBook Pro
      Model Identifier:          MacBookPro9,1
      Processor Name:          Intel Core i7
      Processor Speed:          2.3 GHz
      Number of Processors:          1
      Total Number of Cores:          4
      L2 Cache (per Core):          256 KB
      L3 Cache:          6 MB
      Memory:          4 GB
      Boot ROM Version:          MBP91.00D3.B08
      SMC Version (system):          2.1f173
      Serial Number (system):          C02JK5JDDV33
      Hardware UUID:          EF029C12-A20E-550C-BD37-C7AB3725D461
      Sudden Motion Sensor:
      State:          Enabled

    I removed it but i am still having this issue. new kernal panic says:
    Interval Since Last Panic Report:  23952 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    FCFCFD58-5C67-6570-2281-E5DFA9FC2B0F
    Sun Aug  4 10:08:48 2013
    panic(cpu 0 caller 0xffffff800bcb8655): Kernel trap at 0xffffff7f8c1bb786, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0x0000000000000000, CR3: 0x000000000e69d000, CR4: 0x00000000001606e0
    RAX: 0xffffff8018819a00, RBX: 0xffffff8076d97000, RCX: 0x0000000000000002, RDX: 0x0000000000000004
    RSP: 0xffffff808bdabdc0, RBP: 0xffffff808bdabde0, RSI: 0x0000000000000002, RDI: 0x0000000000000000
    R8:  0xffffff801883c800, R9:  0x00000000000003ff, R10: 0xffffffffffffffff, R11: 0x00000000ffffffff
    R12: 0xffffff80187f3c00, R13: 0x0000000000000002, R14: 0x0000000000000004, R15: 0x0000000000000002
    RFL: 0x0000000000010246, RIP: 0xffffff7f8c1bb786, CS:  0x0000000000000008, SS:  0x0000000000000000
    Fault CR2: 0x0000000000000000, Error code: 0x0000000000000000, Fault CPU: 0x0
    Backtrace (CPU 0), Frame : Return Address
    0xffffff808bdaba60 : 0xffffff800bc1d626
    0xffffff808bdabad0 : 0xffffff800bcb8655
    0xffffff808bdabca0 : 0xffffff800bcce17d
    0xffffff808bdabcc0 : 0xffffff7f8c1bb786
    0xffffff808bdabde0 : 0xffffff800c03a02c
    0xffffff808bdabe30 : 0xffffff800c0364f1
    0xffffff808bdabe80 : 0xffffff800c041694
    0xffffff808bdabec0 : 0xffffff800c035ccb
    0xffffff808bdabef0 : 0xffffff800c04138d
    0xffffff808bdabf30 : 0xffffff800c04708a
    0xffffff808bdabf80 : 0xffffff800c0471b9
    0xffffff808bdabfb0 : 0xffffff800bcb3137
          Kernel Extensions in backtrace:
             com.apple.iokit.IOUSBFamily(5.6)[065077C5-A49E-3C52-BDC0-60169E293563]@0xffffff 7f8c19b000->0xffffff7f8c1f6fff
                dependency: com.apple.iokit.IOPCIFamily(2.7.3)[1D668879-BEF8-3C58-ABFE-FAC6B3E9A292]@0xffff ff7f8c172000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    12E55
    Kernel version:
    Darwin Kernel Version 12.4.0: Wed May  1 17:57:12 PDT 2013; root:xnu-2050.24.15~1/RELEASE_X86_64
    Kernel UUID: 896CB1E3-AB79-3DF1-B595-549DFFDF3D36
    Kernel slide:     0x000000000ba00000
    Kernel text base: 0xffffff800bc00000
    System model name: MacBookPro9,1 (Mac-4B7AC7E43945597E)
    System uptime in nanoseconds: 24073721836846
    last loaded kext at 23107050322297: com.apple.driver.AppleUSBCDC          4.1.23 (addr 0xffffff7f8dfb5000, size 16384)
    last unloaded kext at 23167080569930: com.apple.driver.AppleUSBCDC          4.1.23 (addr 0xffffff7f8dfb5000, size 12288)
    loaded kexts:
    com.silex.driver.sxuptp          1.10.0
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.driver.AudioAUUC          1.60
    com.apple.iokit.IOBluetoothSerialManager          4.1.4f2
    com.apple.driver.AGPM          100.12.87
    com.apple.driver.X86PlatformShim          1.0.0
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleHDA          2.3.7fc4
    com.apple.driver.AppleUpstreamUserClient          3.5.10
    com.apple.filesystems.autofs          3.0
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.GeForce          8.1.2
    com.apple.driver.AppleMikeyDriver          2.3.7fc4
    com.apple.driver.AppleIntelHD4000Graphics          8.1.2
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport          4.1.4f2
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleLPC          1.6.0
    com.apple.driver.AppleMuxControl          3.4.5
    com.apple.driver.SMCMotionSensor          3.0.3d1
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.driver.AppleIntelFramebufferCapri          8.1.2
    com.apple.driver.ApplePolicyControl          3.4.5
    com.apple.driver.AppleSMCLMU          2.0.3d0
    com.apple.driver.AppleMCCSControl          1.1.11
    com.apple.driver.AppleUSBTCButtons          237.1
    com.apple.driver.AppleIRController          320.15
    com.apple.driver.AppleUSBTCKeyboard          237.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          34
    com.apple.iokit.SCSITaskUserClient          3.5.5
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.3.1
    com.apple.driver.AppleUSBHub          5.5.5
    com.apple.driver.AppleSDXC          1.4.2
    com.apple.iokit.AppleBCM5701Ethernet          3.6.1b4
    com.apple.driver.AppleFWOHCI          4.9.6
    com.apple.driver.AirPort.Brcm4331          615.20.17
    com.apple.driver.AppleAHCIPort          2.5.2
    com.apple.driver.AppleUSBEHCI          5.5.0
    com.apple.driver.AppleUSBXHCI          5.6.0
    com.apple.driver.AppleEFINVRAM          1.7
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleACPIButtons          1.7
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.8
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.7
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          196.0.0
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2.1
    com.apple.driver.AppleIntelCPUPowerManagement          196.0.0
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.driver.DspFuncLib          2.3.7fc4
    com.apple.iokit.IOAudioFamily          1.8.9fc11
    com.apple.kext.OSvKernDSPLib          1.6
    com.apple.kext.triggers          1.0
    com.apple.nvidia.gk100hal          8.1.2
    com.apple.NVDAResman          8.1.2
    com.apple.iokit.IOSurface          86.0.4
    com.apple.iokit.IOAcceleratorFamily          74.5.1
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport          4.1.4f2
    com.apple.iokit.IOBluetoothFamily          4.1.4f2
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.driver.AppleHDAController          2.3.7fc4
    com.apple.iokit.IOHDAFamily          2.3.7fc4
    com.apple.driver.AppleSMBusPCI          1.0.11d0
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.driver.AppleGraphicsControl          3.4.5
    com.apple.iokit.IONDRVSupport          2.3.7
    com.apple.driver.AppleSMBusController          1.0.11d0
    com.apple.iokit.IOGraphicsFamily          2.3.7
    com.apple.driver.X86PlatformPlugin          1.0.0
    com.apple.driver.AppleSMC          3.1.4d2
    com.apple.driver.IOPlatformPluginFamily          5.3.0d51
    com.apple.driver.AppleThunderboltDPInAdapter          1.8.9
    com.apple.driver.AppleThunderboltDPAdapterFamily          1.8.9
    com.apple.driver.AppleThunderboltPCIDownAdapter          1.2.6
    com.apple.driver.AppleUSBMultitouch          237.3
    com.apple.iokit.IOUSBHIDDriver          5.2.5
    com.apple.driver.AppleUSBMergeNub          5.5.5
    com.apple.driver.AppleUSBComposite          5.2.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.5.5
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOAHCISerialATAPI          2.5.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.5
    com.apple.driver.AppleThunderboltNHI          1.7.8
    com.apple.iokit.IOThunderboltFamily          2.4.0
    com.apple.iokit.IOEthernetAVBController          1.0.2b1
    com.apple.iokit.IOUSBUserClient          5.5.5
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IO80211Family          530.4
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.iokit.IOAHCIFamily          2.3.1
    com.apple.iokit.IOUSBFamily          5.6.0
    com.apple.driver.AppleEFIRuntime          1.7
    com.apple.iokit.IOHIDFamily          1.8.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220.3
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          345
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.driver.AppleKeyStore          28.21
    com.apple.driver.AppleACPIPlatform          1.7
    com.apple.iokit.IOPCIFamily          2.7.3
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    Model: MacBookPro9,1, BootROM MBP91.00D3.B08, 4 processors, Intel Core i7, 2.3 GHz, 4 GB, SMC 2.1f173
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In, 384 MB
    Graphics: NVIDIA GeForce GT 650M, NVIDIA GeForce GT 650M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1600 MHz, 0x02FE, 0x45424A3230554638424455302D474E2D4620
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1600 MHz, 0x02FE, 0x45424A3230554638424455302D474E2D4620
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xF5), Broadcom BCM43xx 1.0 (5.106.98.100.17)
    Bluetooth: Version 4.1.4f2 12041, 2 service, 11 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: APPLE HDD HTS547550A9E384, 500.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-8A8
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1a100000 / 2
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0x1a110000 / 3
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1d100000 / 2
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0x1d180000 / 3
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0252, 0x1d183000 / 6
    USB Device: BRCM20702 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x1d181000 / 5
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821d, 0x1d181300 / 7
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x1d182000 / 4
    USB Device: 2.4G Wireless Mouse, 0x04f3  (Elan Microelectronics Corportation), 0x02f4, 0x14100000 / 1

Maybe you are looking for

  • Macbook Pro 13" late 2011 constantly making noise

    Lately my Macbook pro started making this constant whirring noise as if my fan was running constantly. The thing is though, even if I don't have any apps up and running, the noise is still there. It's usually pretty quiet but I can still hear it and

  • Problem in data sources for transaction data through flat file

    Hello Friends, While creating the data sources for transaction data through flat file, I am getting the following error "Error 'The argument '1519,05' cannot be interpreted as anumber' while assigning character to application structure" Message no. R

  • [Help] Get Text Between words!

    Hi, I wanna to Get Text Between words, I'm tring to something like this , can anyone help please ? <?php $data = "<a target='_blank' href='http://www.mysite'>Engineering</a><des>Description</des>          <a target='_blank' href='http://www.mysite'>A

  • Problem with air and .exe

    Hello  everyone! I have a very big problem! has developed a game in flash with as3 CS4. is divided into 3 file .fla 1.fla 2.fla and 3.fla 1 call 2 , 2 call 3 uses an XML file to  store the scores. When i public the file  .air, when i install the .air

  • HT201269 how do i get my music from my computer onto my ipod touch

    How do i get all of my music from my computer to my ipod touch ? i did it with my ipad but i cant remember how.