Jump to content

Detect Exit


J0ker
 Share

Recommended Posts

Is there a way to detect when the Script Exit and then do something. I set an hotkey to end my script and that is ok, but if the user close the script by the taskbar then it wont do the things that I set with my hotkey. Is there a way to do an action when the user exit the script using the taskbar (well to detect it)?

Edited by J0ker
Link to comment
Share on other sites

I got a problem, I want the functio to work ONLY when the user exit the script from the bottom right task bar.

How can i set that? I dont want the function to work when there's an EXIT line in my script.

I read about the parameter but how can I use them?¸

The mode of exit can be retrieved with @ExitMethod.

0 Natural closing.

1 close by Exit function.

2 close by clicking on exit of the systray.

3 close by user logoff.

4 close by Windows shutdown.

Here's my function:

Func OnAutoItExit()
    IniWrite(@SCRIPTDIR & "\Config.ini", "Settings", "Stuck", "0")
    IniWrite(@SCRIPTDIR & "\Config.ini", "Settings", "Unstuck", "0")
EndFunc ; ==> OnAutoItExit
Link to comment
Share on other sites

Func OnAutoItExit()
    If @exitMethod = 2 Then
        IniWrite(@SCRIPTDIR & "\Config.ini", "Settings", "Stuck", "0")
        IniWrite(@SCRIPTDIR & "\Config.ini", "Settings", "Unstuck", "0")
    EndIf
EndFunc ; ==> OnAutoItExit

"So man has sown the wind and reaped the world. Perhaps in the next few hours there will no remembrance of the past and no hope for the future that might have been." & _"All the works of man will be consumed in the great fire after which he was created." & _"And if there is a future for man, insensitive as he is, proud and defiant in his pursuit of power, let him resolve to live it lovingly, for he knows well how to do so." & _"Then he may say once more, 'Truly the light is sweet, and what a pleasant thing it is for the eyes to see the sun.'" - The Day the Earth Caught Fire

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...