Can I catch Windows notifications? [closed] - delphi

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 months ago.
Improve this question
Can I somehow catch Windows notifications in RAD Studio? Such as browser notifications, or notifications from other application. Can I get the notification content?
UPDATE:
My program runs in the background, and when I receive a notification, for example a new email, my program brint to front and the notification body visible in the Memo.

If you are referring to Windows Notifications usually shown in the Action Center sidebar, then Delphi provides a TNotificationCenter component which supports it. For a how-to see the documentation: Using Notifications

Related

How to push notification to devices that are around -my location - ios? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I'm new to the IOS (swift) world. If someone can give me an idea it would be wonderful.
I'm trying to push notifications to all users within a radius. For example, if I'm in a park I want to send a notification to the people using my app in that specific park. If I move the notification is sent to devices on my new location.
I understand that "UNLocationNotificationTrigger" triggers notifications if a user enters in a determinate region, but that's not really what I want.
Thank you for your help
This should be done on the server side. You must track the location of all devices. And when necessary, you calculate the distance of each user to a particular device and send them a notification. You should not load one device with such logic.

My APP want get the message from SMS Inbox, how to do that [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
My APP (In IOS platform) want get the message from SMS Inbox, how to do that? I also know that Google Glass APP can do that in iphone. How to get the message from SMS inbox in swift? thanks very much.
You can not acces the SMS inbox on iOS, there is no API for it in the Public iOS SDK. What Google Glass does is handle the notification of incoming message via the Bluetooth Profile, this not something you can do in an app.
We don't have any public API to get access SMS at the moment. Sorry to say this but it is practically impossible with public API as of now.

How to get pending local notifications [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
How does an application get information about local ios notifications. Specifically, how can I cancel all pending local notifications belonging to a particular app like Facebook, etc.
To get remaining all local notification
NSLog(#"%#",[[UIApplication sharedApplication]scheduledLocalNotifications]);
and to cancel all local notification
[[UIApplication sharedApplication]cancelAllLocalNotifications];
Maybe it will help you.

iOS, APNS, Push Notification, DeviceToken,iPhone [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
We are registerting our iOS application for APNS. After that APNS provide a deviceToken. Is there any process to get the iOS device registration URL on APNS.
I think No. You need your own server where you will put notification logic.

Is there any way to simulate something similar Nintendo's Streepass functionality in iOS? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
Essentially is there any way to have an app run at all times in the background and sense other iOS devices around it running the same app?
you can have an app monitor your current location in the background. When you get location updates, you could talk to a web server that would tell you if other people are nearby.
You can't make apps that run as services on iOS though. There are only a handful of things they're allowed to do in the background like monitor location and play music.

Resources