• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

[Wurst] Passing this into Closure, or alternative?

Status
Not open for further replies.
Level 2
Joined
Aug 6, 2010
Messages
7
I have a class that contains a dialog. is there any way I can add a callback to it, and call a method within the class using a Trigger?


Code:
trigger t = CreateTrigger()
                    ..registerDialogEvent(this.mode)
                    ..addAction(-> onScoreClicked(0))

I cannot capture "this".

Are there any examples of how to do this, or do I have to extract my trigger outside of my class? There wasn't too much documentation on triggers.
 
Status
Not open for further replies.
Top