Is there a way to check whether a process with a given process ID is alive in the system using actionscript? Which class in actionscript has functions to enumerate list of processes active in the system?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The
NativeProcessclass ( http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/desktop/NativeProcess.html) of AIR lets you execute a native process via the command line. Once it’s started, you can query if it’s still running.I don’t think there’s anything though that lets you query other process IDs (that you didn’t start). I’d imagine security issues are the reason.