• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

[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