View Single Post
Old 09-28-2021, 10:18 AM   #731
capink
Wizard
capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.
 
Posts: 1,207
Karma: 1995558
Join Date: Aug 2015
Device: Kindle
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, ',')
capink is offline   Reply With Quote