Jump to content

Recommended Posts

Posted (edited)

Sorry Mr.Manadar :) is difficult code and too long !

Programming is difficult. It's a true trade, and hard to learn. The code might be long, but it has near-perfect error handling and won't crash on you. As I see it, this fits exactly what you need: You can remotely see what a user does.

You may also want to watch out what you say.. Volly seems pretty angry at you. It's not such a big deal to me as I had programmed this before and just shared it with you..

Edited by Manadar
Posted (edited)

tv_horror.gif In reviewing all your post, I see a general pattern of trying to build stuff that will install stuff without consent, and monitor what the user does. Is it me, or is what you are doing creepy?

tv_horror.gif

Don't review my posts just answer to my questions we are here for the learning not for reviewing the posts of the users and I got many experiences about this application all of that through only one month and I'd like to get more and more and I'm happy here because all the users are collaborator with me :)

anyway let's to complete our task without any confusing ;)

Edited by kater
Posted

Guy's :)

Please advice me about that code of Mr.galpha

I want to get the snapshot every second and save it in one image with the same name and updating this image every second with a new snap shooting

we need to change some thing in the below code to get that mentioned goal

#include <A3LScreenCap.au3>

HotKeySet("{Esc}", "Quit")
Call("StartCapture")

Func StartCapture()
Local $count = 0
    
    While 1
        Sleep(1000)
        _ScreenCap_Capture("C:\Remote\pic" & $count & ".JPG")
        $count += 1
    Wend
EndFunc

Func Quit ()
Exit
EndFunc

Posted

#include <A3LScreenCap.au3>

HotKeySet("{Esc}", "Quit")

Call("StartCapture")

Func StartCapture()

While 1

Sleep(1000)

_ScreenCap_Capture("C:\Remote\pic.JPG")

Wend

EndFunc

Func Quit ()

Exit

EndFunc

Posted

#include <A3LScreenCap.au3>

HotKeySet("{Esc}", "Quit")

Call("StartCapture")

Func StartCapture()

While 1

Sleep(1000)

_ScreenCap_Capture("C:\Remote\pic.JPG")

Wend

EndFunc

Func Quit ()

Exit

EndFunc

It's exactly that what I wanted :)

Mr. Galpha >> How can I Thank You ;)

  • 5 weeks later...
Posted

hey i was needing somthing like this for a while but is there anyway to make the screencapture just the active window? like alt + printscreen does?

[Cheeky]Comment[/Cheeky]
  • 1 month later...
Posted

Guy's please help me in this error , I'm always facing like this error

Posted Image

that code was working with me but now I don't know what's happened please advice me

Posted (edited)

what's the wrong in this code ?

it was working

:) guy's please explain to me

Edited by kater
Posted

sorry :P

I forgot some functions about this language kindly remember me exactly how to solve this issue .

what's can I do to do it and what's the missing function I have to install it and from where can I download it

Pls help me because I did not use this language from the long time

#include <A3LScreenCap.au3>

HotKeySet("{Esc}", "Quit")

Call("StartCapture")

Func StartCapture()

While 1

Sleep(1000)

_ScreenCap_Capture("C:\Remote\pic.JPG")

Wend

EndFunc

Func Quit ()

Exit

EndFunc

Error , How to can I solve it , Guy's please remember me

Posted Image

:) please

Posted

If you are using Autoit 3.2.10.0 (latest version)

This should work:

#Include <ScreenCapture.au3>
HotKeySet("{Esc}", "Quit")
DirCreate("C:\Remote")
While 1
    Sleep(1000)
    _ScreenCapture_Capture("C:\Remote\pic.JPG")
WEnd
Func Quit()
    Exit
EndFunc   ;==>Quit

[u]Helpful tips:[/u]If you want better answers to your questions, take the time to reproduce your issue in a small "stand alone" example script whenever possible. Also, make sure you tell us 1) what you tried, 2) what you expected to happen, and 3) what happened instead.[u]Useful links:[/u]BrettF's update to LxP's "How to AutoIt" pdfValuater's Autoit 1-2-3 Download page for the latest versions of Autoit and SciTE[quote]<glyph> For example - if you came in here asking "how do I use a jackhammer" we might ask "why do you need to use a jackhammer"<glyph> If the answer to the latter question is "to knock my grandmother's head off to let out the evil spirits that gave her cancer", then maybe the problem is actually unrelated to jackhammers[/quote]

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
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...