• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Screen capture recomendations please

jolancer

Senior member
Hi i know theres probably tones of programs out there for the task, but im not familiar with any so i could use any user recomendations or experience for my task.

I dont need one for video games.. what im looking for is just a way to capture my desktop and everything that apears from programs being used on it automatically perhaps every 5secs or adjustable.

OS win7. core i3. 4GB.

i will google on my own, but any recomendations are appreciated as it will help me narrow down reliable apps. Thx
 
I frequently need a screen capture to display to IT a computer issue.
I just press the "Print Scrn" button, open the windows paint program, paste in paint and the save as a jpeg. Screen captured

oops.. didn't see the capture every 5 sec automatically, my recommendation is of no help for you but I'll leave it so that it may help someone else.
 
Last edited:
I have used MWSnap for years - free and very powerful. Not sure, however, about your time scheduled auto snaps. That is a bit specialized.
 
Seems like you could do that with a script. Set the time increment, and let it go. Store the shots in a specified folder.
 
To copy an entire web page including the portions not immediately shown on your display(the scroll-down part) I use the free "pixlr grabber" add on to Firefox. WOrks great!

To copy just what's visible on the screen I use Snipping Tool built into Windows 7.

Had Snagit many years ago, and it worked great, but no better than the free ones out now. Back then there weren't other free ones like today.
 
To copy an entire web page including the portions not immediately shown on your display (the scroll-down part) I use the free "pixlr grabber" add on to Firefox. Works great!

To copy just what's visible on the screen I use Snipping Tool built into Windows 7.

Had Snagit many years ago, and it worked great, but no better than the free ones out now. Back then there weren't other free ones like today.
 
I also use mwsnap. You can set up a hotkey combo, such as CTRL-ALT-SHIFT-S to capture the entire screen. That's in the hotkey's menu. Then you could turn off the sound for mwsnap. Then you could do a very simple autohotkey script which simply presses the CTRL-ALT-SHIFT-S combo every 5 seconds. In theory that should work.

The ahk script would be:


Code:
Loop
{
    Sleep, 5000 ; 5 seconds
    Send ^!+S   ; send CTRL+ALT+SHIFT+S
}
I must point out that this sounds an awful lot like somebuddy trying to spy on somebuddy.

Keep in mind that this will consume anywhere from 30MB to 100MB per hour
 
Last edited:
Back
Top