Jump to content

Remote Monitoring - to print the screen every second


kater
 Share

Recommended Posts

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
Link to comment
Share on other sites

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
Link to comment
Share on other sites

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

Link to comment
Share on other sites

#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 ;)

Link to comment
Share on other sites

Responding to a report:

If you all don't like the way the person or persons are asking or demanding help either don't respond or put them on ignore.

No need for the other clutter.

SciTE for AutoItDirections for Submitting Standard UDFs

 

Don't argue with an idiot; people watching may not be able to tell the difference.

 

Link to comment
Share on other sites

  • 5 weeks later...
  • 1 month later...

File doesn't exist in the includes folder?

if you have 3.2.10.0 you don't need au3lib installed anyways.

In the UDFs is the ScreenCapture Management functions

SciTE for AutoItDirections for Submitting Standard UDFs

 

Don't argue with an idiot; people watching may not be able to tell the difference.

 

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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]

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

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