Once you've loaded a mp3 into a sound object via createjs, how dow you destroy & clear it from memory?
Is there a `unload` item for Createjs' preloadjs/soundjs
600 Views Asked by tolmark At
1
There are 1 best solutions below
Related Questions in CREATEJS
- Easeljs snap to grid
- Issues with resetting an interval
- Audio tag auto play not working in android browser
- Load CreateJS canvas from json data
- Angular and CreateJS not finding the stage element
- createjs - stage.mouseX
- Video in Canvas Will not play WITHOUT undefined object errors
- How to change the width of a movieclip in flash html5 canvas?
- dipatchevent() isn't working in IOS
- CreateJS: Collision implementing problems
- Fixing cross domain issues on a 360 canvas createjs gallery
- CreateJS Events to Javascript events
- detect end of song - SoundJS
- createjs flash cc, separate manifest preloading
- How do I get a one-sided gradient effect for createJS beginLinearGradientStroke?
Related Questions in SOUNDJS
- detect end of song - SoundJS
- Audio track looping in Javascript without a delay
- Using SoundJS with node webkit and local MP3 files
- Multiple instances of sound (SoundJS)
- Two images playing the same sound when using "onclick" with create.js script?
- SoundJS: Why can't FireFox play mp3 file?
- SoundJS: Firefox is not able to play a mp3
- Repeating a short sound very fast with CreateJS
- Completed event not working on sounds played through audiosprite in IE
- SoundJS Cordova and WebAudio differences - caching audio files
- Is there a `unload` item for Createjs' preloadjs/soundjs
- SoundJS -- sounds played via instances not working in IE
- Best and most lightweight javascript for play sound in mobile devices
- Reverb in SoundJS
- First Time SoundJS User, Can't Seem To Get A Sound To Play
Related Questions in PRELOADJS
- createjs flash cc, separate manifest preloading
- ES6, PreloadJS and scope
- Force PreloadJS to use XHR for all loading
- Adding array of images to the stage with easeljs and preloadjs
- PreloadJS and Service Worker
- preloadjs getResult(audio) doesn't work
- How to pass ipcRenderer.invoke handler answer to electron renderer process using preload.js
- How to properly use preloads and window.api calls in electron?
- Is it possible to load a midi file using createjs?
- preloadjs + howler audio doesn't play
- Electron - preload.js is not loaded and error is occurred on Windows 10
- How can I use CreateJS's PreloadJS to load images and retain attributes?
- how to distinguish which picture put in the right position
- Load image with PreloadJS and clone the result
- HTML video does not play
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
There are static methods for this:
removeSound: Remove stored references to sounds by sourceremoveSounds: Remove multiple sound src'sremoveAllSounds: Wipe references to soundsExamples
Check out the docs for more info.
This is not a super common use-case, so if you run into issue, please feel free to open an issue on GitHub