#Stored Values

7 messages · Page 1 of 1 (latest)

weak ember
#

I'm having a hard time finding this information, How can I have 2 weakauras in the same group where WA1 stores some bit of information like an item ID and WA2 is able to access that info for any purpose such as displaying it in a text.

carmine gulch
#

!scanevents

carmine gulch
#

Pass it on with a fake event and catch that with a custom trigger

#

There's an example aura in there somewhere. While very old, the principles apply

weak ember
#

Damn I actually somewhat knew about scanevents and totally forgot about it. so you can use it with fake event somehow? I will began reading. Thanks

carmine gulch
#

You calculate value X in Aura A.
Aura A sends a fake event with ScanEvents, that has value X as the payload.
Aura B had a custom trigger that listens for that event, and then does something with value X in the custom trigger function