Questions tagged [system-sounds]

80 questions
0
votes
0 answers

Notification Sound, Expo React Native Ios

I am using React Native with Expo and I am trying to configure custom sounds for IOS, when I use the default type in the sound key, it works perfectly with the default sound for push notifications, but when I change that key to the path where it is…
0
votes
1 answer

How to mute or adjust volume on windows systems sounds?

I am working on an audio application, and it is vital that we can mute Windows systems sounds (warnings, notifications etc) at critical times I can set the system volume and access a number of sound related things, but not the Windows systems…
sonnich
  • 151
  • 2
  • 11
0
votes
0 answers

How to use iOS sounds for push notification?

Apps like Whatsapp and Telegram provide a list of notification sounds which the user can set. For eg. in both Whatsapp and Telegram the list of sounds is divided into 2 categories: Alert Tones (Default, None, Aurora, Bamboo....) and Classic(Bell,…
0
votes
1 answer

Is there a way to play notes in VB.net that isn't console.bleep?

I am creating a program for interval recognition and I would really like the sounds outputted to be slightly... nicer than the ones outputted by console.bleep - preferably a piano sound or something like that. This is what I have done with…
Katie
  • 5
  • 1
0
votes
1 answer

Slack notifications not working on Windows 8

I am using Windows 8. For some reason I haven't been receiving the slack notifications on my desktop. When I searched online for help, I got suggestions to turn off the focus assist, but it was of no help to me, as I didn't find anything like focus…
Sanjay Katta
  • 23
  • 1
  • 5
0
votes
0 answers

Change System Sounds of an electircal device

following question: is it possible to replace for an example the system sounds of an electric device when turned on, like the peep of a oven or so, or when you lock the car etc. If yes, how complicated is that or in other words how can it be…
0
votes
0 answers

How to find the ID of less common system sounds?

Using this code you can play one of the more common system sounds: let systemSoundID: SystemSoundID = 1003 AudioServicesPlaySystemSound(systemSoundID) However, there are a lot of great sounds for your UI built into IOS that you find on these kind…
0
votes
2 answers

default sound for javascript alert() box

I've noticed that javascript alert() box plays the system sound "exclamation" found in Control Panel > Sound > Sounds tab > Windows > Exclamation. So changing the "exclamation" wav file there changes the sound the alert box plays. I've tested this…
themerlinproject
  • 3,542
  • 5
  • 37
  • 55
0
votes
0 answers

Check vibration System identifier on iPhone 7 or later

Can anybody help with check, vibration system sound works on iPhones 7 or later, i what to know vibration happened or not. I only have 6s. import AudioToolbox let peek = SystemSoundID(1519) AudioServicesPlaySystemSound(peek) I need this because…
Dmitriy Pushkarev
  • 390
  • 2
  • 5
  • 26
0
votes
1 answer

Windows 10 sound in C# WinForm application on load with textBox KeyDown event

In C# WinForm desktop application Form2, which is login form I have textBox1_KeyDown event: private void textBox1_KeyDown(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.Enter) { LOGIN(); } } Same LOGIN();…
user10388599
0
votes
1 answer

How To Use Apple's Notification Sounds for User Notifications Swift

I am wondering if it is possible to have one of Apple's notification sounds on a user notification instead of always using UNNotificationSound.default() for sounds or have the user be able to go into settings a pick a sound of choice.
0
votes
2 answers

Toggling a system sound - swift

I want to make it so that a button can be clicked, which will start repeatedly playing a system sound over and over (without overlapping the sounds) until the button is clicked again - so essentially, the button will toggle the repeated playing of…
D-A UK
  • 1,084
  • 2
  • 11
  • 24
0
votes
1 answer

iOS - System sounds not playing

I'm using system sound for a kind of notification to my users in an app. Previously, it was working as it should be. I was using AudioServicesPlaySystemSound(1009); I get the codes from this site and choose 1009. Later, it stopped working, not…
anyName
  • 113
  • 1
  • 2
  • 13
0
votes
1 answer

Can I access SMS sounds on the iPhone?

I was wondering if I can let the user choose an SMS sound, from the system sounds, for the Local notification of my app? EDIT: I mean ALL SMS sounds (horn, bell...etc). END EDIT Please don't tell me to record them :) Thanks!
Mazyod
  • 22,319
  • 10
  • 92
  • 157
0
votes
1 answer

Xamarin iOS how to get all available SysSound list?

I'm trying create a list of all available alert sounds given in an iOS device. In Xamarin's website, there's only one example: https://developer.xamarin.com/recipes/ios/media/sound/syssound-example/ I would like to know which additional sounds can I…