ActionScript 2.0 :: Make Buttons For Website That Have Sounds Playing On Them During The Over States

Jan 20, 2005

I'm trying to make buttons for my website that have sounds playing on them during the over states. But when you move the mouse off the button, the sound keeps playing. Run that mouse everywhere, the sounds are all playing, it's chaos. How do I fix a button so that the sound stops playing when the mouse moves off?

View 4 Replies


Similar Posts:


Make 2 Simultaneously Playing Sounds?

Nov 24, 2009

I would like to make a small player where two sounds* can be compared.

- PLAY and CHANGE buttons

- On pressing PLAY button, two sounds (Sound-A and Sound-B for example) should play simultaneously (at the same time).

- While those two sounds play, Sound-B should be MUTED and Sound-A should be hear.

- On pressing CHANGE button, the situation changes: Sound-A is muted and Sound-B can be hear. And vice-versa.

*two sounds: both songs are the same, but one of them is remastered

View 2 Replies

Actionscript 3 :: Make Dynamic States And Add Buttons To It In Flex Using NOT MXML

Mar 23, 2012

I know how to add stages in actionscript but i don't know how to add children to them stages.

This is how I make my states.

var state1:State = new State();
state1.name = "state1";
states.push(state1);

[Code].....

View 1 Replies

ActionScript 1/2 :: Stop Other Sounds From Playing While Current Sound Is Playing?

Apr 10, 2011

I am creating a game that has 6 movieclips all on the main time line of the game. Each movie clip has three buttons that when clicked plays, pauses or stops a sound clip.When I press any of the sound clip play buttons that sound starts playing, the problem is when I click any of the other sound clip play buttons those sounds also start to play. Is there a way I can disable the other sound clip buttons while the current sound is playing then enable all of the buttons when the current sound has stopped.
 
This is the code that creates one of the sound objects

[Code]...

View 3 Replies

ActionScript 2.0 :: Get The Mc To Move But The Buttons Remain Inactive And Also The Rollover States On The Buttons Don't Work

Jul 8, 2005

I am having trouble with a job I am doing at the moment which has an mc with buttons within it. I want it so that when I roll over the mc it tweens from a small version to a larger version, and on this mc there are some buttons. At the moment I can get the mc to move but the buttons remain inactive and also the rollover states on the buttons don't work. I have attached a simpler version of what I am trying to do to this post.

View 3 Replies

ActionScript 2.0 :: Make A Website In A Number Of Buttons And Layers?

Sep 24, 2006

i'm trying to make a website in a number of buttons and layers. In one section i need to have an if statement on the buttons as where in the timeline they go is dependant on where the user is (this location is set in a variable called "destination".

The problem is that when i have = in the if statement it bypasses the first section and only does the else action (ie trace ("else")), and if i put == in the statement it only does the first action (ie trace ("gallery")) no matter what "destination" is.

here is my code:

on (release){
if (destination = "gallery"){
trace ("gallery");
}else{

[code]....

View 9 Replies

Professional :: Make Buttons Below Inactive/active When A Movie Clip Is Playing?

Dec 31, 2009

I've got an infographic I'm working on, and every time I roll over an image (a ring) the alpha goes up to 100, then I roll out and it goes back to 50. That much I'm good with.

Then, I click on each one of them, and a movie clip (built inside of each ring/button) pops up and plays. Fair enough.
 
I've got a script (ugly, but it works!) that will hide all other buttons while this movie clip is playing. But, when I click to close it, I can't figure out a way to make them reappear. I tried putting visible = true again for all of them, but no dice.

The actionscript for it is right below.

I'm not sure if there's anything I can do to make it modal in AS3 or something like that. Or should I go ahead and set it up in a parent/child kind of way (not too well-versed in that regard.
 
All the buttons to click on are in the same layer and I'm not sure if making them different layers in Flash would make any difference.

stop(); 
ring1926.movie1926.visible = false; 
// add a rollover to make the inside movieclip appear 

[Code].....

View 4 Replies

ActionScript 3.0 :: Create Buttons States For MCs?

Nov 25, 2009

I am creating a generic website that would have abstract MCs that would load jpg or TXT fields for the user interface to allow for fast updates to the site. The MCs that would make up the user interface would be empty and load things into it using XML or PHP later on. How would I create button states for the user interface MCs.  I started creating a function for every MC button state but I thought there might be a more efficient way. 
 
and is using URLRequest the way to link to pages with in a movie well the flash movie that is the site it's self?
 
/*---------------------------- THE START OF MY ACTION SCRIPT ------------------------------*/
var waywardLogo_mc:MovieClip = new MovieClip;
var theCollection_mc:MovieClip = new MovieClip;

[Code].....

View 3 Replies

ActionScript 2.0 :: Toggle On And Off States On Buttons

Jan 13, 2011

how to toggle on and off states on my buttons. Once a user clicked one it fades and disables ok as I want but i also want it to enable and fade back up again when they select another button. Below is my code:

PHP Code:

function GenerateShapes(shape_xml) { 
_global.shape_images = shape_xml.firstChild.childNodes; 
_global.disableShapeButtons = new Array();

[Code].....

View 1 Replies

Create A Movie / Website With Sounds?

Dec 9, 2011

If I create a movie or website with sounds or resources from flash kit can I still sell the finished product?

View 2 Replies

Buttons Effecting Parent Level States?

Oct 27, 2011

As I am finally dipping my toe's into AS3 from years of AS2, I am having an issue for my menu buttons (which are within a movie clip) effecting the activation of movie clips that are featured on the main timeline.

I can get this to run how i want it when each menu button is on the main timeline (by using the 'the click to go to Frame and Play' code snippet)...but when these button are within a movie clip, I can't figure out where in the code i have to add the _parent. command ?

I have attached the .fla to see what I have done. I am keen to keep using the code snippets scripts.

View 2 Replies

ActionScript 3.0 :: Get Active States For MovieClip Buttons?

Feb 27, 2009

Below is the code I have for my buttons.I have 3 different swfs loading in once each corresponding button is selected (CLICK). I also have rollover and rollout or idle states. Now the dilemma: Once a button (mc) is selected (CLICK) I need it to remain in its rollover state. Once another button is selected I need the previously highlighted button to switch to idle state and the new button to be highlighted... Sounds like the most basic, simple, AS3 101 question, but alas I am hitting a wall. Based on my provided code what is the best option for this, an array with an active state on the timeline, a toggle with Boolean ect, ect...?

Code:
var Hotspots:Loader = new Loader();
addChild(Hotspots);
moreInfo_btn.alpha = .5;
moreInfo_btn.buttonMode=true;

[code].....

View 4 Replies

ActionScript 2.0 :: Selected States For MovieClip Based Buttons

Jun 1, 2005

Lets say I have a nav with 4 items that are blue. If I click on one, I want it to turn red and stay red to reflect that Im looking at content in that area. If I click another nav item, the previous turns back to blue while the newly selected one turns red. I started to write a function and define a variable but I would like to see an example.

View 3 Replies

Pageflip 2.25 - No Sounds Playing On Preview

Sep 10, 2010

The free version over at [URL] displays sound in their online demo, but when I download the Fla. and preview it out of CS4 everything works but there are no sounds playing when I flip. SoundOn - true has been set, and I cant work out why it isn't working. No settings have been changed apart from soundon. I have tried with their older version 2.14 and that works fine.

View 4 Replies

ActionScript 3.0 :: Loading Sounds Before Playing?

Jan 16, 2009

There are 8 letters in the menu. Each letter provides a linkwhen clicked and a sound when rolled over. The letters will NOTAPPEAR on stage until their corresponding sound is completedloaded. I did this to avoid distortion during playback. The soundbit are pretty small as well. Anyway, the sounds are still distorted during playback and Idon't know why. They are all MP3. HELP PLEASE!! Here's the scriptfor one of the eight letters (movieclips) only to limit size you'llhave to look through:

public function Index() {
var D:MovieClip = new dMC();
D.x = 100;

[code]........

View 4 Replies

ActionScript 3.0 :: External SWF Sounds Playing Over Each Other?

Aug 26, 2009

Does anyone have any clue on how to unload an external swf with all its sounds?

View 1 Replies

ActionScript 2.0 :: Playing Multiple Sounds From Different MCs?

Sep 3, 2010

Working on a project with multiple sounds (all contained in different MCs) played by different key board events. Most of it works, but when I try to use simultaneous 2 button combinations to call upon a different sound, all 3 sounds play at once. The 3 sounds are as follows: the sound associated with the first button, the sound associated with the second button, and the sound associated with the 2 button combo. I've made several different true/false statements to override different events and states, but they don't affect the playing of the MCs. I've also tried using attachSound but I don't like the results I'm getting from that either.

How can I stop the first 2 sounds from being played, so only the 3rd sound can be heard?

View 2 Replies

IDE :: Flash Hiccupping When Playing Sounds?

May 4, 2010

I'm working on a game in Flash, and everything's going along great, until I start trying to play sound effects. The minute I start trying to play a sound, the whole app seems to "hiccup", frames get dropped, and things generally get ugly for a little bit. I'm loading sounds by copying them into my Flash CS3 library, exporting them for ActionScript with a Base Class of flash.media.Sound. I'm playing them through a class that looks a little something like this...

Code:
public class SoundPlayer {
private var _mySound:Sound;
public function SoundPlayer() {
_mySound = new ExampleGame.SoundFromLibrary();
} public function playSound() {
_mySound.play();
}}

This all seems pretty straightforward, so I can't figure out why Flash is complaining when it first tries to play the sound. The sound itself is a 40k. mp3 file that lasts about 2 seconds. Not the shortest sound in the world, but I'm sure I've heard larger sounds in games.

View 3 Replies

ActionScript 3.0 :: Stopping Movie Sounds During Website Navigation

Aug 1, 2009

I have a Flash site I'm developing which has a section with various flv movies. When I click on the section, the 1st movie starts automatically and plays fine but if I navigate to another area of the website before it finishes, the sound still plays in the background. If I click on a different movie thumb, the sound stops as it should.
 
how to code this in AS 3?
 
I'm learning it right now but still very green and I have no idea of how to make the music stop.

View 10 Replies

ActionScript 2.0 :: Disable All Buttons From User Forcing Button States?

Aug 25, 2008

I have 5 buttons. Each of which have different movie clips in the up, over and roll out state. To be more specific, each button looks like a window. on the up state curtains cover the windows. on roll over the windows open. on roll out they close again.

What I want to do is ON PRESS force the button to go to its roll out state and then cut off all user activity from all the buttons until the transition to the next page takes place.

View 1 Replies

ActionScript 2.0 :: Control The RollOver, RollOut And Release States From Buttons?

Apr 20, 2004

I have the following code to control the rollOver, rollOut and release states from my buttons (btn_company, btn_products, btn_services and btn_enquiry):

Code:
for (var i in this) {
if (this[i]._name.substr(0, 4) == "btn_") {[code]...

I also have 4 movieclips (title_company, title_products, title_services and title_enquiry) which I also want to control with those buttons. When btn_company is pressed, title_company should go to frame 2, When after that btn_products is pressed title-products should go to frame 2 and title-company should go back to frame one.

View 14 Replies

Actionscript 3 :: Playing Multiple Generated Sounds

Sep 6, 2010

Inspired by Andre michelle, I`m building a tone matrix in AS3.I managed to create the matrix and generate the different sounds. They don´t sound that good, but I´m getting there One big problem I have is when more than one dot is set to play, it sounds just horrible. I googled a lot and found the additive synthesis method but don´t have a clue how to apply it to as3.anybody out there knows how to play multiple sounds together? any hint?

View 2 Replies

ActionScript 3.0 :: Sounds Still Playing On Mouseclick When Do RemoveChild?

May 16, 2010

I've got 2 different movieclips, one named playScreen and one named gameOverScreen. I've got a function in playScreen that plays a gunshot everytime I press the left mouse button, but when I do removeChild on playScreen and addChild on gameOverScreen, the gunshot sound still plays when I press the left mouse button.

View 3 Replies

ActionScript 2.0 :: Playing Sounds From ExternalSound.swf On Frames

Mar 13, 2010

I have an animated flash site with lots of small mp3s placed directly on frames to match the animations.URL...Placing sounds on the frames added to the overall file size but was fine till I tried to create a sound off/on button - it seems that to manipulate ALL sounds they need to be placed into a movieclip.After followind a Kenny Bellows sound tutorial I placed all the little mp3's in an external file externalSoundObjects.swf.[code]I can place the mp3's back on the animation's timeline if anyone knows how I can get a sound on/off button to stop ALL sounds (incl. in child.swf's).Otherwise if anyone knows how to get the external sounds working I think I can then create a sound on/off myself

View 7 Replies

ActionScript 3.0 :: Flash Playing Multiple Sounds At Once?

Jan 16, 2012

i seem to be posting a lot at the moment but i am trying to get my Flash Skills up to date, hope im not annoying anyone too much. Basically i have a small project where pressing a button will trigger a sound, So when i click 'Button1' it plays the sound assigned to 'Button1', I have done this like the following.

[Code]...

Eventually i am going to have 20 different sounds, i know i need to probably assign each sound to its own individual sound channel. i tried manipulating the for statement to say something like var [i]Channel = new SoundChannel; in the hope that it would assign a number next to the SoundChannel thus making it unique,

View 5 Replies

ActionScript 3.0 :: Playing Sounds Backwards (reverse) In Flash?

May 5, 2011

I am looking anywhere to find a way to play sounds in reverse wih flash.

View 5 Replies

ActionScript 3.0 :: Playing Sounds From Other Domains Vs Security Sandbox?

Oct 26, 2011

I put my music player to one domain and music files to the other one (i.e.:[URL]. As the player's setup is via xml file I just set there to look for that .mp3s with given url. I thought I need to put some crossdomain.xml to the domain with mp3s but meanwhile my music player doesn't need it and loads all the music from other server and plays.. So, do I need some policy file or so as I thought, or maybe my thoughts are outdated?

View 9 Replies

ActionScript 3.0 :: Additive Synthesis - Playing Multiple Generated Sounds?

Sep 7, 2010

Inspired by Andre michelle, I`m building a tone matrix in AS3. I managed to create the matrix and generate the different sounds. They don�t sound that good, but I�m getting there One big problem I have is when more than one dot is set to play, it sounds just horrible. I googled a lot and found the additive synthesis method but don�t have a clue how to apply it to as3.

View 2 Replies

ActionScript 3.0 :: Stopping Sounds From Playing In Embedded Video Clip?

Jun 10, 2011

I have three embedded video clips that are inside of movieClips. They I have buttons that take you to a framelabel where those movieClips are located. Each movieClip containing each movie are on separate frames. (See attached image)

When I click on any of the buttons that take me to any videoClips other than the first one, make the audio from the previous embedded Video on the timeline in front of the one I went to , start to play.

I have SoundMixer.stopAll();

on everybutton before I tell it to go anywhere. what to do to only get audio from the video clip in that section of the timeline to play.

View 0 Replies

Professional :: Way To Make State Transitions/animations Of A Fl.control States?

Jan 19, 2012

Is there a way to make state transitions/animations of a fl.control states - button for example ?All I can do now is change the skin design and that's it, I can't animate between states like I can with Flash Builder skins. So is there a way to do that, any technique or I have to create a button component from scratch?

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved