Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Triggers, event log viewer
#1
Hello,
Still transitioning from QM to LA
is there a way to view log of events, there there is in QM?
Is there a trigger for changes made to a window/control? like change of name or "become visible" like in QM?

Thank you as always
#2
Quote:is there a way to view log of events, there there is in QM?
In LA no. You can find it in the Start menu (type to search).
 
Quote:Is there a trigger for changes made to a window/control? like change of name or "become visible" like in QM?
Look in Cookbook panel >Triggers and toolbars. To make a "change of name" trigger, add a "visible" trigger and use parameter later. Example:

Code:
Copy      Help
        Triggers.Window[TWEvent.Visible, cn: "QM_Editor", flags: TWFlags.RunAtStartup, later: TWLater.Name] = o => {
            if (o.Later is TWLater.Name) {
                print.it("name changed", o.Window);
            }
else {
                print.it("visible", o.Window);
            }
        };


Forum Jump:


Users browsing this thread: 1 Guest(s)