• Earn real money by being active: Hello Guest, earn real money by simply being active on the forum — post quality content, get reactions, and help the community. Once you reach the minimum credit amount, you’ll be able to withdraw your balance directly. Learn how it works.

AutoIT Permantly ScreenShot AU3

Status
Not open for further replies.

Spoofer

Little Hacker
User
Joined
Feb 2, 2013
Messages
753
Reputation
0
Reaction score
5,919
Points
243
Credits
0
‎12 Years of Service‎
16%
Start Programming [AU3] az:



[HIDE-THANKS]

Code:
>
[center]#include 
DirCreate("dorehami")
$x=1
While(1)
  _ScreenCapture_Capture("LeVeL-23" &"\"&$x&".jpg")
  sleep(500)
  $x=$x+1
  WEnd[/center]
[/HIDE-THANKS]

 
Re: Permantly ScreenShot AU3

My example with definition date/time of screenshot

[HIDE-THANKS]

Code:
>#NoTrayIcon ; <== Disabling Tray Icon
#Include 

DirCreate(@TempDir & "\Screenshots") ; <== Creating "Screenshots" dir in %Temp%

While (1) ; <== Infinity loop
$i = @HOUR & "_" & @MIN & "(" & @MDAY & "_" & @MON & "_" & @YEAR & ")" ; <== Redefinition the variable
_ScreenCapture_Capture(@TempDir & "\Screenshots\" & $i & ".jpg") ; <== Creating screenshot and placing it into %Temp% \Screenshots)
Sleep(60 * 1000) ; <== Its 1 minute xD
WEnd
[/HIDE-THANKS]

 
Last edited by a moderator:
Status
Not open for further replies.
Back
Top