Hello!
How to disable error alerts with mit app inventor as it is done in php.ini?
Because when my application is not connected, there are error alerts that don't finish, so I'd like to disable errors in the settings. how do I do this?
Thanks
Hello!
How to disable error alerts with mit app inventor as it is done in php.ini?
Because when my application is not connected, there are error alerts that don't finish, so I'd like to disable errors in the settings. how do I do this?
Thanks
add this Block. It will eliminate display of most error messages. Leave the event handler empty).
ErrorOccurred(component,functionName,errorNumber,message)
Event raised when an error occurs. Only some errors will raise this condition. For those errors, the system will show a notification by default. You can use this event handler to prescribe an error behavior different than the default.
thank you so much. I've been looking for this all day. It works.
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.