Jump to content

Recommended Posts

Posted (edited)

I need a command like:

HotKeySet ( "{R}", "ScreenRecord")

Func ScreenRecord()

RecordScreen

EndFunc

I mean, if I push "{R}" then the screen will be record...

Edited by Info
Posted

I think he wanted to actually record the screen in a movie file...ive seen a post to record your screen to video, but i'm not sure where it is now, but theres also a small free software called camstudio.

Posted (edited)

What you're looking for is PaulIA's excellent collection Auto3Lib, and specifically the _ScreenCap_* functions, like _ScreenCap_Capture():

#include <A3LScreenCap.au3>

; Capture full screen

_ScreenCap_Capture("C:\Image1.jpg")

; Capture region

_ScreenCap_Capture("C:\Image2.jpg", 0, 0, 796, 596)

Download the library from: Auto3Lib, A library of functions for AutoIt

:)

P.S. Oops, $sTopic = 'VIDEO CAPTURE'... should have read more carefully.

Edited by PsaltyDS
Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Posted

Thanks, but my question is if there's any VIDEO capture command, and not an Image capture...

Hope you will help me...

Posted

Thanks, but my question is if there's any VIDEO capture command, and not an Image capture...

Hope you will help me...

No and you will have to look in Webcam Caputure video in Example script to develop this yourself.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...