jvanegmond Posted October 5, 2007 Posted October 5, 2007 (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 October 5, 2007 by Manadar github.com/jvanegmond
kater Posted October 5, 2007 Author Posted October 5, 2007 (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.gifDon'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 October 5, 2007 by kater
kater Posted October 5, 2007 Author Posted October 5, 2007 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 shootingwe 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
galpha Posted October 5, 2007 Posted October 5, 2007 #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 Solarlight27 1
kater Posted October 5, 2007 Author Posted October 5, 2007 #include <A3LScreenCap.au3>HotKeySet("{Esc}", "Quit")Call("StartCapture")Func StartCapture() While 1 Sleep(1000) _ScreenCap_Capture("C:\Remote\pic.JPG") WendEndFuncFunc Quit ()ExitEndFuncIt's exactly that what I wanted Mr. Galpha >> How can I Thank You
GaryFrost Posted October 6, 2007 Posted October 6, 2007 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.
lordicast Posted November 5, 2007 Posted November 5, 2007 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]
kater Posted December 21, 2007 Author Posted December 21, 2007 Guy's please help me in this error , I'm always facing like this errorthat code was working with me but now I don't know what's happened please advice me
kater Posted December 21, 2007 Author Posted December 21, 2007 (edited) what's the wrong in this code ? it was working guy's please explain to me Edited December 21, 2007 by kater
GaryFrost Posted December 21, 2007 Posted December 21, 2007 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.
kater Posted December 21, 2007 Author Posted December 21, 2007 sorry 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 itPls help me because I did not use this language from the long time #include <A3LScreenCap.au3>HotKeySet("{Esc}", "Quit")Call("StartCapture")Func StartCapture()While 1Sleep(1000)_ScreenCap_Capture("C:\Remote\pic.JPG")WendEndFuncFunc Quit ()ExitEndFuncError , How to can I solve it , Guy's please remember me please
weaponx Posted December 21, 2007 Posted December 21, 2007 Have you even considered installing UltraVNC on both the client and server?http://www.uvnc.com/Task complete.
SpookMeister Posted December 21, 2007 Posted December 21, 2007 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]
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now