Multiple Handler Methods
This script allows you to assign multiple methods to a single window handler. All assigned methods will be executed when the handler is called.
Download
Script: download here
Read the tutorial on window handlers if you are not sure what they are.
Installation
Place this script below Materials and above Main
Usage
When assigning methods to handlers, simply re-use the same handle as such:
set_handler(:ok, method(first_ok)) set_handler(:ok, method(second_ok))
All methods will be executed when the handler is called.