İt helped?
still cannot
Can you be specific about what didn't work? It's helpful to see screenshots and/or a description of the actions you took and both expected and unexpected results.
i want to do translator using spinner, i followed this one people, i do the same, but i dont know why mine didnt work like their work
Your blocks image is very unclear. Could you make a new copy I can not see where you are using the Translator.GotTranslation Block. You probably need that to display the translation.
on my spinner it display nothing
Canned Reply: ABG- Export & Upload .aia)
Export your .aia file and upload it here.
.
can you access this ? my translator and currencyconverter screen didnt work, can you help me
please help me asap
I adjusted the sizing of parts of your Translator screen, and it works on my phone (Android).
I did not get a chance to look at your currency converter screen yet.
Your image files are too large for me to upload to this board.
Use IrfanView to shrink them and re-upload.
share what u adjust, my phone is ios
and this is my money management page, i dont know why it didnt work too i followed exactly same like the youtube , please help me
I shrank some of your images and deleted some others, to let the project fit on this board.
You should apply your own image processing, and clean up your images to waste less space and not duplicate screen elements like text and buttons.
TravelPlanner (2).aia (252.4 KB)
Regarding the translator, I only speak English, so I was unable to test translation from non-English languages.
The enclosed aia successfully translated English speech to other languages on my Android phone.
I don't have an iOS phone, so I can't test that.
Regarding your multi-language features, you have a lot of code repetition because you fail to use lookup tables and procedures.
Your currency rates are hard coded, so they are instantly out of date.
Here's a sample app that shreds the xrates site to get currency conversion rates:
I don't know if it still works, or xrates caught on and changed their site.
Did you ask on youtube?
This screen was empty in your aia.
You never loaded your Spinners?
Here is where you can download a recent (monthly) csv table of currency conversion rates:
To convert a currency between two arbitrary currencies, first convert to a common currency like dollars, then convert to the desired end currency.
Remember, the opposite of multiplication is division.
You should NOT need an if/then/else branch for each and every currency.
Keep the downloaded csv table in your Media folder and load it at Screen.Initialize time.
Load your List Pickers from the table.
Sample app:
currency_converter.aia (6.3 KB)
RprtRateXchg_20241001_20241231.csv (7.4 KB)
Look how short the blocks are when you switch to a table based approach.