how i can get text of dynamic label extension in event normal event by id(need the to get the ID for each component)
this event got after any dynamic web got text:
so i want to get id of each dynamic label to be save as unique tag in tiny db ..
maybe i must use if condition when any got text(if get component = web2..) then i can get any content of any dynamic component
After much thought, I found a better way than comparing the existing and new⦠What I thought of was to get the number of all texts in sheet, and every time this number changes, it means a specific update has occurred. This is possible with Kodular. But I thought it would be better to do it through Google Sheets, then get a response from Kodular. Because Google Sheets can create a function that prevents the number from changing if the change is just a space and other features by functions.
Another option could be to create a table containing the date of the last modification of a specific sheet, and use an AppScript OnEdit function to update the data in this table.
TablesUpdate
| Sheet name | Last edit |
|---|---|
| Sheet1 | 21/10/2025 14:01 |
| Sheet2 | 15/06/2025 21:25 |
| Sheet3 | 31/12/2024 00:01 |
Then, in the app, compare the local version with the downloaded one.
right now iam using this function directly from GSheet without using AppScript
=JOIN(β|β, FILTER(ARRAYFORMULA(REGEXREPLACE(TRIM(FLATTEN(A2:I)), β\s+β, " ")), LEN(FLATTEN(A2:I))>0))
this function if text changed by space or lines then no change

