Version 1.13.1- Fix: Vl Tab Changed Event: Signal vl_tab_changed is emitted multiple times when a new tab is added.
Version 1.13.2- Update: Vl Tab Changed Event: Add option to turn off event if vl tabs are hidden.
- Update: Vl Tab Changed Event: Add additional event argument: last_vl.
- Fix: Timer Event: Fix timer interval settings not read properly.
There is a modification to the event arguments of the "VL Tab Changed" event as it adds a second argument (previous_vl). You can access the event arguments as follows:
Code:
program:
args = globals(_event_args);
current_vl = list_item(args, 0, ',');
previous_vl = list_item(args, 1, ',')