i'm creating a soundboard in Flash AS2, and i need that only one sound plays at a time, so if i play button 1, and then press button 2, button 1 sound stops and i listen to button 2 only. i'm making a test with 6 buttons, all of them in the same frame. i've found many answers responding that i would need to use on (press) {stopAllSounds () ; } on each button. so i did that, but now all sounds, including the one i'm trying to play, are stopped. so i end up hearing nothing. any ideas on how to solve this? thanks.
Flash AS2 one sound at a time
387 Views Asked by AdamXpelled At
2
There are 2 best solutions below
Related Questions in FLASH
- Failing write/read on RH850 with NOR flash
- Unique ID to transfer guest account data from Adobe AIR to Unity
- flashplayer_32_sa: SecurityError: Error #2028: Local-with-filesystem SWF file
- what is the simplest way and what applications to use in making an exe file that runs .swf file assetss
- Does a physical filesystem works only for a specific type of storage media?
- when I try to enable flash encryption in esp32, the bootloader size is large . But I'm unable to find bootloader field in partition table
- Manage FIFO implemented in a non-volatile flash NOR memory
- create a quiz with actionscript 3
- How to connect two x16 nor flash to nor flash controller?
- Looping in Adobe Flash Professional CS6
- AOSP flahed to android emulator
- How do I compile Flash app files with mxml and as extensions?
- Winbond W25Q01 (1G-BIT) Flash erases 256-bytes not 4K and fails write-read-verify after address 0x07000000
- On Pixel 7a Android AOSP
- Defer implementation of interface functions to child class
Related Questions in ACTIONSCRIPT-2
- (flash 8, as2) cannot connect in my mulltiplayer flash game that is using smartfoxserver pro
- For loop only sets last iteration
- Cannot get "else/if" statement to execute on button click in ActionScript 2
- XMLSocket request not working from Postman
- how do i make a movieclip move forever when an arrow key is pressed in flash actionscript 2.0? please answer
- Adobe Flash Professional CS6: ActionScript 2.0 Class Property Problem and Compile Error Display
- FlashDevelop not importing flash packages
- How to make a number variable change when a button is pressed? Actionscript 2.0
- Azure Integration account AS2 sync MDN issue
- Show integer numbers on textbox in Flash AS2
- AS2 Receive and Send in C# Azure Function
- How to run ruffle flash in full screen from the browser?
- Open As2 server for receiving files
- AS2 receive Java
- actionscript - how to make Key.isDown stop after ! press?
Related Questions in CS4
- How to apply image transitions in Adobe after effects CS4?
- Get the color of one pixel at Photoshop scripts
- 1084: Syntax error: expecting rightbrace before function
- Flash AS2 one sound at a time
- Flash CS4 How do you set variable to the Object Dragging Collison?
- Drag and drop game sort items to three targets
- Website broken after change of image on Dreamweaver CS4
- Encoding of measurements exported from photoshop CS4 to read in Python
- How to make it go and play a frame on main timeline when movieclip finishes without using a button?
- Creating Top Down Shooter in Adobe Flash CS4 using ActionScript 3 but bullets behaving weirdly
- Select pairs from an array (matching game) And add sound to that selection AS3 Flash CS4
- Need to unload an external swf from Array..cs4 as3
- AS3: Custom native cursor [Flash CS4]
- Is there a way to jump to functions inside the code editor in Flash CS4?
- Getting Selected Layer or group layers array using javascript (Photoshop CS4)
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 # Hahtags
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?
got the answer! just put this code on the frame where your sounds are located:
done.