i’m at the beginning of the app i download data from google sheet it’s ok
i use one extension TaifunTexbox for the bloc when TaifunTextbox AfterTextChanged
it’s not the first time i use it
i use the handwriting input from google without activity starter
even with another keyboard it stops !!!
there is something strange i had could use my app for than hour before it stops each time i use the companion to test it
i remember that i have reinstall the compagnion but even when i install my app it stops
i can’t see which bloc can create that
it’s hopeless and there are not yet the blocs about Firebase :o)
Please provide a more detailed explanation of what you are trying to achieve,
what you have done so far, what works, what doesn't work...
Please show your relevant blocks,
if relevant, your data or lists,
screenshots of the Designer screen or app in action,
so we can see what you are trying to do...
Right Click in Blocks Editor and select "Download Blocks as Image"
for the best image of your blocks.
Also:
What does Firebase have to do with this? what blocks are not there ?
hi
what i’m trying to do ?
it’s capture the input of handwriting text that i’ll compare to words or expression saved in a list
it worked for a momment and now doesn’t work anymore
It would really help if you provided a screenshot of your relevant blocks, so we can see what you are trying to do, and where the problem may be.
To get an image of your blocks, right click in the Blocks Editor and select "Download Blocks as Image". You might want to use an image editor to crop etc. if required. Then post it here in the community.
after changing the text in the textbox the AfterTextChanged event fires, there you change the text to uppercase, the AfterTextChanged event fires again, there you change the text to uppercase, etc. etc.
you might want to add a global variable as flag, let’s call it alreadyChanged, so after changing the text to uppercase set that flag to true and later if it already is true, do nothing and set it to false again
if alreadyChanged
set alreadyChanged To false
else
set alreadyChanged to true
continue here with your further processing