Knight's Tour (works but I can't get the correct grid to print)

Hi all I have written a recursive Knight's tour method.
My trouble is when I print out the final grid it won't show the last position as being filled.
This is where I print out my grid. and it looks like this:
3 6 11 8
0 9 4 1
5 2 7 10
true
//count = number of squares in the grid = done
          else if (count == (rows * cols)){
               for(int i = 0; i < rows; i++){
                    for(int j = 0; j < cols; j++){
                         System.out.print(" " + grid[i][j]);
               System.out.println("");
               return true;
          }This is the complete class
import java.util.Scanner;
public class KnightProblem{
     private int [][] grid;                         //arrays for the grid
     private int rows, cols;                         //size of grid
     private int startx, starty;                    //starting loc.
     private int count = 1;                         //keeps track of counted squares.
     Scanner sc = new Scanner(System.in);     //keyboard input.
     //setter to get grid size, and starting loc.
     public void setGrid(){
          System.out.print("Enter the number of rows: ");
          rows = sc.nextInt();
          System.out.print("Enter the number of columns: ");
          cols = sc.nextInt();
          grid = new int[rows][cols];
          System.out.print("Enter starting location, rows space column: ");
          startx = sc.nextInt();
          starty = sc.nextInt();
               if(startx < 0 || startx >= rows || starty < 0 ||
                         starty >= cols){ //check start loc falls inside grid
                    System.out.println("Your starting location does not fall inside the grid" +
                                   " please try again.");
                    System.exit(0);
          System.out.print("Your " + rows + " by " + cols + " grid has been created, ");
          System.out.print("with a starting location of " + "(" + startx + "," +
                              " " + starty + ")");
          System.out.println();
          for(int i = 0; i < rows; i++){
               for(int j = 0; j < cols; j++){
                    grid[i][j] = 0;
     //method to try and fill the grid
     public boolean isFill(){
          return isFill(startx, starty, count);               //call recursive method.
     //recursive method to fill the grid
     private boolean isFill(int x, int y, int count){
          //base case current loc outside grid
          if (x < 0 || x >= rows || y < 0 || y >= cols){
               //System.out.println("1st if " + count);
               return false;
          //current location already has a number
          else if(grid[x][y] > 0){
               return false;
          //count = number of squares in the grid = done
          else if (count == (rows * cols)){
               for(int i = 0; i < rows; i++){
                    for(int j = 0; j < cols; j++){
                         System.out.print(" " + grid[i][j]);
               System.out.println("");
               return true;
          else{
               grid[x][y] = count;          //set Count to current loc.
               count++;
               //if there is an empty space from one of the current neighbors then there
               //is an open space from current loc.
               if (isFill(x-2, y-1, count) || isFill(x-2, y+1, count) || isFill(x-1, y+2, count)
                     || isFill(x+1, y+2, count) || isFill(x+2, y+1, count) || isFill(x+2, y-1, count)
                     || isFill(x+1, y-2, count) || isFill(x-1, y-2, count)){
                    return true;
               else{
                    grid[x][y] = 0;
                    return false;
}     tester code
public class KnightTest{
     public static void main (String[] args){
          KnightProblem knight = new KnightProblem();
          knight.setGrid();
          System.out.println(knight.isFill());
}full output:
Enter the number of rows: 3
Enter the number of columns: 4
Enter starting location, rows space column: 1 3
Your 3 by 4 grid has been created, with a starting location of (1, 3)
3 6 11 8
0 9 4 1
5 2 7 10
true
Could anyone explain why that 0 isn't a 12?

I figured it out after a little thinking!
else if (count == (rows * cols)){
               grid[x][y] = count; // new code since last post.
               for(int i = 0; i < rows; i++){
                    for(int j = 0; j < cols; j++){
                         System.out.print(" " + grid[i][j]);
               System.out.println("");
               return true;Before I wasn't giving it a chance to update the count one last time.

Similar Messages

  • My screen is going black and the phone acts as though it is on and everything is working but I can't get the screen to change from being black... Any thoughts?

    I have had my Droid 2 for about a year and a half now. I had no problems with it until a few months ago when that update came out.  All the sudden the phone would freeze up then all of a sudden yesterday I was texting a friend and had the keyboard open then the screen went completely black.  I tried rebooting the phone...pulling the battery... and then doing a hard reset...  Nothing works. I cant even really do a hard reset because the screen is black.  Any thoughts?

    http://macmost.com/ipad-video-screen-capture.html
    http://www.tuaw.com/2011/04/26/how-to-capturing-ipad-video-with-audio-narration/
    http://www.youtube.com/watch?v=8nb6-ixKiOY

  • I Sorted but I am trying to get the correct Month to print

    {noformat}I am creating a program that requires me to get the highest number and lowest number in a month.I have sorted the Array into a 1 dimesional Array of [12]. Here is my issue How do I get the Highest and lowes number reported while How can I get the correct Month to print? I keep getting Jan and Dec obviously since they are the first and last month.
    I am not sure how to do a sort that will get me the proper month.
    I am creating a program that requires me to chose the highest number and lowest number of the 12 months calculated. I created a seperate sorting array. Currently these number are in the indexed memory location. This Array of numbers is not Initialized! I am just showing what is currently in memory.
    double total [12]={114,93.10,89.30,92.90,98.40,111.00,102.40,105.40,81.40,82.60,80.90,113.40} .
    //intialized
    String[] months={"January","February", "May","June","July","August","September","October","November",
    "December"};
    Here is my issue How do I get the Highest and lowest number printed that also corresponds with the correct month? I have a String of months. I just dont understand how I can do this. My highest numner is 114 which is January and my Lowest 80.89 is November. Is there another part of the swapping I am missing?
    Here is my code. Thank you for your help. I am having issues getting proper code formatting.
    import java.util.Scanner;
    import java.io.*;
    import java.util.*;
    import java.util.Arrays;
    public class MonthRain
        public static void main(String[] args) throws IOException
                    String[] months={"January","February", "March","April","May","June","July","August","September","October","November",
                    "December"};
                    final double [] [] rain = {
                    { 10.1,8.1, 6.8, 4.2, 2.1, 1.8, 0.2, 0.3, 1.1, 2.3, 6.1, 10.4,6.6,5.5, 3.8, 2.8, 1.8, 0.2, 0.0, 0.0, 0.0, 1.3, 2.6, 4.2,2.3, 6.1, 7.4,6.6, 5.5, 3.8},
                    { 9.2, 9.8, 4.4, 3.3, 2.2, 0.8, 0.4, 0.0, 0.6, 1.7, 4.3, 5.2,6.6,5.5, 3.8, 2.8, 1.8, 0.2, 0.0, 0.0, 0.0, 1.3, 2.6, 4.2,2.3, 6.1, 7.4,6.6 },
                    { 6.6, 5.5, 3.8, 2.8, 1.8, 0.2, 0.0, 0.0, 0.0, 1.3, 2.6, 4.2,6.6,5.5, 3.8, 2.8, 1.8, 0.2, 0.0, 0.0, 0.0, 1.3, 2.6, 4.2,2.3, 6.1, 7.4,6.6, 5.5, 3.8},
                    { 4.3, 4.3, 4.3, 3.0, 2.0, 1.2, 0.2, 0.2, 0.4, 2.4, 3.5, 6.6,6.6,5.5, 3.8, 2.8, 1.8, 0.2, 0.0, 0.0, 0.0, 1.3, 2.6, 4.2,2.3, 6.1, 7.4,6.6, 5.5, 3.8},
                    { 8.5, 8.2, 1.2, 1.6, 2.4, 0.0, 5.2, 0.9, 0.3, 0.9, 1.4, 7.3,6.6,5.5, 3.8, 2.8, 1.8, 0.2, 0.0, 0.0, 0.0, 1.3, 2.6, 4.2,2.3, 6.1, 7.4,6.6, 5.5, 3.8},
                    { 10.1,8.1, 6.8, 4.2, 2.1, 1.8, 0.2, 0.3, 1.1, 2.3, 6.1, 7.4,6.6,5.5, 3.8, 2.8, 1.8, 0.2, 0.0, 0.0, 0.0, 1.3, 2.6, 4.2,2.3, 6.1, 7.4,6.6, 5.5, 3.8},
                    { 9.2, 9.8, 4.4, 3.3, 2.2, 0.8, 0.4, 0.0, 0.6, 1.7, 4.3, 5.2,6.6,5.5, 3.8, 2.8, 1.8, 0.2, 0.0, 0.0, 0.0, 1.3, 2.6, 4.2,2.3, 6.1, 7.4,6.6, 5.5, 3.8},
                    { 9.2, 9.8, 7.4, 3.3, 2.2, 0.8, 0.4, 0.0, 0.6, 1.7, 4.3, 5.2,6.6,5.5, 3.8, 2.8, 1.8, 0.2, 0.0, 0.0, 0.0, 1.3, 2.6, 4.2,2.3, 6.1, 7.4,6.6, 5.5, 3.8},
                    { 6.6, 2.5, 3.8, 2.8, 1.8, 0.2, 0.0, 0.0, 0.1, 1.3, 2.6, 4.2,3.6,5.5, 3.8, 2.8, 1.8, 0.2, 0.0, 0.0, 0.0, 1.3, 2.6, 4.2,2.3, 4.1, 7.4,6.6, 5.5, 3.8},
                    { 2.6, 5.5, 3.8, 2.8, 1.8, 0.2, 0.0, 0.0, 0.3, 1.3, 2.6, 3.2,6.6,5.5, 1.8, 2.8, 1.8, 0.2, 0.0, 0.0, 0.0, 1.3, 2.6, 4.2,2.3, 6.1, 7.4,6.6, 5.5, 3.8},
                    { 4.3, 1.3, 4.3, 3.0, 2.0, 1.2, 0.2, 0.2, 0.4, 2.4, 2.5, 3.6,6.6,2.5, 1.8, 2.8, 1.8, 0.2, 0.0, 0.0, 0.0, 1.3, 2.6, 4.2,2.3, 6.1, 7.4,6.6, 5.5, 3.8},
                    { 8.5, 8.2, 1.2, 1.6, 2.4, 7.0, 5.2, 8.9, 0.3, 0.9, 1.4, 7.3,6.6,5.5, 3.8, 2.8, 1.8, 0.2, 0.0, 0.0, 0.0, 1.3, 2.6, 4.2,2.3, 6.1, 7.4,6.6, 5.5, 3.8}};
                   double [] total=new double [12];
                   double total_rain=0;
                   double average=0;
                   int col=0;
                   int row=0;
                   int i;
                                  for( row=0;row<rain.length;row++){
                                       total_rain=0;
                                       for( col=0;col<rain[row].length;col++){
                                          total_rain+=rain[row][col];
                                               average=total_rain/(col+1);
                                               total[row]=total_rain;
                                       System.out.printf("%9s Total Rain= %4.2f\n ",months[row],total[row]);
                                       System.out.printf("%9s Montly Average= %4.2f\n ",months[row],average);
                                       System.out.printf("\n");
                                               for(i=0;i<total.length;i++){
                                                 System.out.printf("Total Rain=%.2f\n",total);
                                                 double minValue;
                                                                          int sort,index,minIndex;
                                                                          for(sort=0;sort<total.length-1;sort++)
                                                                               minIndex=sort;
                                                                               minValue=total[sort];
                                                                               for(index=sort+1;index<total.length;index++)
                                                                                    if(total[index]<minValue)
                                                                                         minValue=total[index];
                                                                                         minIndex=index;
                                                                          total[minIndex]=total[sort];
                                                                          total[sort]=minValue;
                                                                     System.out.printf("High Rain=%s and Low Month=%s\n",total[sort],total[0]);
                                                                     System.out.printf("\n");
    Edited by: happyfootsie on Dec 6, 2009 1:12 AM
    tried to fix formatting                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    happyfootsie wrote:
    Here is my issue How do I get the Highest and lowes number reported while How can I get the correct Month to print?OK, apart from the fact that you've dumped everything in one place as opposed to breaking up your logic, the main thing I can see is that you have no inherent mapping between the values that you're storing and the months that they apply to.
    That's all fine while you're just pulling in the values (I assume that each block of 12 is listed from January to December), but the second you do a sort, you lose the fact that '114.93', which is probably now in last place (being the highest) actually referred to the month of January.
    First suggestion: break it up into methods (a couple of suggestions would be 'getAverages() and 'sort()', but I'm sure there's more).
    Second suggestion: Have a look at the Java Collections framework (you might want to start here). It has a shed-load of classes for doing exactly what you want.
    Winston

  • Hello, so today I realized that my iPhone with iOS 6 is frozen on the music. I can get back to the home screen but I can't get the music player to work because its frozen on the w's and will not respond to touch. I would be grateful for any help on this.

    Hello, so today I realized that my iPhone with iOS 6 is frozen on the music. I can get back to the home screen but I can't get the music player to work because its frozen on the w's and will not respond to touch. I would be grateful for any help on this.

    Hi deamayfield,
    Thanks for visiting Apple Support Communities.
    If your Music app is unresponsive, try restarting/resetting your iPhone:
    iOS: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/ht1430
    Best,
    Jeremy

  • My iphone 4s is working but I can not see the screen.

    my iphone 4s is working but I can not see the screen. What is going on?

    Possibly backlight died, if you look at it closely in bright light can you see a "Shadow" of the screen image?
    First, back up your phone
    http://support.apple.com/kb/HT1766
    Then, restore the OS from scratch
    http://support.apple.com/kb/HT1414
    If that doesn't work, you'll need to have the phone serviced
    http://support.apple.com/kb/index?page=servicefaq&geo=United_States&product=ipho ne

  • Photoshop CS5 broke down twice. I deinstalled and than reinstalled. Now CS5 works but I can't install the updates. "An error occurred, try it again later." But it's not said what error occurred.

    Photoshop CS5 broke down twice. I deinstalled and than reinstalled. Now CS5 works but I can't install the updates. "An error occurred, try it again later." But it's not said what error occurred.
    Thank you for your help.
    Walter

    Thank you very much for your help. Now, I was able to install the update (Adobe Photoshop 12.0.4 update for Adobe Photoshop CS5, Mac). But I couldn’t mark the answer as correct. I didn’t find the „correct“ button.   
    Kind regards
    Walter
    Am 25.12.2014 um 16:06 schrieb station_two:
    Photoshop CS5 broke down twice. I deinstalled and than reinstalled. Now CS5 works but I can't install the updates. "An error occurred, try it again later." But it's not said what error occurred.
    created by station_two in Photoshop General Discussion - View the full discussion
    OK, here's the Windows version of the update:
    Adobe - Photoshop : For Windows : Adobe Photoshop 12.0.4 update for Adobe Photoshop CS5
    and for Mac:
    Adobe - Photoshop : For Macintosh : Adobe Photoshop 12.0.4 update for Adobe Photoshop CS5
    Of course, ignore the idiotic recommendation that appears there to try to use Help > Updates.  We already know that doesn't work.
    If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7043416#7043416 and clicking ‘Correct’ below the answer
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7043416#7043416
    To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"
    Start a new discussion in Photoshop General Discussion by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

  • I bought Smart Photo Converter which do,s not work but i can't get any refund , i have contacted the company but no reply and that was two weeks ago...so do you talk to someone at the App store?

    I bought Smart Photo Converter which does not work but i can't get any refund , i have contacted the company but no reply and that was two weeks ago...so do you talk to someone at the App store?

    Mac App Store Support -
    http://www.apple.com/support/mac/app-store/

  • My buttons and screen work, but I can't activate the screen to see what I'm doing.  Any idea what is wrong?

    My buttons and screen work, but I can't activate the screen to see what I'm doing.  This is after water damage.  Any idea what is wrong?  I'm not sure what to fix..
    I know the screen works because when it first turned on I saw the apple logo and then the screen.  If I hold the home and power button, I see the apple logo when it resets.  Then it goes blank again.
    I can hear when I get a call and pick up, and I can stop the sound and/or decline the call with the power button and side buttons.  It also still vibrates.  I'm confused - if the screen works, the buttons work, it vibrates, makes sound, and the touchscreen feature also works...  what is wrong for me to fix?  Why can't I see anything?!
    I appreciate any help anybody has to offer!!!

    I apologize for the confusion.  This was literally the only option on Apple's "Contact Us" section that I was able to access.  I assumed that Apple's clear intent to have me go here instead of speaking with someone in live time, and the fact this is on the Apple website, meant I could get some advice...  Both over the phone and online they require information I need to see my screen to provide so those are not options.  I tried to bypass this when calling through Skype.  Some lady who didn't know what was going on, who I waited a good while to speak with, put me on hold; I gave up after 30minutes of waiting to speak to somebody again.
    I've stumbled upon a few tricks to help me get through this problem, but I'm at a loss.  I need this phone to work until late December.  I need more tricks.  So yes, it's worth understanding.  Knowing what is going on will let me Google it and work with it, if nobody here is willing to help...
    And yes, it IS a glitchy phone.  It has been a glitchy phone for a long time.  Long before this. But completely unrelated issues.  I was assuming this wasn't just a glitch but something maybe somebody could help me understand.

  • I have connected my new Macbook Air to my existing Samsung large external monitor with a VGA adaptor but I can't get the full mac desktop to display. No icons but then websites are coming up. Help!

    I have connected my new Macbook Air to my existing Samsung large external monitor with a VGA adaptor but I can't get the full mac desktop to display. No icons but then websites are coming up. Help!  Further info:  I am a complete newbie to Mac.  Had three macs prior to 2000 then four PCs.  Just come back and struggling a bit with the unfamiliarity. On my old PC laptop I could simply switch from the laptop screen to the large external monitor (and back)  with the F4 function key.  While I can get the background image from my MBA to display, that's it.  Until I noticed on the far left of the external monitor, the very edge of one of the web pages I was on.  So Idragged it over to display in the centre.  But that's all that's there.  And now I have gone out of those web pages but they are still displaying on the monitor.  There is some wierd disconnect.  I'm sure it is just a setting thing.  Will keep searching for answer but any advice welcome!

    Your dsplay is getting extended onto the external monitor. Chcnage the setting to duplicate it or only display on the external monitor and you should be fine,
    Let me know if this worked for you.

  • HT5621 I have changed my AppleID but I can't get the "system preferrences" to show my new AppleID.  What am I doing wrong?

    I have changed my AppleID but I can't get the "system preferrences" to show my new AppleID.  What am I doing wrong?  I am running 10.9.2.  I support multiple devices on this icloud account and they all work fine.  Its just the mac mini ...

    I found a post with the answer.  Basically I just logged out of the iCloud.  My concern was that I would loose my contacts.   But when i logged back in with the correct AppleID -- it was all there.
    Thanks!

  • Just downloaded latest updates to Camera Raw for use with my new Sony RX100 M3 but still can't get the RAW files to open. Any suggestions?

    Just downloaded latest updates to Camera Raw for use with my new Sony RX100 M3 but still can't get the RAW files to open. Any suggestions?

    Never mind, I finally got it working, thanks!

  • Whenever I update my iPhone software, it asks me to sign in to iCloud with an old email address.  My other devices all have the correct address.  How can I get the correct address for my iPhone?  The only Apple ID that works for logging in is my new one.

    Whenever I update my iPhone software, it asks me to sign in to iCloud with an old email address.  My other devices all have the correct address.  How can I get the correct address for my iPhone?  The only Apple ID that works for logging in is my new one.

    To change the iCloud ID you have to go to Settings>iCloud, tap Delete Account, provide the password for the old ID when prompted to turn off Find My iPhone (if you're using iOS 7), then sign back in with the ID you wish to use.  If you don't know the password for your old ID, or if it isn't accepted, go to https//appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Tap edit next to the primary email account, tap Edit, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iPhone on your device, even though it prompts you for the password for your old account ID. Then go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https//appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • I can't remember my Apple ID password or my security question answers. When I try to reset my password it wants to send it to my e-mail address but I can't get the e-mail because I don't have security answers or the password. How do I reset password?

    I can't remember my Apple ID password or my security question answers. When I try to reset my password it wants to send it to my e-mail address but I can't get the e-mail because I don't know my security answers or the password. How do I reset password?

    Alternatives for Help Resetting Security Questions and/or Rescue Mail
         1. If you have a rescue email address or a Security Questions issue, then see:
             If you forgot the answers to your Apple ID security questions - Apple Support.
             Manage your Apple ID primary, rescue, alternate, and notification email addresses - Apple Support
         2. Fill out and submit this form. Select the topic, Account Security. You must
             have a Rescue Email to use this option.
         3. This is the only option if you do not already have a valid Rescue Email.
             These are telephone numbers for contacting Apple Support in your country.
             Apple ID- Contacting Apple for help with Apple ID account security. Select
             the appropriate country and call. Ask to speak to the Account Security Team.
         4. Account security issues almost always require you to speak directly to an
             Apple representative to securely establish your identity as the account holder.
             You can set it up so that Apple calls you, either immediately or at a time
             convenient to you.
                1. Go to www.apple.com/support.
                2. Choose Contact Support and click Contact Us.
                3. Choose Other Apple ID Topics and choose the appropriate topic for
                    your issue.
                4. Follow the onscreen instructions.
             Note: If you have already forgotten your security questions, then you cannot
             set up a rescue email address in order to reset them. You must set up
             the rescue email address beforehand.
    Your Apple ID: Manage My Apple ID.
                            Apple ID- All about Apple ID security questions.

  • I just changed my email adress, so i changed my itunes store adress to. but how can i get the new store adress on my Iphone ?

    I just changed my email adress, so i changed my itunes store adress to. but how can i get the new store adress on my Iphone to buy apps anew ?

    Go to Settings --> Store, click on your Apple ID and log out, then log in with your new details

  • How do you transfer your contacts from an Android to an iphone 6? I have backed everything up to Verizon Cloud but I can't get the two phone to pair up?

    How do I transfer contacts from an Android to an iphone 6? I have backed up everything to Verizon Cloud but I can't get the two phones to pair up?

    The problem is non compatible devices. You could go to a Verizon corporate store and they could try to transfer them, however many customers stated this has resulted in loss of contacts. They don't guarantee a transfer.
    http://www.macworld.co.uk/how-to/iphone/transfer-contacts-music-photos-apps-from-android-iphone-3459466/
    Move content from your Android phone to iPhone - Apple Support
    Verizon's cloud is rated at the bottom.
    Good Luck

Maybe you are looking for

  • IMac shut down suddenly and won't boot back up

    This morning my iMac shut down suddenly.  All I had open was Google Chrome and I was just on Facebook and that's it.  When I tried to boot it back up, it wouldn't load past the startup sound, wherein it would appear to shut back down,or at the very l

  • Silent microphone in MacBook Pro.

    Hi all. Forgive me for my English, I from Russia. I had a problem with my MacBook Pro. Its microphone began to work very silently. I tried to correct it, but left nothing. If someone faced such problem, please help. Yours faithfully, Kirill.

  • Save pdf to folder as JPG fails

    I have completed the update process so I am running Yosemite and Aperture 3.6 When I try to use the automator work flow that was installed with Aperture (Save pdf to folde as JPG) , I get an error message that "Retrieve Disk Item References encounter

  • Air 2.5 sdk? Submission problem with version tag.

    Hi I'm trying to submit an app that uses AIR sdk 2.5, Flex 4.1 I get an error after uploading saying that the 'version' tag is missing  in -app.xml The xml has a 'versionNumber' tag, and if I try to add a version tag FlashBuilder 4 refuses to create

  • Preventing MRP for 541'd material

    Hi all, Sometimes we send expensive spare parts to other companies in case of emergency, and get them back when they have it in a few days. When a material is sent to a vendor with 541 movement (Transfer posting unrestricted-use stock - stock of mate