Hello, I like to make a script running in loop like this.
The Aim of this one is to close any active application detecting Forbeiden words like "sex,sexe,porno,etc..."
'---------------------------------------Censure.vbs---------------------------------------
dim variable
Set variable=CreateObject("WScript.Shell")
do
if variable.AppActivate ("sexe") Then variable.SendKeys "%{F4}"
if variable.AppActivate ("sex") Then variable.SendKeys "%{F4}"
if variable.AppActivate ("porno") Then variable.SendKeys "%{F4}"
if variable.AppActivate ("baise") Then variable.SendKeys "%{F4}"
loop
The Aim of this one is to close any active application detecting Forbeiden words like "sex,sexe,porno,etc..."
'---------------------------------------Censure.vbs---------------------------------------
dim variable
Set variable=CreateObject("WScript.Shell")
do
if variable.AppActivate ("sexe") Then variable.SendKeys "%{F4}"
if variable.AppActivate ("sex") Then variable.SendKeys "%{F4}"
if variable.AppActivate ("porno") Then variable.SendKeys "%{F4}"
if variable.AppActivate ("baise") Then variable.SendKeys "%{F4}"
loop