Modify

#1185 closed Feature Request (Rejected)

Priority Flag for OnAutoItExitRegister

Reported by: eukalyptus Owned by:
Milestone: Component: AutoIt
Version: Severity: None
Keywords: OnAutoItExitRegister OnAutoItExit Cc:

Description

suggestion:
the higher the value, the later the Func-calling

standart OnAutoitExit value = 100

OnAutoItExitRegister("_MyExitFunc",105)
OnAutoItExitRegister("_MyExitFunc2",50)

results in this order:

_MyExitFunc2 (flag=50)
OnAutoitExit (flag=100)
_MyExitFunc (flag=105)

would be nice ;)

Attachments (0)

Change History (2)

comment:1 by TicketCleanup, on Sep 18, 2009 at 12:00:02 PM

Version: Other

Automatic ticket cleanup.

comment:2 by Valik, on Sep 18, 2009 at 4:47:34 PM

Resolution: Rejected
Status: newclosed

No. Priority should not matter in a well designed script. It's also a can of works I really don't feel like opening. The system was designed to be a queue, first registered, first invoked. If priority is that important to the operation of your script then register the functions in the proper order.

Modify Ticket

Action
as closed The ticket will remain with no owner.

Add Comment


E-mail address and name can be saved in the Preferences .
 
Note: See TracTickets for help on using tickets.