Somehow, I got an incredibly high score from 1292 to Spider Solitaire (Beginner)

Somehow, I got an incredibly high score from 1292 to Spider Solitaire. I was playing on beginner level. Looks like a bug. What should I do?

Hi IanCandy,

If you think you have found a bug in a Microsoft product, please contact our Department of Support technique Microsoft to report a bug to Microsoft product.

Hope the helps of information.

Concerning
Joel S
Microsoft Answers Support Engineer
Visit our Microsoft answers feedback Forum and let us know what you think.

Tags: Windows

Similar Questions

  • Portege M400 - how to get a higher score of Windows 7 CPU?

    CPU model is T5600 who may not be so weak. I am so confused and I have try several times, the score is 2.9 even lower.
    Can someone tell me what I can do to get a higher score?

    Furthermore, I also did PCmark05 test and the CPU score was only from 1999. I'll run.

    Thank you very much for your help!

    Hello

    To be honest, don't forget the Windows partition and all the benchmark tests.
    Or, why is it so important to you? You have a problem with your laptop?

    I can give you an example: a friend of mine has a Qosmio X 300. A very cheap and fast laptop computer with CPU Core 2 Extreme, 4 GB SLI graphics system. It uses Vista x 64 and that it put only the performance index Windows 4.9 points.

    Also I m not interested in evaluation tests because I put t need so I m happy with my laptop.

    In any case, make sure that all Windows updates are installed and try again. But it's not really important that score.

    Good bye

  • trying to high grade from vista to 7 and my coputure goes out 3/4 of the way in the installation. I start it and say my computer may not be to the highest ranking of any idea?

    trying to high grade from vista to 7 and my coputure goes out 3/4 of the way in the installation. I start it and say my computer may not be to the highest ranking of any idea? I got a microsoft tec tring to understand with a bit of luck again!

    Hello

    in this case, contact the HP support

    http://h10025.www1.HP.com/ewfrf/wc/contacthp?LC=en&DLC=en&cc=us

    or HP Support forums

    http://h30434.www3.HP.com/

    or repost in the correct forum for windows 7 that I have already advised you to do

  • implement the local high scores

    I do this app and now I ran into a bottleneck. Theres this record I wish to implement, here where demand will only store a variable for its file system, access every time that the application starts and crush the variable when there is a higher score. How cn do then?

    Because posting it here, I guess from AIR. I would store an array in the SharedObject. Are you familiar with this class?

  • AS3 game high score to HTML input field

    Hi guys

    This problem is troubling me and my friends we cannot work on how to implement this.

    I have a game that records your highest score on the spot. What we need to do is to take this high score of the flash file and place it in an html input box (which is separate frm the flash file, but on the same web page).

    Please take a look at the code below and let me know the best way to achieve this. Is this possible?

    Here's the AS3:

    Following the code brings in the life of the object. All the physics engine has been written here.

    Define all variables

    var gravity: number;

    var airFriction:Number;

    var floorFriction:Number;

    var xVelocity:Number = 0;

    var yVelocity:Number = 0;

    var bgSrc:String;

    var objSrc:String;

    var musicSrc:String;

    var scoreTint:uint;

    var kineticEnergyLoss:Number;

    var xKineticEnergyLoss:Number;

    var bDifference:Number;

    var tDifference:Number;

    var lDifference:Number;

    var rDifference:Number;

    var xDifference:Number;

    var yDifference:Number;

    var objectHeight:Number;

    var objectWidth:Number;

    var score: Number = 0;

    var bestScore:Number = 0;

    var rotationVelocity:Number;

    var lWall:Number;

    var rWall:Number;

    var tWall:Number;

    var bWall:Number;

    var bestScoreSO:SharedObject = SharedObject.getLocal ("bestScore");

    define() {} function

    set the object width and height according to dynamic image used as object

    objectHeight = object.height;

    objectWidth = 1object. Width;

    Define walls according to the dimensions of the stage

    lWall = objectWidth/2;

    rWall = stage.stageWidth - objectWidth/2;

    If (tWall == 0) tWall = undefined;

    of another tWall = - objectWidth/2;

    bWall = stage.stageHeight - objectHeight/2;

    Restore the previous best score

    If (bestScoreSO.data.bestScore! = undefined)

    bestScore = bestScoreSO.data.bestScore;

    else bestScore = 0;

    }

    Vertical movement of the body OR the action of gravity on the body

    function applyGravity(object:MovieClip) {}

    Check whether the floor is closer than the current of the object speed and fix

    If (-yVelocity > bDifference) {}

    Object.y = bWall;

    If the object hit the ground its inverse has become speed

    yVelocity * = - 1;

    reduce the part of speed when it hits the ground

    If (yVelocity > kineticEnergyLoss) yVelocity = kineticEnergyLoss;

    else {}

    yVelocity = 0;

    }

    Determine the partition

    If (score! = 0) {}

    If (score > bestScore) {}

    bestScore = result;

    saveBestScore();

    }

    score = 0;

    scoreDisplay.gotoAndPlay (2);

    musicCheckBox.MoveIn ();

    }

    }

    check if the wall top is closer than the current of the object speed and fix

    If (yVelocity > tDifference) {}

    Object.y = tWall;

    yVelocity * = - 1;

    If (yVelocity > kineticEnergyLoss) yVelocity += kineticEnergyLoss;

    }

    move the object with yVelocity and always decrease yVelocity because of gravitational acceleration

    Object.y = yVelocity;

    yVelocity = gravity;

    }

    Movement of the body along the horizontal axis

    function applyHorizontalMotion(object:MovieClip) {}

    Check if the right wall is closer than the current of the object speed and fix

    If (-xVelocity > rDifference) {}

    Object.x = rWall;

    xVelocity * = - 1;

    rotationVelocity * = - 1;

    If (xVelocity > xKineticEnergyLoss) xVelocity = xKineticEnergyLoss;

    else xVelocity = 0;

    }

    Check if the left wall is closer than the current of the object speed and fix

    If (xVelocity > lDifference) {}

    Object.x = lWall;

    xVelocity * = - 1;

    rotationVelocity * = - 1;

    If (-xVelocity > xKineticEnergyLoss) xVelocity += xKineticEnergyLoss;

    else xVelocity = 0;

    }

    move the object with xVelocity and slow down due to airFriction

    Object.x = xVelocity;

    If (yVelocity! = - 0.5) = xVelocity xVelocity * airFriction;

    else xVelocity xVelocity = * floorFriction;

    }

    Increase or decrease the rotation of the body according to mouseclick

    function applyRotation(object:MovieClip) {}

    If (! isNaN (rotationVelocity)) object.rotation += rotationVelocity;

    If (yVelocity! = - 0.5) rotationVelocity = rotationVelocity * airFriction;

    else rotationVelocity = rotationVelocity * floorFriction;

    }

    Distance of the object from walls

    function Walls(object:MovieClip) {}

    bDifference = bWall - object.y;

    tDifference = object.y - tWall;

    object.x = lDifference - lWall;

    rDifference = rWall - object.x.

    }

    Apply all of the properties of the object, including gravity, Rotation, Horizontal movement and the reaction force of the walls

    function applyPhysics(ev:Event) {}

    applyGravity (MovieClip (ev.target));

    applyHorizontalMotion (MovieClip (ev.target));

    applyRotation (MovieClip (ev.target));

    Walls (MovieClip (EV. Target));

    updateScore();

    }

    Current score update and the best music

    function updateScore() {}

    scoreDisplay.score.text = result;

    scoreDisplay.bestScore.text = "Score:"+ bestScore;»

    }

    Save the best score in the local memory via ShareObjects

    function saveBestScore() {}

    bestScoreSO.data.bestScore = bestScore;

    bestScoreSO.flush ();

    }

    Where the mouse was of controls, click on to the center of the object

    function checkClick(ev:Event) {}

    click of the mouse to the center of the object distance

    yDifference = (mouseY - object.y);

    If (yDifference < 20 & & yDifference > 0) yDifference += 40;

    If (yDifference >-20 & & yDifference < 0) yDifference-= 40;

    If (yDifference < 0) {}

    yDifference * = - 1;

    }

    the value of the speed of the object based on the distance between the mouseClick centre and object

    yVelocity = yDifference/4;

    xDifference = (object.x - mouseX);

    xVelocity = - xDifference/4;

    rotationVelocity = xDifference/4;

    Increase the score to each mouse click and away from the music box

    Note ++;

    scoreDisplay.gotoAndPlay (2);

    If (score == 1) musicCheckBox.MoveAway ();

    }

    You can use the class ExternalInterface to have a Flash file to communicate with the html page that embeds via javascript in the html page.  If you have no issue with it, a Google search using terms such as 'Tutorial AS3 ExternalInterface'-, it will produce useful results several.

  • High Score Table: writing a Simple with Flash and PHP text file

    I'm having a problem getting Flash to work with PHP that I need Flash to read and write to a text file on a server to store data simple name partition for a games Hi score table. I can read the text file in Flash fairly easily, but I also have to write to the file when a new high score is reached, so I need to use PHP to do that. Can I send data from flash to php by POST file, but so far it does not. The PHP file is confirmed that the work that I added an echo in the file that displays a message to verify that the server is running PHP - files were also uploaded to a remote server so I could test them correctly. Flash code is as follows:

    FileWriter php

    var myLV = new LoadVars();

    sendData() {} function

    //sets variable 'hsdata' to send to php

    myLV.hsdata = myText;

    myLV.send ("hiscores.php");

    }

    I believe that it sends the variable "myText" in the php file in a variable called 'hsdata' I want the php file to write to a text file. The mytext variable is just a long chain that has all of the partitions and the names in the scores. OK, XML would be best way to do it, but for the speed, I want to just get the basic features of work, so store a shot of simple text is sufficient for now. The PHP code that reads the Flash variable "hsdata" and wrote for the "scores.txt" text file is due to:

    <? PHP

    sets the variable to the data posted from flash

    $flashdata = $_POST ['hsdata'];

    File Manager opens the file and clears all content with arg w

    $fh = fopen ("scores.txt", "w");

    Adds data to the file

    fwrite ($fh, $flashdata);

    closes the file

    fclose ($fh);

    echo "php file works;

    ? >

    Any help with this would be greatly appreciated - once I get php to write text files simple I should be ok. Thank you.

    var outLV = new LoadVars();

    var inLV = new LoadVars();

    sendData() {} function

    outLV.hsdata = 'Hello from Flash';

    outLV.sendAndLoad ("http://www.mysite.com/hiscores/test23.php", inLV,"POST");

    }

    inLV.onLoad = {function (success)}

    If (success) {}

    sets the dynamic text box to show the variable sent by php

    statusTxt.text = this.phpmess;

    } else {}

    statusTxt.text = 'No Data Received';

    }

    };

    It works well and function of inLV.onLoad of the reports it receives data, but does not display the variable received from PHP. The PHP file is like this:

    <>

    $mytxt = $_POST ['hsdata'];

    $myfile = "test23.txt";

    $fh = fopen ($myfile, 'w');

    Adds data to the file

    fwrite ($fh, $mytxt);

    closes the file

    fclose ($fh);

    $mess = "Hello there php ';

    echo "phpmess =". "." $mess;

    ?>

  • Somehow, I got a specialty I specialize in. How can I remove this?

    Somehow, I got a "specialty" that I specialize in.

    How can I remove this?

    As soon as start you on a speciality of level 1 (bookmark a thread, click "I have a question too" or ask a question) for a particular forum, the specialty Insignia will appear on your profile. To replace it, find that a forum related to a product or service do you specialize in the and do one of the above. Most recent the badge is that which will appear below your avatar.

  • I have a toshiba laptop with vista, somehow, I managed to move the taskbar from the bottom to the side, I want to put down once again. How do I do that? Thanks in advance

    I have a toshiba laptop with vista, somehow, I managed to move the taskbar from the bottom to the side, I want to put down once again.  How do I do that?  Thanks in advance

    I have a toshiba laptop with vista, somehow, I managed to move the taskbar from the bottom to the side, I want to put down once again.  How do I do that?  Thanks in advance

    First, make sure the taskbar don't are not "locked"...
    Right-click on an open space of the taskbar > make sure there is no checkmark at "lock the taskbar".

    Now, make a left click inside of a space open to the taskbar and HOLD > drag the slider down until he goes back down > drop PREY > lock the taskbar. For the benefits of others looking for answers, please mark as answer suggestion if it solves your problem.

  • Flash game High Scores Board

    Hi all

    I know that it is a topic that covers a lot because I have seen a ton of tutorials which show of the dfferent 1 million ways to create a High Council mark on a flash game.  So I decided to go out on a limb and pick a tutorial to try.  Well I tried 3 different ones now and have yet to get a High Council with my game scores.

    http://www.flashkit.com/tutorials/games/How_to_c-Nick_Kuh-771/index.php

    This is the link to the latest attempts to creat my high scores Board.  When I finished all the way the tutorial said it seemed that everything would work and then it just didn't.  After spending oh about 40 more hours trying to make a high scores Board I am getting very frustrated.  My game is scripted in AS2 and I have access to mysql and can implement unlimited databases.

    Can someone help me please by sending an easy to follow tutorial will work with AS2?  I just like any type of help right now because I think that ALL my valid ideas would be ehausted.  Thanks in advance to anyone who can help!

    kapelskic

    Focus on using the LoadVars class rather than the loadVariables method.  Try searching Google using "AS2 LoadVars tutorial".  Here is a link that research...

    http://www.Flash-here.com/tutorials/flash_loadvars_sample.html

  • Windows XP - somehow lost Spider solitaire game - how to restore?

    Windows XP - somehow lost Spider solitaire game - how to restore?

    Hello

    1 - is the only game that disappeared?

    2 did you make any change of software due to which it might have been?

    I suggest you to go through the steps mentioned in the link and the Coachman.

    How do I add or remove games in Windows XP

    http://support.Microsoft.com/kb/307768

    Important: you will need the Windows XP installation CD to run the steps.

    Hope this helps and keep us informed if you need help.

  • Somehow, I got charged Yandex and can not get rid of it. Russian browser or something. Help

    I was in the middle of some downloads from the Internet and all of a sudden I had little Russian search boxes which appeared in and basically it seems that I loaded a program Russian Yandex. It seems to be a browser. I got rid of everything that was visible in my programs with commands uninstall. However, when I'm in Firefox and you want to add a new tab, it automatically opens this browser Yandex. It doesn't seem to be something bad for my system, but I still want to get rid of it. I deleted cookies and everything else I can think. The only evidence that tells me that it is still in my computer is a search which reveals it's a shortcut to the browser. But why it turns on when I try to open a new tab in Firefox, and why I can't get rid of it is a mystery.

    You do not have an extension named Yandex elements that would be a logical candidate for removal.

    Open Firefox page modules using either:

    • CTRL + SHIFT + a
    • "3-bar" menu button (or tools) > Add-ons
    • in the Windows "Run" dialog box, type or paste
      firefox.exe "about:addons"

    In the left column, click Extensions. Then, in case of doubt, disable (or delete, if possible) not recognized and unwanted extensions. Do not forget that all extensions are optional, none come with Firefox, and you can learn more about them by checking their reviews on the site of the Add - ons.

    Often, a link will appear above at least an extension disabled to restart Firefox. You can complete your work on the tab and click one of the links in the last step.

    Success?

    If necessary, here's how you can change your page to the new tab on your favorite screen:

    (1) in a new tab, type or paste Subject: config in the address bar and press enter/return. Click on the button promising to be careful.

    (2) in the search above the list box, type or paste newtab and make a pause so that the list is filtered

    (3) double-click the preference browser.newtab.url and enter your favorite page:

    • (Default) page thumbnails = > subject: newtab
    • Blank tab = > subject: empty
    • Built-in Firefox homepage = > topic: welcome
    • Any other page = > full URL of the page

    Press Ctrl + t to open a new tab and check that it worked. Fixed?

  • HTML5 triggers ALSA incredibly high volume video

    On the latest nightly of Firefox when viewing YouTube videos, or any other site that offers html5 video, my sound is automatically triggered, about 50%, or 100%. This happens with both h.264 and VP8. I tried in safe mode and with a new profile, does not. I have alsa and pulseaudio, but if I open a YouTube tab and watch alsamixer, he will jump from there where I got 100% as soon as the video starts to play.

    I tell myself that I will probably need to post a bug report, but I thought I'd try here everything first.

    I put "dish-volumes = no" in my etc/pulse/daemon.conf. He's not big, but it solves the problem for now.

  • High score Server

    Hi all.  I am interested in adding support for allowing players to present their best scores for my game via the internet.  I'm not asking for more details, I just wonder what the different pieces of people tech would use for this.  I don't want to hit this nail with a hammer.

    (1) write a custom application and run it on my domain.  Then use the TCP of the game to make the transaction.  Looks like more killing.

    (2) use a mysql database on the server and protected by a kind of ODBC connection from the game?

    (3) a layer of magic tech does it all just (kidding).

    Leigh

    Sounds like a simple application in PHP and MySQL.

    Create the database to receive the user name, score, etc.

    Write a PHP script simple who accepts an HTTP GET that contains the user and the partition info.

    The next question is, how the user compare sound score with others?

    So, you can also create a separate query to retrieve the 10 best scores (or something like that).

  • Airport Extreme - poor score from Consumer Reports

    In the notes of June 2016 of routers by Consumer Reports, the Apple Airport Extreme was ranked 7th of 14 rated routers.

    Linksys (EA8500) AC260 ranked 1st with an overall Score of 89

    The Apple Airport Extreme ME918LL/A 7th place with an overall score of only 67 & wasn't 1 of 4 routers "recommended" by Consumer Reports.

    I have currently 2 5th generation Apple Airport extreme with the 2nd 1 put in place as an 'extension' of the 1st (hard wired).

    Am currently in the market for an Apple Airport Extreme 3rd - also to be used as an 'extension' of the 1st (also to be wired).

    I had years of service with my current 2 extremes without any major problems.

    But, I must say, this weak side causes me to rethink the purchase of one 3rd extreme.

    In addition to an Apple 6 more belonging to both myself and my wife and one old iPad 3 belonging to my wife, I don't have any other products Apple.  I use Dell computers & have never owned a Mac.

    The qUESTIONs ARE:

    Should I worry about buying the new Apple Airport Extreme Base Station?

    The Appreciation of Linksys #1 is $60 more ($240) that extreme already expensive ($180).

    Is - it's worth the extra $$$?

    Different brands of routers can be 'mixed' and used as in "extensions" of a 5th generation Apple Airport Extreme Base Station?

    Should I worry about buying the new Apple Airport Extreme Base Station?

    Perhaps.  The current product was introduced more than 3 years ago, and Apple did not of any material changes since that time. Because it usually takes about a year to develop a new product, the technology in the "current" AirPort Extreme is probably 4 years old.

    Your next question might be... Apple plans to introduce new models soon?  The answer is that we do not know.

    The Appreciation of Linksys #1 is $60 more ($240) that extreme already expensive ($180).

    Is - it's worth the extra $$$?

    I have not used this model, but another user might have a few comments.

    Different brands of routers can be 'mixed' and used as in "extensions" of a 5th generation Apple Airport Extreme Base Station?

    Yes and no.

    Yes, if the routers are only connected together using a connection wired Ethernet cable.

    Not in general, if you ask to have different brands "extend" the signal of wireless connection to other brands

  • I got a new hard drive from apple. They have updated to El Capitan. This affects how I restore from time machine? A full restore allows you to copy on the new operating system?

    can I use time machine to restore everything, only the data, not the operating system

    Why would you go back to a previous operating system when you just got a new hard drive with the new operating system on it?

Maybe you are looking for

  • Is it possible to prevent or remedy to have too many files in the DCIM folder?

    Is it possible to prevent or remedy to have too many files in the DCIM folder?  In a group of friends, when you view folders DCIM iPhone in Windows 8, three of us have many, many files (such as 101APPLE, 327APPLE, 328APPLE).  Phones concerned: 5 c, 6

  • Qosmio X 770 battery capacity

    Battery on my new X 770-107 a condition of 36% out of the box, lasting 45 minutes or less.I had been replaced by another in the authorized service center. The next day, having a new battery wear level of 17%. Obviously, something is wrong with batter

  • Hello. I have windows 7 home... I had accidentally put in the trash... and deleting photos

    Hello. I have windows 7 home... I had accidentally put in the trash... photos and then cleaned out the trash... lost all the pictures... did a system restore and got back records, but not photos... ANY IDEAS on HOW I CAN get BACK MY PHOTOS > please..

  • Video using Movie Maker

    I just published and saved my project using Windows Live Movie Maker. After the process, the audio is fine, but no video at all. I used all the required files for audio, video and photos. Help, please! Thank you!

  • the font size in hotmail live

    I have increased the display on the screen of my live hotmail somehow and can read is no longer the Inbox in its entirety.   I assumed it was a zoom tool, but have tried to minimize the police using the zoom tool, but it did not work.  I also checked