Questions tagged [message]

For questions regarding Facebook messages, JavaScript messages, mobile messages (Android, iOS, windows-phone), etc. Not for use for error messages. Include additional tags to indicate messaging platform, programming language, etc.

Questions about sending and receiving messages of any kind. As this tag is vague, use a more specific tag instead if possible. For example, most questions about Facebook messages should have the tag for the programming language, , and possibly a tag for the API or framework you're using. If your question is about a , an , a window, a , an , … then use the appropriate tag instead. Do not use this tag (or any tag) to indicate that you tried something and got an error message.

4541 questions
12
votes
3 answers

How Can We Read Incoming SMS by using Application in iOS

In my application I am able to send an SMS programatically to a particular mobile number when the user clicks submit button. Then there is a response message from that mobile number now I want to read that message and populate that SMS text in to…
Suresh Peddisetti
  • 3,782
  • 3
  • 23
  • 26
12
votes
3 answers

How to delete delayed messages before they arrive at a Handler?

My Problem is that I need to send messages with a delay of 1 second. The handler then initiates some action, you're getting the picture. There are nevertheless some conditions in which the already sent message should be deleted ( before the second…
moritz
  • 2,448
  • 1
  • 20
  • 25
12
votes
1 answer

Custom JSF validator message for a single input field

I'd like to have different validation messages for every validator for different input fields. Is it possible in JSF to have a different validation messages for a single validator (e.g. ) for every input field?
Grolsch
  • 287
  • 2
  • 3
  • 10
12
votes
5 answers

Is it possible to send a single message to multiple numbers at a time using Twilio?

I'm developing an app that allows users to add people, info, and Name/phone, or select multiple numbers from their iPhone contact list to send SMS messages to the selected numbers. the problem is Twillio API needs to be call every time per number.…
user1357157
  • 131
  • 1
  • 1
  • 4
12
votes
4 answers

Whatsapp link on products?

For the iPhone Apps, is it possible to have a Whatsapp link on products? Once link it would send a message to my mobile number through whatsapp. Please advice.
SampathKumar
  • 2,525
  • 8
  • 47
  • 82
12
votes
2 answers

Is there another way of launching the Messages app in iOS? (for donations)

We're trying to submit an iOS app that makes charitable SMS donations. We've done a number of these in the past without issue; but Apple is no longer willing to accept our approach and have rejected our app. Their claim is that the app doesn't…
Wex
  • 4,434
  • 3
  • 33
  • 47
12
votes
4 answers

How to disable Android MediaPlayer debug messages

When using MediaPlayer I get the following lines of debug messages in LogCat constantly repeating: 02-13 14:30:52.090: V/MediaPlayer(21345): getVideoWidth 02-13 14:30:52.090: V/MediaPlayer-JNI(21345): getVideoWidth: 480 02-13 14:30:52.090:…
pilcrowpipe
  • 2,528
  • 6
  • 29
  • 41
12
votes
2 answers

How to disable warning in xcode on specific line?

I've got a call like this [Class method] and a warning saying that Class may not respond to "method" message. The "method" message does not indeed exist but my code use unknown message catching (using forwardingTargetForSelector) so it will run fine…
CodeFlakes
  • 3,671
  • 3
  • 25
  • 28
12
votes
2 answers

Codeigniter not logging

I can't seem to figure out why codeigniter isn't logging my log_messages In Config: $config['log_threshold'] = 4; $config['log_path'] = '/var/log/mydlp.log'; In script: log_message('error','here'); File location: -rw-rw-rw- 1 root root 0…
Aram Papazian
  • 2,453
  • 6
  • 38
  • 45
12
votes
5 answers

Permanently Delete MailMessage in Outlook with VBA?

I am looking for a way to permanently delete a MailMessage from Outlook 2000 with VBA code. I'd like to do this without having to do a second loop to empty the Deleted items. Essentially, I am looking for a code equivalent to the UI method of…
eidylon
  • 7,068
  • 20
  • 75
  • 118
11
votes
3 answers

Send MIDI messages over USB on Android

I would like to make an app on android which sends MIDI messages over USB to a computer to be able to control music softwares such as Cubase, FL, Reason, ect... Hardware MIDI controllers (e.g Keyboards) are automatically recognized in music software…
Jecimi
  • 4,113
  • 7
  • 31
  • 40
11
votes
2 answers

Observe for new System Notifications OSX

Is it possible to listen/observe for new notifications macOS receives? I mean like when a new iMessage or a Slack message is received (so basically everything that causes NotificationCenter to display a Notification)
arnoapp
  • 2,416
  • 4
  • 38
  • 70
11
votes
8 answers

Is there an alternative to the Notification pattern for multiple messages and success/failure?

Is there an alternative to the Notification pattern for multiple messages and success/failure? I have a class, OperationResult, that I use to return a Success boolean and a list of "error" messages. These messages are sometimes unexpected errors…
Patrick Szalapski
  • 8,738
  • 11
  • 67
  • 129
11
votes
2 answers

JSF converter resource bundle messages

Does anyone know where I can get a list of the converters used by JSF so I can set a custom message for them in the resource bundle?
Gerrie
  • 3,873
  • 4
  • 23
  • 26
11
votes
4 answers

Difference between event queue and message queue

I was just seeing the documentation of three methods which can be used to execute a piece of code in the UI thread while we are working in a worker thread. The methods are: public final void runOnUIThread(Runnable action) - Runs the specified…
Solace
  • 8,612
  • 22
  • 95
  • 183