I open my app which runs a service in the background using Itoo after a while the notification of Itoo comes up. If you press it, it re-opens my app and I have two apps running (doubles my current screen). When I press the mobile's "back" button it goes back to my first app.
Is there a way to stop this ?
Also I can't use AI companion if Itoo is included in my app.
I found the blocks you are referring to but I'm not sure how to re-program.
My understanding is that if you click the notification it should open the app. If the app is already opened it re-opens another instance. I don't use any button and I don't want to run any Itoo procedure.
Also even if I fix this I will still have the same issue with the fixed Itoo notification that comes up from the CreateProcess block. If you click that it also opens another instance of the app
I am making a message receiver application from mqtt with the famous itoo extension. For the code block I have a little difficulty, when the notification comes in. I want to make it when pressed open the browser to see the news that I convey. it runs when screen1 is open, but not when closed.
forgive my language if it is not right, because I use translate. I am new and I am from Indonesia. Please give instructions, masters
Error in Itoo1.NotificationIcon block: the block literally does not accept string type blocks. You can avoid this by storing the string to a variable then feeding to the block but that ends up in a runtime error.
Hi, I am trying to read multiple machines. When I do this with my app, the app gets blocked until the reading of all machines is finished. That's why I'm trying to use 'Background Task' to implement something like a BackgroundWorker as in 'Visual Studio.net'. Initially, I tried to create a Background Task to get familiar with it. So far, the app does what it's supposed to, but I still have some questions.
I pass addresses to the task and receive the responses from the BroadcastEvent. Is that correct? Although it works, I'm not sure if it's correct or if it's just working by chance.
I receive a notification from the green circled block. Why? I don't need this notification. Can I suppress it?
It is not possible to suppress it unless you use the Create Task block instead of Create Process (which can only run your service for a few minutes).
I dont get the idea of what you are trying to do? Why do you want to store something, pass it on to the background service and get it back? I dont get whats happening nor what you want to do.
You may be confusing the extension with asynchronous operations or simply new-thread operations? Am I right? Because this extension, background tasks, is just to run tasks in background even while the app is turned off.
So you want to listen to all of the components that run in the background?
Currently the extension does not offer Any Event since generally limited number of components are used in background. And their events needs to be manually registered.
Hey, yea sorry for the late reply, but to just give some context I'm using the phone Call component to allow me to catch the number of incoming calls, the regular component incoming call event would only trigger with a specific number, the "any phoneCall" variant would trigger the event with any phone number calling, and would also return the phone number as a variable, I am looking to do this in the background, I've managed to get itoo to register regular events like clock1.Timer, but not something like clock.Timer / any clock.Timer. Which as u said is probably, because the extension doesn't support it. So yea thanks a lot for informing me!
Edit: Wait a second , I might've been mistaken about the phone call component, I just decided to go through the documentation one more time, and apparently yea the regular event does trigger with any phone number, which means I don't need to use an any phone call component, I can't believe I didn't catch this even though I've been using the phone call component for quite a long time now . This means that I should just be able to get by using the regular event, I'll go ahead and test things out, and see if everything works fine with this piece of information.
Edit2: Seems like I still can't get the event to trigger in the background, well here are my blocks that relate to the background process, I just can't figure out what's wrong.
Okay!! I'll be sure to try out the Notifier.LogInfo method, and also to answer your question the JmlPhoneCall is an extension that allows you to answer or cancel incoming phone calls, here's a link to the thread where I got the extension!
Edit: I went ahead and managed to get the notifier and logcat working, no changes tho on getting the event to trigger, I would say tho that having that the show alert method is still more convenient for this simple use case as I am still just testing in UI, and am not really needing any detailed logging information.