Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

nativescript-sound

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nativescript-sound - npm Package Compare versions

Comparing version 1.0.3 to 1.0.4

2

package.json
{
"name": "nativescript-sound",
"version": "1.0.3",
"version": "1.0.4",
"description": "Play a sound in your NativeScript app",

@@ -5,0 +5,0 @@ "main": "sound.js",

@@ -23,3 +23,3 @@ # NativeScript Sound

It's important to preload the audio file into the **sound** module before playing it; there is a delay during creation due to the audio being processed.
It's important to preload the audio file into the **sound** module before playing it; there is a delay during creation due to the audio being processed:

@@ -33,2 +33,25 @@ ```js

A good way to do this is to create a sound collection:
```js
sounds = {
"Tada": sound.create("~/sounds/tada.mp3"),
"Boo": sound.create("~/sounds/boo.mp3"),
// ...
};
```
If you wish to play a sound due to a button being tapped, leverage the following code (where `name` refers to the name of the audio file to be played):
```js
this.playButtonPressed = function(name) {
if (app.android) {
sounds[name].play();
} else {
var soundFile = sound.create("~/sounds/" + name + ".mp3");
soundFile.play();
}
}
```
### stop

@@ -35,0 +58,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc