Question please help as soon as possible if you can-- Applet question

Is there a way to separate a string onto different lines when you draw a string to the applet like there is with escape sequences in a regular application? Thanks

ok my apologies, I'm not great at explaining things...I have a loop to generate and shuffle a deck of cards. The loop also generates a random number which is equal to a certain string value. Here I'll just show you the code...it will be easier that way:
import java.awt.*;
import java.applet.*;
import java.awt.event.*;
import java.util.Random;
import java.lang.*;
public class CardGame extends Applet implements ActionListener {
     Button Deal;
     Button NewGame;
     Button PutDown;
     Button PickUp;
     Color bgColor;
     Color rectColor;
     Image deck;
     MediaTracker mt;
     CheckboxGroup radioGroup;
     Checkbox radio1;
     Checkbox radio2;
     Checkbox radio3;
     Checkbox radio4;
     Checkbox radio5;
     Checkbox radio6;
     Checkbox radio7;
     Checkbox radio8;
//     String[] faceValue = {"ACE", "TWO", "THREE", "FOUR", "FIVE", "SIX", "SEVEN", "EIGHT", "NINE", "TEN", "JACK", "QUEEN", "KING"};
//     String[] suitValue = {"CLUBS", "HEARTS", "SPADES", "DIAMONDS"};
     int rndFaceValue;
     int rndmSuitValue;
     int[] valueArray = new int[52];
     String[] array = new String[52];
     int[] indexArray = new int[8];
     int i;
     int w;
     String card1;
     String card2;
     String card3;
     String card4;
     String card5;
     String card6;
     String card7;
     String card8;
     String cardOnTable;
     String checkRad;
     String removeCard;
     public void init()
          setLayout(null);
          setSize(1000, 600);     
          mt = new MediaTracker(this);
          Deal = new Button("Deal");
          NewGame = new Button("New Game");
          PutDown = new Button("Put Down");
          PickUp = new Button("Pick Up");
          Deal.setBounds(750, 450, 75, 25);
          NewGame.setBounds(750, 475, 75, 25);
          PutDown.setBounds(750, 425, 75, 25);
          PickUp.setBounds(750, 400, 75, 25);
          add(Deal);
          add(NewGame);
          add(PutDown);
          add(PickUp);
          Deal.addActionListener(this);
          NewGame.addActionListener(this);
          PutDown.addActionListener(this);
          PickUp.addActionListener(this);
          PutDown.setEnabled(false);
          PickUp.setEnabled(false);
          radioGroup = new CheckboxGroup();
          radio1 = new Checkbox(" ", radioGroup, false);
          radio2 = new Checkbox(" ", radioGroup, false);
          radio3 = new Checkbox(" ", radioGroup, false);
          radio4 = new Checkbox(" ", radioGroup, false);
          radio5 = new Checkbox(" ", radioGroup, false);
          radio6 = new Checkbox(" ", radioGroup, false);
          radio7 = new Checkbox(" ", radioGroup, false);
          radio8 = new Checkbox(" ", radioGroup, true);
          add(radio1);
          add(radio2);
          add(radio3);
          add(radio4);
          add(radio5);
          add(radio6);
          add(radio7);
          add(radio8);
          radio1.setBounds(143, 525, 10, 10);
          radio2.setBounds(222, 525, 10, 10);
          radio3.setBounds(301, 525, 10, 10);
          radio4.setBounds(380, 525, 10, 10);
          radio5.setBounds(459, 525, 10, 10);
          radio6.setBounds(538, 525, 10, 10);
          radio7.setBounds(617, 525, 10, 10);
          radio8.setBounds(840, 385, 10, 10);
               Random generator = new Random();
          int rndmNum = generator.nextInt(52) + 1;
     //     int[] valueArray = new int[52];
     //     String[] array = new String[52];
     //     int i;
          for(i=0; i<52; i++)
               int nRND = rndmNum;
               boolean valueUsed = false;
               boolean okToGo = false;
               while(valueUsed == false && okToGo == false)
                    for(int x = 0; x < i+1; x++)
                         if (valueArray[x] == nRND)
                              valueUsed = true;
                              x = i;
                    if (valueUsed == true)
                         nRND = generator.nextInt(52) + 1;
                         valueUsed = false;
                    else
                         okToGo = true;
                         valueArray[i] = nRND;
               if (nRND == 1)
                    array[i] = "Ace of Clubs";
               if (nRND == 2)
                    array[i] = "Two of Clubs";
               if (nRND == 3)
                    array[i] = "Three of Clubs";
               if (nRND == 4)
                    array[i] = "Four of Clubs";
               if (nRND == 5)
                    array[i] = "Five of Clubs";
               if (nRND == 6)
                    array[i] = "Six of Clubs";
               if (nRND == 7)
                    array[i] = "Seven of Clubs";
               if (nRND == 8)
                    array[i] = "Eight of Clubs";
               if (nRND == 9)
                    array[i] = "Nine of Clubs";
               if (nRND == 10)
                    array[i] = "Ten of Clubs";
               if (nRND == 11)
                    array[i] = "Jack of Clubs";
               if (nRND == 12)
                    array[i] = "Queen of Clubs";
               if (nRND == 13)
                    array[i] = "King of Clubs";
               if (nRND == 14)
                    array[i] = "Ace of Hearts";
               if (nRND == 15)
                    array[i] = "Two of Hearts";
               if (nRND == 16)
                    array[i] = "Three of Hearts";
               if (nRND == 17)
                    array[i] = "Four of Hearts";
               if (nRND == 18)
                    array[i] = "Five of Hearts";
               if (nRND == 19)
                    array[i] = "Six of Hearts";
               if (nRND == 20)
                    array[i] = "Seven of Hearts";
               if (nRND == 21)
                    array[i] = "Eight of Hearts";
               if (nRND == 22)
                    array[i] = "Nine of Hearts";
               if (nRND == 23)
                    array[i] = "Ten of Hearts";
               if (nRND == 24)
                    array[i] = "Jack of Hearts";
               if (nRND == 25)
                    array[i] = "Queen of Hearts";
               if (nRND == 26)
                    array[i] = "King of Hearts";
               if (nRND == 27)
                    array[i] = "Ace of Spades";
               if (nRND == 28)
                    array[i] = "Two of Spades";
               if (nRND == 29)
                    array[i] = "Three of Spades";
               if (nRND == 30)
                    array[i] = "Four of Spades";
               if (nRND == 31)
                    array[i] = "Five of Spades";
               if (nRND == 32)
                    array[i] = "Six of Spades";
               if (nRND == 33)
                    array[i] = "Seven of Spades";
               if (nRND == 34)
                    array[i] = "Eight of Spades";
               if (nRND == 35)
                    array[i] = "Nine of Spades";
               if (nRND == 36)
                    array[i] = "Ten of Spades";
               if (nRND == 37)
                    array[i] = "Jack of Spades";
               if (nRND == 38)
                    array[i] = "Queen of Spades";
               if (nRND == 39)
                    array[i] = "King of Spades";
               if (nRND == 40)
                    array[i] = "Ace of Diamonds";
               if (nRND == 41)
                    array[i] = "Two of Diamonds";
               if (nRND == 42)
                    array[i] = "Three of Diamonds";
               if (nRND == 43)
                    array[i] = "Four of Diamonds";
               if (nRND == 44)
                    array[i] = "Five of Diamonds";
               if (nRND == 45)
                    array[i] = "Six of Diamonds";
               if (nRND == 46)
                    array[i] = "Seven of Diamonds";
               if (nRND == 47)
                    array[i] = "Eight of Diamonds";
               if (nRND == 48)
                    array[i] = "Nine of Diamonds";
               if (nRND == 49)
                    array[i] = "Ten of Diamonds";
               if (nRND == 50)
                    array[i] = "Jack of Diamonds";
               if (nRND == 51)
                    array[i] = "Queen of Diamonds";
               if (nRND == 52)
                    array[i] = "King of Diamonds";
     public void actionPerformed(ActionEvent evt)
          if(evt.getSource() == Deal)
               card1 = array[0];
               card2 = array[1];
               card3 = array[2];
               card4 = array[3];
               card5 = array[4];
               card6 = array[5];
               card7 = array[6];
               cardOnTable = array[7];
               indexArray[0] = 0;
               indexArray[1] = 1;
               indexArray[2] = 2;
               indexArray[3] = 3;
               indexArray[4] = 4;
               indexArray[5] = 5;
               indexArray[6] = 6;
          //     indexArray[7] = 0;
               w = 8;
               Deal.setEnabled(false);
               PickUp.setEnabled(true);
               repaint();
          if (evt.getSource() == PutDown)
               if(radio1.getState())
                    checkRad = array[indexArray[0]];
                    card1 =" ";
                    cardOnTable = " ";
               else if(radio2.getState())
                    checkRad = array[indexArray[1]];
                    card2 =" ";
                    cardOnTable = " ";
               else if(radio3.getState())
                    checkRad = array[indexArray[2]];
                    card3 =" ";
                    cardOnTable = " ";
               else if(radio4.getState())
                    checkRad = array[indexArray[3]];
                    card4 =" ";
                    cardOnTable = " ";
               else if(radio5.getState())
                    checkRad = array[indexArray[4]];
                    card5 =" ";
                    cardOnTable = " ";
               else if(radio6.getState())
                    checkRad = array[indexArray[5]];
                    card6 =" ";
                    cardOnTable = " ";
               else if(radio7.getState())
                    checkRad = array[indexArray[6]];
                    card7 =" ";
                    cardOnTable = " ";
               repaint();
               PutDown.setEnabled(false);
          if (evt.getSource() == PickUp)
               if(radio8.getState())
                    card8 = array[w];
                    indexArray[0] = w;
                    w = w + 1;
                    repaint();
               PickUp.setEnabled(true);
     public void paint(Graphics g) {
          g.drawString("Card Pending Approval", 780, 250);
          g.drawString("Welcome to Rummy!!", 300, 50 );
          g.drawRect(100, 100, 600, 440);
          g.drawRect(110, 420, 75, 100);
          g.drawRect(190, 420, 75, 100);
          g.drawRect(270, 420, 75, 100);
          g.drawRect(350, 420, 75, 100);
          g.drawRect(430, 420, 75, 100);
          g.drawRect(510, 420, 75, 100);
          g.drawRect(590, 420, 75, 100);
          g.drawRect(110, 120, 75, 100);
          g.drawRect(190, 120, 75, 100);
          g.drawRect(270, 120, 75, 100);
          g.drawRect(350, 120, 75, 100);
          g.drawRect(430, 120, 75, 100);
          g.drawRect(510, 120, 75, 100);
          g.drawRect(590, 120, 75, 100);
          g.drawRect(300, 250, 75, 100);
          g.drawRect(380, 250, 75, 100);
          //pending card
          g.drawRect(810, 280, 75, 100);
          g.drawString(card1, 115, 450);
          g.drawString(card2, 195, 450);
          g.drawString(card3, 275, 450);
          g.drawString(card4, 355, 450);
          g.drawString(card5, 435, 450);
          g.drawString(card6, 515, 450);
          g.drawString(card7, 595, 450);
          g.drawString(cardOnTable, 390, 275);
          g.drawString(card8, 810, 325);
          g.drawString(checkRad, 390, 275);
now i know this is probably written in the worst of ways, but I'm only in HS just learning so please don't mind my awful coding. :)
Also in the code there is a bracketed i in the loop where it converts the number to a string for all 52 of them i dont know why it did not copy them.
Message was edited by:
mphamma8

Similar Messages

  • How to download a .txt file correctly. Please help as soon as possible!

    Hi everybody,
    I need to implement download that prompts the user to save a txt file.
    If I use "attachment" in response.setHeader, my IE 5.50 crashes after downloading 4 to 6 files consecutively.
    I tried to change the response.setHeader to "inline" and the response.setContentType to "application/zip" or "application/UNKNOWN", and although it works in IE 5.50, my IE 5.00 never prompts asking to save the file, it always opend the file into the browser window, and I need a prompt.
    I saw many questions related with this problem in this forum, but none that answered accurately to this problem.
    Please help as soon as possible, I dont have much time to do this.
    Thank you very much.

    Thank you gypsy617 for your reply, but it still does not work!
    I made all the changes to
    1)res.setContentType("application/x-download");
    2)res.setHeader("Content-Disposition", "attachment; filename=" + filename);
    3)OutputStream out = res.getOutputStream();
    4)returnFile(filename, out);
    5) and i sent the file content as bytes
    But the real problem is regarding the "attachment" option !!!
    In my application, in the same page, there are a lot of links that users can download, each one a link that calls a action. It works well for the first downloaded file, for the second, ..., and then, when we try to download the file number 4 or 5, IE says that there is a problem and it must close (and it asks us to send a report - something like "Exception Information Code:0xc0000005 Flags:0x00000000 Record:0x0000000000000000 Address:0x0000000077a7710a").
    I know that the problem is the "attachment" because if I choose "inline", IE never crashes. But i really need a Save As dialog, the txt files cannot be openned into the browser window, so i cant use inline.
    Any idea?
    Thank you.

  • I have installed Grease Monkey plugin using unsafeWindow.Engine.init() function. It says unsafeWindow.Engine undefined. Please help as soon as possible.

    I have installed Grease Monkey plugin using unsafeWindow.Engine.init() function. It says unsafeWindow.Engine undefined. Please help as soon as possible.

    I have installed Grease Monkey plugin using unsafeWindow.Engine.init() function. It says unsafeWindow.Engine undefined. Please help as soon as possible.

  • Hi Rstor work for the iPhone 5 remains 4 hours Standby Please please help as soon as possible and thank you

    Hi Rstor work for the iPhone 5 remains 4 hours Standby Please please help as soon as possible and thank you

    These are user-to-user forums, you are not talking to Apple here - I've asked the hosts to remove your phone number from your post.
    You can contact iTunes support via email via this page and ask them why the message is appearing : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

  • Can vmware run on Boot Camp?Please Help as soon as possible

    I recently installed vista ultimate through vmware, but is it possible in any way to boot this vista OS I installed through vmware fusion through boot camp?
    Please help as soon as someone finds a certain answer.
    Thanks

    Running Windows (Vista or XP) is somewhat slower in virtualization than in BootCamp. If this is an important issue for you - and particularly if you are going to be running programs that benefit from fast screen updates - then you want BootCamp. If you need BootCamp then install it and afterwards install VMWare Fusion and use the BootCamp installation rather than a virtualized disk.
    If you are satisfied with the performance of virtualization there is no benefit from having BootCamp installed in terms of running VMWare. This is a disadvantage though - you have to shut down, you cannot save an instance, at least with version 1. I haven't downloaded version 2 to see if this has changed. It is much faster to resume an instance than to restart Windows and then your applications.

  • My itunes will not open at all. it occasionally will open but when i plug my iphone into it the program freezes and crashes. please help as soon as possible

    my itunes will not open at all. it occasionally will open but when i plug my iphone into it the program freezes and crashes. please help as soon as possible

    i think i might have a solution... i have windows vista and after i installed to latest itunes update everytime i tried to open it it would freeze. I tried everything, including uninstalling itunes and all of its components and reinstalled it numerous times. So i went to the itunes folder in my folders, not on itunes, and i deleted my itunes library and playlists. After that it worked just fine, all of my music was deleted but luckily i had my files saved elsewhere.
    I hope this helped! I know its frustrating and APPLE/ITUNES NEED TO FIX THE PROBLEM!!!!

  • PLEASE HELP AS SOON AS POSSIBLE! Why did my word document become/turn into a Microsoft Messenger file?

    I need to open an incredibly important document... but somehow, and I have absolutely not a clue as to why, it "became" a Microsoft Messenger file. In other words, I click on the document, and Messenger opens up. What the heck happened and how do I recover this file?!?!!? I don't even have a Messenger ID, so I am not sure if I should make one. Please help. Thank you very much in advance.

    Hi,
    You have the desktop version of Reader/Acrobat DC but posted the question in the wrong forum.  This forum (All Communities > Reader/Acrobat DC for mobile) is for the mobile version.
    On your Windows computer, please try opening the PDF document in other non-Adobe PDF viewers to see if the picture turns gray.  You can even drag and drop your PDF document to Google Chrome (web browser) to open it.
    If most of the PDF viewers that you tried show the gray box, you can conclude that the PDF document (generated by Microsoft Word 2013) itself is faulty.  It means that Microsoft Word 2013 has bug(s) in converting Word to PDF.
    I'd recommend visiting the Microsoft Word 2013 Support site to get answers.
    https://support.microsoft.com/en-us/product/office/word-2013
    Hope this helps.

  • Is my iPod ruined? Please help as soon as possible!

    Help! Earlier today I loaded a few songs from my iPod and then did not do anything with it for a couple of hours. I went to listen to it and my iPod would not start. I plugged it into my computer but my computer will not say it is plugged it. My iPod screen will not turn on. I have tried to reset my iPod and the Apple Logo will not appear. I have tried to Restore but it says "Please Plug in iPod". The Hold Button is off, also. What is wrong with my iPod? I have combed through the Help boards but they just say to do the 5 "F's". What should I do? Is it ruined? It's not even seven months old! Please help!!

    I upgraded to an Ipod after my shuffle had to be returned and NOW I am a little frustrated with this latest hiccup. So, after diconnecting my ipod from a PC, after charging it, there was all of a sudden no "Menu"- the ipod could play music but I couldn't see anything on the screen. Yes, I tried to reset (hold off and on, etc) then reinstall software and then restore to original settings. Thought this would solve the problem but NOW I cannot transfer the songs from itunes to my ipod. Every time I do I get an error message that says: "The Ipod cannot update. The disc could not be read from or written to." SO I have no music and I cannot see anything on the screen. Nada.
    Help, I love my Ipod!

  • WLAN problem, please help as soon as possible!

    I have a problem with my new nokia n8. i was going to connect my phone to my home network and enter the wlan code. i entered wrong code and i can't change it. please help! i have tried to restart the phone, looking through the menues, and even reset the phone, nothing worked, HELP ME!!!!!
    Solved!
    Go to Solution.

    Check if you find this helpful...

  • A emergent problem, please help as soon as possible!!!!

    I have a list, and I want to add it to my GUI JTextArea. could you
    the list:
    for (int i = 0; i < goods.length; i++)
    if (goods.getName().length() >= 8)
    System.out.println("\t\t" + goods[i].getName() + "\t" + goods[i].getQuantity() + "\t" + goods[i].getSellPrice() + "\t" + goods[i].getBuyPrice());
    else
    System.out.println("\t\t" + goods[i].getName() + "\t\t" + goods[i].getQuantity() + "\t" + goods[i].getSellPrice() + "\t" + goods[i].getBuyPrice());
    this loop will print a list, now I need to put this list in my JTextArea, what method should I use to do it.
    Thank you very much

    you should have a JTextArea on your GUI I suppose?
    Are you using one class for your program?
    private JTextArea txt = new JTextArea();
    for (int i = 0; i < goods.length; i++) {
      if (goods.getName().length() > = 8) {
        System.out.println("stuff");
        JTextArea.append("stuff");
      else {
        System.out.println("other stuff");
        JTextArea.append("other stuff");
    }correct me if I'm wrong but I don't think this is what you are looking for.
    Please post your code or send the .java file(s) to [email protected]
    Maybe then, I'll understand.

  • Please Help as soon as possible

    I just downloaded the new i pod updater but it wont allow me to open it it keeps saying open up set up exe I put in the disk that came with it but nothing happened.

    Try to delete that copy of iPod Updater and download a new copy.

  • Hello I have a problem in calculating the apple id Can you help me please   I forgot answer security questions for your account How can knowledge Please help Please reply as soon as possible   I can not buy from camels Store And the rest of the account ba

    Hello
    I have a problem in calculating the apple id Can you help me please
    I forgot answer security questions for your account How can knowledge
    Please help
    Please reply as soon as possible
    I can not buy from camels Store
    And the rest of the account balance  $25
    Message was edited by: lingo azam

    I think you mean App Store.
    Rescue email address and how to reset Apple ID security questions

  • How to create a apple ID without credit card needed i want a none credit card.. Please help me... Thank you hope u replied as soon as possible.. Thank you again..

    How to create a apple ID without credit card needed i want a none credit card.. Please help me... Thank you hope u replied as soon as possible.. Thank you again..

    Hello, chard2say22. 
    Thank you for visiting Apple Support Communities.
    To create an Apple ID without a credit or debit card, there is a specific series of steps that have to be processed in order to allow the payment to be set as none on creation of the account.
    Creating an iTunes Store, App Store, iBooks Store, and Mac App Store account without a credit card
    http://support.apple.com/kb/HT2534
    If the specific steps have not been processed, a credit or debit card will be required to complete the setup of the account.
    However, it can be removed and payment method changed to none as long as there is not an outstanding balance.  At this point an iTunes gift card can be used as form of payment.
    iTunes Store: Changing account information
    http://support.apple.com/kb/ht1918
    Cheers,
    Jason H.

  • The account is invalid to access, please help me to connect to a new right email address. This is urgent for the pre-order, please respond as soon as possible.

    My email account is invalid to access, please help me to connect to a new right email address. This is urgent for the pre-order process, please respond as soon as possible.
    <Email Edited by Host>

    This is a user-to-user technical support forum. No one here can help you.
    Try
    https://expresslane.apple.com

  • Need Indesign saving help as soon as possible. Please.

    So i've been working on an assignment for Uni and when i've gone to file and then save, nothing happens, the file window disappears as usual but not box opens up, i tried save as, save a copy and export with the same result. Thinking something must've been wrong with the File menu i've triedf the shortcuts with the same result. I've been working on this all morning and i really need to save the work rather than just lose it. If anyone has anything i can try please i really would appreciate it.
    Ashiie Imperfect

    Nothing happens when you try a Save As and you can continue to work? That's not good. ID should be waiting for you to pick a name and location for the save and should not respond until that has been finished. We used to see a lot of reports where ID would hang waiting, but no dialog was visible, but this sounds different.
    FIrst, what version of ID and is it patched to the latest release, and what OS?
    If the file is still open you MIGHT be able to save it in more or less the state it's in by pulling the plug (either literally or by force quitting [mac] or using task manager [windows] to shut down ID). there should be some sorrt of recovery file saved that will reopen aoutomatically if it is not corrupt next time ID launches. DO NOT SHUT DOWN the computer if you are n a university machine that uses a security feature that resets the computer to a known state at reboot -- you'll lose the recovery file. If you lose stuff you save to the hard drive overnite, that would be the type of machine you don't want to shut down.
    BIG WARNING: there is no guarantee the file will be preserved if you do the above, and it may be lost permanently. That said, if you can't save it now, and you close ID, it's also going to be lost, so the risky method may be better than nothing as a last resort.
    Things to try:
    Export the file to .inx or .idml (depending on your verion of ID) and save that on an external drive of some sort so you can open on another machine. Probably not possible if you can't do a save, but you never know.
    Before closing ID try to do a save As and minmize all the windows you can find. Maybe the dialog is hidden behind something else (from your description, though, this is unlikley as you don't indicate that ID is waiting).
    If this is Windows 7 or Vista,  right click on the desktop and choose Persoanlize, then click Display in the lower left corner and finally, set the font size to 100% (see InDesign tools and panels don't respond to mouse clicks (Windows 7/Vista). I would do this before killing ID and hope it works, but it might not help while ID is already open. It also may not apply. If it does apply, but doesn't work while ID is open you can try again after forcing ID to close.
    Replace the preferences. This cannot be done with ID open, so you have to make the leap of faith that something will be saved in recovery to try this. See Replace Your Preferences for directions.
    It occurs to me that it wouldn't hurt to make a copy, if you can, of the IinDesign Recovery folder on some external media before you do anything else. The recovery folder should be inthe same location as the InDesign SavedData file which is listed inthe link above. I have never tried this, but if you are able to copy the recovery folder you might be able to log onto another machine, start ID, close ID,  paste the content of the old recovery folder into the one on the new machine and restart ID. If you're lucky ID will see the old recovery data and open the file.
    Good luck.

Maybe you are looking for

  • After updating my ipad to iOS 7.0.3 the group pages in my facebook do not open. Can you help

    After updating my ipad to iOS 7.0.3 the group pages in my facebook do not open. Can you help

  • Creating a hyperlink over an image

    iWeb is my first foray into the web creation world. I created a "photo page" (File>New Page>Photos) where I used the photos there to link to other photo pages on my site. The caption below each photo provides the link to the corresponding photo page.

  • How to maximize the MDI window in web form.

    Dear all, i am new to jdeveloper. i am using form 10g there is a problem which is not handle by me in forms. i want to maximize the MDI window in web form. can jdeveloper solve my problem. i am new please anyone tell me step by step. thanks Muhammad

  • ExecuteWithParams and URL parameter

    I am implementing a two pages scenario where the first page allows the user to select the Department ID from a menu, which gets passed to the second page via URL. The second page allows the user to refine the search on the employees within the select

  • How do I fix the Adobe Flash plugin? It crashed.

    I was on www.sparkpeople.com and I saw the sad face associated with the phrase stating that the Adobe Flash plugin has crashed. I submitted a crash report, but what if anything can I do in the meantime to help this issue get resolved?