FYI. I am still a beginner, I tried many things and redo all of it. Suddenly it works on my iPhone but when I tried by using other phone (Android) and other iPhone. It doesn't work
For me, on Android it doesn't work either, probably the website is seeing the webviewer as a mobile browser. I used the webviewextra extension and it worked OK, but this won't help on your iPhone devices.
I want to add a webview that links to an AI website. The website is called Mathos AI. I am still a beginner so I put a simple blocks over webview component. But now I am facing a problem
" application error: a client side exception has occurred "
Well tbh, They taught us basic approaches. But then again what they task me to do is way out of the study. I tried to learn from all of the sources, and I found nothing. I can only make a basic calculator,. Not even with an advanced math equation. If anyone out there want to mentor me, I would gladly appreciate it.
The refurbishment consisted of upgrading the file access to the html asset file to make it independent of the Companion.
The html and js files are in the .aia assets, unchanged from the original post.
You can make this your own by adding nested Vertical and Horizontal Arrangements full of buttons labelled with the various text fragments that would make an expression, like sin(
Keep a global input_token_stack variable, initially empty list.
In a generic button click event, check the .Text of the button and see if it is in your list of tokens. If so, add the text to input_token_stack and refresh your input textbox with JOIN Using Separator '' of input_token_stack . If the Delete button or the Back button is clicked, remove the last item from input_token_stack and refresh the display from it. (This is a luxury. You could also settle for clipping the end of the input Text.)
Add a special case for the Back button to exit the app if the input stack is empty.