Taking the screenshots In-game problem

While in the game when I take a screenshot with the hotkeys (shift + Stamp) and paste it into paint it gives me a black image. Same thing when you try to record gameplay with fraps or xfire.

I noticed that many users complain to this subject, so if someone already solved this redirection please issue me.

Hello aLx_1,

Thank you for visiting the Microsoft answers community.

Try print screen alone and also CTRL + Print Screen and see if it makes a difference on your system. I tried to reproduce the problem you are having, and although tried many different games, it works exactly as expected.

Try to visit the computer manufacturers website and search for and install the latest video driver for your video card to determine if this resolves the problem.

Chris.H
Microsoft Answers Support Engineer
Visit our Microsoft answers feedback Forum and let us know what you think.

Tags: Windows

Similar Questions

  • taking the screenshot button disappeared

    I'm using Sony Live with walkman WT19a. When I push the power button (on the top of the phone), it is supposed to appear the menu 'disable', 'flight mode' and 'screenshot '. But after the update to android 4.0, 'touch screen' disappeared. What should I do to get it back?

    Press and hold the power button / volume + stop

    Don't forget to mark the correct answers & useful answers

  • Can't paste the screenshots using the command C?

    Hi, I've always been able to take screenshots (command + Opt + shift + 4) and paste them directly in mac mail emails or Messages by using the command + c. lately I am not able, maybe since 10.11.4? I am still able to take screenshots but I am unable to paste them. They are now on my desk and I have to search for them and then drag - move which is more slow than before.  I also notice the same problem in photoshop CC 2015, that I can paste is more directly the screenshots but drag and drop them on the desktop.

    I don't know what is the cause. Everyone knows this and is there a way to fix it?

    Thanks for your help.

    Press the function instead of the Option key when taking the screenshot.

    (141973)

  • Number of Collisions in the shooting game problem

    Hello, I work a simple game in which a ship fires at the approach of asteroids, and I have problems with the collision between the ship and the

    asteroid. In the movieClipI ship made incandescent chassis 6 to mean the 3 first collisions and the loss of life, and then for the fourth collision I have

    made an alpha of the 87 frame interpolation inside the boat so that he disappeared to signify the end of the game. I used a meter as shown below but all the ship

    fact is never gets so glow frame 87. Thank you for taking the time to see it.

    import of important flash libraries.
    import flash.events.KeyboardEvent;
    import flash.events.Event;
    import flash.display.MovieClip;
    import flash.display.Sprite;

    var countCollisions:Number = 0;
    var astArray:Array = new Array();
    var speed: Number = 10;
    Initializes the variables.
    var key_left:Boolean = false;
    var key_right:Boolean = false;
    var key_up:Boolean = false;
    var key_down:Boolean = false;
    var key_space:Boolean = false;
    var shootLimiter:Number = 0;
    Checks if the player presses a button.

    var: timer = new Timer(2000, 10);
    timer.addEventListener (TimerEvent.TIMER, AddAsteroid);
    Timer.Start ();

    stage.addEventListener (KeyboardEvent.KEY_DOWN, KeyDown);
    stage.addEventListener (KeyboardEvent.KEY_UP, KeyUp);

    var ship: MovieClip = new Ship()
    var backgr:MovieClip = new Background();

    backgr.x = 0;
    backgr.y = 45;
    addChild (backgr);
    addChild (ship);

    function AddAsteroid(e:TimerEvent):void
    {

    var asteroid: MovieClip = new Asteroid();
    Asteroid.x = 800;
    Asteroid.y = Math.round (Math.random () * 700);
    astArray.push (asteroid);
    addChild (asteroid);
    asteroid.addEventListener (Event.ENTER_FRAME, asteroidmove);

    function asteroidmove(e:Event):void
    {
    Asteroid.x-
    ///

    ///

    for (var i = 0; i < astArray.length; i ++)
    {

    If (astArray [i] .hitTestObject (Ship))
    {
    countCollisions ++;
    ship.gotoAndPlay (6).

    if(countCollisions ==4)
    {
    ship.gotoAndPlay (87);
    }
    If (astArray [i] .stage)
    {
    removeChild (astArray [i]);
    removeEventListener (Event.ENTER_FRAME, asteroidmove);
    }


    }
    }

    }

    }

    addEventListener (Event.ENTER_FRAME, backgroundmove);

    function backgroundmove(e:Event):void
    {
    backgr.x-= 1;

    If (backgr.x <-2110)
    {
    backgr.x = 0;
    }
    }

    Allows the main function play each image.
    addEventListener (Event.ENTER_FRAME, Main);

    Create the main function.
    main function (event: Event) {}
    CheckKeys();
    }

    Create the function KeyDown.
    function KeyDown(event:KeyboardEvent) {}
    if(Event.keycode == 37) {//checks if left arrowkey is pressed.
    key_left = true;
    }
    if(Event.keycode == 39) {//checks if right arrowkey is pressed.
    key_right = true;
    }
    if(Event.keycode == 38) {//checks if some arrowkey is pressed.}
    key_up = true;
    }
    if(Event.keycode == 40) {//checks if the arrowkey is pressed.
    Key_Down = true;
    }
    if(Event.keycode == 32) {//checks if the arrowkey is pressed.
    key_space = true;

    }
    }

    function KeyUp(event:KeyboardEvent) {}
    if(Event.keycode == 37) {//checks if left arrowkey is released.
    key_left = false;
    }
    if(Event.keycode == 39) {//checks if right arrowkey is released.
    key_right = false;
    }
    if(Event.keycode == 38) {//checks if some arrowkey is released.}
    key_up = false;
    }
    if(Event.keycode == 40) {//checks if the arrowkey is released.
    Key_Down = false;
    }
    if(Event.keycode == 32) {//checks if the arrowkey is released.
    key_space = false;
    }
    }

    function CheckKeys()
    {
    shootLimiter += 1;

    If (key_left)
    {
    setDirection (1);
    Ship.x-= 5;
    }
    If (key_right)
    {
    setDirection (0);
    Ship.x += 5;

    }
    {if (key_up)}
    Ship.y-= 5;
    }
    {if (Key_Down)}
    Ship.y += 5;
    }

    If ((key_space) & & (shootLimiter > 8))
    {
    shootLimiter = 0;
    var b = new Bullet();
    addChild (b);
    b.x = ship.x + 50;
    b.y = ship.y + 3;
    addEventListener (Event.ENTER_FRAME, moveBullet);
    }

    function moveBullet(e:Event):void
    {
    b.x += 10;

    If (b.x > 600)
    {
    If (Contains (b))
    {
    removeChild (b);
    }
    removeEventListener (Event.ENTER_FRAME, moveBullet);

    }
    for (var i = 0; i < astArray.length; i ++)
    {
    If (astArray [i] .hitTestObject (b))
    {
    removeChild (b);
    removeChild (astArray [i]);

    removeEventListener (Event.ENTER_FRAME, moveBullet);
    }
    }
    }
    }
    function setDirection (param) {}
    If (param == 0) {}

    ship.scaleX = 1;
    } else {}
    ship.scaleX = - 1;
    }

    }

    You're a little around with it and you have not yet removed the asteroid of the table... see if what follows helps to resolve the issues...

    for (var i = 0; i)

    {if (astArray [i] .hitTestObject (Ship))}

    get rid of the asteroid
    MovieClip(astArray[i]).removeEventListener (Event.ENTER_FRAME, asteroidmove);
    removeChild (astArray [i]);
    astArray.splice (i, 1);
      
    countCollisions ++;
     
    If (countCollisions > = 4) {}
    ship.gotoAndPlay (87);
    } else {}
    ship.gotoAndPlay (6).
    }
    }

    }

  • Why my game Center freezes when I go by parameters or directly by clicking on the center of games? Can I know which method is the best to use to solve this problem? Also, I use an iPhone 6 s, iOS 9.3.1

    Why my game Center freezes when I go by parameters or directly by clicking on the center of games? Can I know which method is the best to use to solve this problem? Also, I use an iPhone 6 s, iOS 9.3.1

    Have you ever tried to force reboot the phone by holding down the button sleep and home for 10 seconds, until the call logo comes back again?

    You won't lose data, but it can cure a few glitches.

    If this does not work, the initial Setup would be the next step:

    Use iTunes to restore your device to factory settings - Support Apple iOS

  • H satellite L505-13 - problem with the resolution of games

    Hello, I have a problem with the resolution of games, I just that:
    800 x 600 and 1024 x 768
    Yet, I have the latest version of the ati driver and directx 11...

    Windows Dectet my monitor properly (plug-and-play), and my screen resolution works well for: 1366 x 768 and 800 x 600.
    on the other hand, when I start a game I have only the choice between these two resolution: 800 x 600 and 1024 x 768...

    All the games don t fit the full screen and there is always a black area on the right and left.

    Some games (crash)... and I thought it made a link with said that I have only 2 resolution.

    I have a toshiba L505 - h - 13 (PSLS9E)
    my graphics card: ati mobility radeon hd 5145 graphics card
    OS: win 7 32 bit

    I hope someone can help me find a solution
    Thanks in advance

    Hello

    I put t know what games you want to play, but generally speaking, it of also depending on the game you can use screen resolutions. For example if your game supports only 2 screen resolutions, you can only use these resolutions.

    So all you can do is update the driver DirectX and display. Then, look for an update (patch) for the game.

    Good luck! :)

  • I had installed the captain claw game and when I try to run the following error report is: of the Side-Scrolling Action-Arcade game has encountered a problem and needs to close.

    original title: C:\DOCUME~1\hariraj\LOCALS~1\Temp\7f3f_appcompat.txt

    I had installed the captain claw game and when I try to run the following error report comes... Please solve my problem...

    ....

    ARCADE-ACTION SIDE-SCROLLING GAME

    Of the Side-Scrolling Action-Arcade game has encountered a problem and needs to close.  We are sorry for the inconvenience.

    ERROR SIGNATURE

    AppName: cla.exe AppVer: ModName 1.3.0.60: cla.exe
    ModVer: 1.3.0.60 Offset: 000f3956

    THE FOLLOWING FILES MUST BE INCLUDED IN THE ERROR REPORT

    C:\DOCUME~1\hariraj\LOCALS~1\Temp\b285_appcompat.txt

    Please please please please help me... i will be grateful to you

    Hi Raj Kumar,

    You can follow the steps mentioned in the article below, which deals with a similar question

    Game hangs or quits unexpectedly
    http://support.Microsoft.com/kb/303032

    (Article apply to Microsoft games, steps for other games)

  • What is the reason for the slowdown of my computer when I open the heavy software or video game HD? (read the details of this problem)

    IM using windows xp service pack 3.  whenever I open a heavy software on xp, which crisscross the movie hd, game play as nfs most wanted, slow down the computer starts. every time that I discovered the video that is larger than 2 min on youtube on 360 or more depth, it slows down my computer.
    I have to ride every time, I have to put on the stand mode every time and again, I have to come to the screen where worked. I have been on the computer for 2 hours I have market and shut down my pc every time what pc slows down.
    There was no this problem, I was faced with when I buy a pc. but this problem starts from June 2012, im facing this problem every day.
    When I ask the local store (computer scientist), he told me to format the xp and install it again.
    I know that the formatting every time is not the solution to the problem. because I had formatted my pc several times, but this dosent problem solved. And there is no chance of virus in the pc, because I invested my money in total security from bitdefender which is updated each time software.
    so, my question is what is the problem to my pc? is this hardware or software problem?  What will be a solution to this issue?
    my pc config:
    ---------------
    Processor Processor amd athlon 64 * 2 dual core 6000 + 3.2 GHz

    RAM 2 GB

    motherboard asus m2n68-am

    temprature
    --------------------
    kernel 1.44v
    + 3, 3V 3.28v
    5V 5.02v
    + 12v 12.28v
    CPU 62
    RAM 46C
    CPU 3360 RPM

    Internet browser firefox 10.0.1

    Syatem summary:

    Name of the operating system Microsoft Windows XP Professional
    Version 5.1.2600 Service Pack 3 Build 2600
    Manufacturer of operating system Microsoft Corporation
    Name of the System x
    System manufacturer system manufacturer
    System product name model system
    System Type X 86-based PC
    Processor x 86 family 15 model 67 Stepping 3 Mhz-AuthenticAMD ~ 3013
    BIOS Version/Date American Megatrends Inc. 1804, 23/08/2010
    SMBIOS 2.5 version
    Windows C:\WINDOWS directory
    System directory C:\WINDOWS\system32
    Boot Device \Device\HarddiskVolume1
    The local United States
    Hardware Abstraction Layer Version = "5.1.2600.5512 (xpsp.080413 - 2111).
    Name of the user x
    Zone x
    Total physical memory 048,00 MB 2
    1.08 GB available physical memory
    Total virtual memory 2.00 GB
    Available virtual memory 1.96 GB
    Page file space 3.35 GB
    Paging file C:\pagefile.sys

    view summary

    Name of the NVIDIA GeForce 7025 / NVIDIA nForce 630A
    PCI\VEN_10DE & DEV_03D6 & SUBSYS_83A41043 & REV_A2\3 PNP device ID & 267A616A & 0 & 68
    Adapter Type GeForce 7025 / nForce 630A, NVIDIA compatible
    Adapter Description NVIDIA GeForce 7025 / NVIDIA nForce 630A
    Adapter RAM 512.00 MB (536,870,912 bytes)
    Installed Drivers nv4_disp.dll
    6.14.11.8634 driver version
    File INF oem5.inf (section Section001)
    Color plans 1
    4294967296 colors Table entries
    Resolution 1024 x 768 x 75 hertz
    32 bits/Pixel
    X memory address
    X memory address
    X memory address
    IRQ channel, IRQ 20
    Port of e/s-0x000003B0-0x000003BB
    Port of e/s-0x000003C0-0x000003DF
    X memory address
    Pilot c:\windows\system32\drivers\nv4_mini.sys (6.14.11.8634, 7,60 MB,

    No, im not using bitdefender, or 2 firewall at a time, I im using ms security essential.
    but still runnig pc very slow

    Please, read carefully and then provide the right solution...

    Do you have the Windows Desktop Search installed issue?

    Your Firefox is way outdated, then you need to update Firefox (help on Firefox).

    My version is 16.0.1

    Your msinfo32 says your NVIDIA card:

    6.14.11.8634 driver version

    To translate for the NVIDIA speak, you shift the decimal point so that it becomes:

    186.34 (your is out-of-date)

    NVIDIA says that your version of the driver should be 308.61

    I visit the page of NVIDIA GeForce Driver and let scan them driver online take a look at your system and if they offer you a update, take it, install it, reboot and recheck your video diver version and it should look like this:

    6.14.13.0861 driver version    (that's what mine said too)

    Download the NVIDIA site here:

    http://www.GeForce.com/drivers

    Reboot and double check the versions and see what things look like.

  • Where can I find as the screenshot I captured of a pop-up that is causing problems with Internet Explorer?

    I took a screen shot of a pop-up, so I me advise about this pop up, but now I can find it. Where can I find the screenshot? I looked in my documents as well as photos, but he isn't here? I need to find the screen shot to get help with it because I had big problems with Internet explore all day today and this pop-up started yesterday.

    Thanks for any help I can get.

    Linda

    Original title: screenshot

    I took a screen shot of a pop-up, so I me advise about this pop up, but now I can find it. Where can I find the screenshot? I looked in my documents as well as photos, but he isn't here? I need to find the screen shot to get help with it because I had big problems with Internet explore all day today and this pop-up started yesterday.

    Thanks for any help I can get.

    Linda

    Hi Linda

    Take a screenshot in Windows 7 requires several actions.

    1. press the Printscreen key. This operation copies an image of the screen to the Clipboard.

    2. open an imaging program such as MS Paint and paste the screenshot.

    3 save the screenshot image in a folder of your choice.

    Concerning

  • First game problems

    Hey,.

    So I have this Adobe Encore project.  My first piece is an intro video that goes into a main menu.

    The problem I have is that when I build my project, the first video of the game never plays.  He plays when I click on preview, however when I build it and play, he jumps the first video game and goes directly to the main menu.

    I've already broken down the mpeg file I was using in its elementary streams, intro.m2v and intro.mpa.

    I looked through the previous posts in the forums and tried a number of different methods.  I tried to import the two together as 1 timeline.  I tried to import the .m2v as a timeline, then importing the .mpa as an asset file and put it in the timeline panel.  I even gave up the audio file to see if the .m2v file would play by itself.  Each attempt ended in failure.

    Here are some screenshots of my chart and end action of timeline properties:

    Flowchart.jpg

    flowchart_endaction.jpg

    I use Adobe Encore CS5 version 5.0.0.508.

    Thoughts or ideas that can help?

    It looks that came before. Burn a test disc and it will probably work. I guess you play a folder on the computer of your test build.

    I just did a test, and I get the correct preview yet results and a burned disc, but not from one version to the folder using the vlc player.

  • Why Game Center on my device is unable to access the list of friends and the list of games

    Game Center do not work.

    The only thing that works is the home screen.

    I can't change my message of player.

    For a list of friends and the list of games, there is a message saying that there are problems with the network.

    What can I do?

    Try going into settings > game Center. Disable the options for the recommendation of a friend, and then go back to the options you want.

    TT2

  • Firefox's search appears after the screenshot

    Since the update to Firefox 35, when I take a screenshot in holding the home and power keys together, Firefox search pop up with a list of my Firefox search history and invites research. How can I disable this? 4.4 Android

    I think I know your problem.

    In android, later versions in settings, when long pressing the home button, you can do to make a search, shown in the screenshot below. Try to change this in the settings - buttons - and under the home button, tap "action press and hold on" change what it will do for a long time in a hurry. I hope this helps so that you can take a screenshot but elsewhere!

    If this does not work, then I'm puzzled too. Sorry for the inconvenience, but at least you have found another way to take a screenshot!

    Wow, I had a lot of misspellings

  • My colors are not displayed correctly. I already asked the question, but here's the screenshot also.

    There is no apparent way to upload the screenshot I did not. Not a very intuitive site.

    Continue in your old thread and fix the image here.

    Once you have done so, attach the file to screen shot saved to your post on the forum by clicking on the button Browse... under the box to post your reply . This will help us to visualize the problem (on the wire, linked above).

  • Power on the Satellite Pro 3000 problem

    Wives Satellite S3000 has developed what appears to be a power problem

    Last night it started indicating that he doesn't have the power of the DC input... This seemed to be a fault of internittent stirring casued DC input light to return cable. Taking the DC Jack off main cable, I discovered that one of the two pins was broken.

    Is out today and bought a new 5.5mm/2.5mm DC Jack and reconnected thinking that everything would be OK... but there is no response from the laptop... the DC input light does not come on and neither does the indicator "charging battery".

    A multimeter indicates there is 19v DC decision-making.

    It seems to me that there may be an internal power problem. Otherwise there may be a problem with the power with respect to the current delivery.

    A battery totally buggered may this "non-response"? I expect the laptop to operate on DC power regardless of the internal State and secondary battery.

    Ideas appreciated... will see if I can alternative power source and try it before resorting to delve into the bowels of the thing!

    Thank you

    Hello

    > A battery totally buggered may this "non-response"? I expect the laptop to operate on DC power regardless of the internal State and secondary battery.

    The laptop should run without battery. If the adapter is ok and if it was connected to the laptop, then it should be possible to start the machine.

    If the laptop does not start, then it must be a hardware problem.
    But believe me; It's not easy to say what exactly is the problem.

    Maybe you bought only a bad power adapter that is not compatible with the Sat Pro 3000?
    Or maybe there is something wrong with the electronic power supply on the motherboard?
    Who knows?  :| Only the technician who checked the laptop can provide an exact error diagnostic.

  • HP Pavilion 15: Noise of the fan during games

    Hello world!

    I recently bought the HP Pavilion 15. All-in-all, it's good. But when I play certain video games, I hear the noise of the cooler fan. The noise is loud and a little bit of crackling. Some games cause stronger noise (progression of Tomb Raider, hand of fate), other (The Witcher III) - not so loud. The less demanding games produce almost no additional noise.

    At first, I thought it might be connected to the audiosystem, but when I use headphones noise crackling under the remains of the screen and the sound in the headphones is good.

    This problem does not prevent the game experience - games work without problem, but I don't know if it's a sign of some videoadapter damaged or simply bad. Or are all generally noisier than other pavilions portable?

    What can be the problem? What should I do?

    Fellow HP users!

    I found the solution on my own!

    I had BIOS version F0.5 and improved through this site up to F0.9. And the sounds of crackling disappeared! Everything works!

    So, if you have similar problems, just find the update for your BIOS. It is also a good opportunity to check if your drivers are up to date!

Maybe you are looking for