Is it possible to detect if the recent apps button has been pressed?

2024-03-22 16 26 11

I want to create a feature that automatically saves the memo when the user presses that button.

You don't save new memoes immediately in TinyDB?

So, by default, the memo is saved only when the 'save memo' button is pressed. I'm asking because I want to use it not only for a memo app, but also for other cases.

You could try the TextBox.LostFocus event, or:

Use the ActivityStateChanged event from the tools extension

if state = stop
Then store the data

Taifun

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.