Screen Maker, Screenshots semplici

« Older   Newer »
  Share  
FrancescoFrg
CAT_IMG Posted on 21/7/2013, 11:24     +1   -1




Una delle mie prime release,una vecchia NO-GUI che avevo programmato per mio fratello..gli serviva per fare degli Screenshots senza perdere tempo su Metin2 e altri giochi da client simili..
Screen Maker 1.0
+ Funzioni
Screenshot premendo Shift
Il Programma si termina premendo Ctrl (sinistro)
+ Da implementare
Prevista una bella GUI,anche se la grafica non è il mio forte <_<
Link Pack RAR completo - Screen Maker 1.0

Source
#NoTrayIcon
#include<misc.au3>
#include <screencapture.au3>
$dll=DllOpen("user32.dll")
$hexx="11"
$hex="10"
While _IsPressed ($hexx,$dll) = false
If _IsPressed($hex,$dll)Then
$hbmp=_ScreenCapture_Capture ()
_ScreenCapture_SaveImage("Screen"&@MDAY&@HOUR&@MIN&@SEC&".jpg",$hbmp)

EndIf
Wend


Edited by FrancescoFrg - 21/7/2013, 14:49
 
Top
paic
CAT_IMG Posted on 17/10/2014, 17:09     +1   -1




Bellino però se posso darti un consiglio modificherei un po il source:
(non credo neanche funzionasse il tuo)
CODICE
#NoTrayIcon
#include<misc.au3>
#include <screencapture.au3>
$dll=DllOpen("user32.dll")
$hexx="11"
$hex="10"
While 1
sleep(10);riduce un po la cpu in standby
if _IsPressed ($hexx,$dll) then
If _IsPressed($hex,$dll)Then
while _IsPressed($hex,$dll)
wend ;;questo per evitare che ne faccia 100, funziona solo al rilascio
$hbmp=_ScreenCapture_Capture ()
_ScreenCapture_SaveImage("Screen"&@MDAY&@HOUR&@MIN&@SEC&".jpg",$hbmp)
endif
endif
wend ;senza wend come fa ad andare, basta dire che l'hai tagliato metà...


Che sia chiaro non era una critica, solo un miglioramento.
 
Top
1 replies since 21/7/2013, 11:24   138 views
  Share