ActionScript 3.0 :: MovieClips To Change On Sound_Complete Event?

Sep 19, 2011

I have a playlist menu made up of movie clips acting as buttons, one clip for each track from a CD. The user clicks on a button, a corresponding sound clip plays and the movie clip button the user selected switches from frame 1 to frame 2 to change color while the sound is playing to show which track is currently playing.

Using an array to store the music tracks (named "Track 01" to "Track 08") and a "switch" command, my user is currently able to select and listen to a given track. My current problems lie with presentation.

I am having two problems with this project:

1. If the user allows the track to play through to the end, I need a single function to be fired on the SOUND_COMPLETE event (and I have applied the appropriate listener to my sound channel) which will reset the button to frame 1, as a visual indicator that the track has stopped. I have been unable to come up with such a function as yet.

Currently, the selected button just stays yellow (frame 2) instead of turning white (frame 1), and the user has to click twice (instead of once) to make the track play again.

2. My playlist includes a "play all" function to play all the tracks through in sequence as laid out in an array. While the track sequence plays fine, I would like to have the corresponding button for each track jump to frame 2 while that track is playing, then back to frame 1 when the track stops.

View 0 Replies


Similar Posts:


IDE :: SOUND_COMPLETE Event Does Not Trigger?

Jun 6, 2007

I am working with a short vocal track and when the audio ends I would like a replay button to appear. The codes should work fine, no errors appear. Trace displays nothing...Here is some of the code:

var clip = "testClip.mp3";
//Create the Sound & SoundChannel Objs
var soundReq:URLRequest = new URLRequest(clip);

[code].....

View 5 Replies

ActionScript 3.0 :: SOUND_COMPLETE Event Does Not Trigger?

Sep 18, 2010

This should be easy but I can't figure out. The sound is playing which means the mp3 file was successfully loaded but SOUND_COMPLETE event does not trigger

Code:
private var soundReq:URLRequest = new URLRequest("blabla.mp3");
private var sound:Sound = new Sound();

[code].....

View 2 Replies

ActionScript 3.0 :: Getting The SOUND_COMPLETE Event To Trigger?

Oct 4, 2011

I'm trying to run some simple code for a Flash slideshow involving the SOUND_COMPLETE event.All I'm trying to do is to get to the next frame where my nav buttons show up after the current audio file plays completely.I'm aware that new Sound Channel object is returned after the audio file plays and a new eventListener is required, but I've inserted a new listener in every place imaginable and I still can't get this to work.Here's my code.

var soundReq:URLRequest = new URLRequest("Slide_1.mp3");
var sound:Sound = new Sound();
var oneSoundChannel:SoundChannel = new SoundChannel();[code]...........

View 3 Replies

Actionscript 3.0 :: SOUND_COMPLETE Event Will Not Fire

Sep 28, 2010

Working on an mp3 player that i have cobbled together myself, bit rusty on the as3 so im sure it could be improved in many ways but the it works apart from that i cannot get the SOUND_COMPLETE event to fire at the end of a track, thus playing the next track. I have looked on this forum and others but cannot seem to get this to work

[Code]...

View 6 Replies

ActionScript 3.0 :: SoundChannel Event.sound_complete Not Working?

Mar 4, 2010

For some reasons, my soundchannel event.sound_complete is not working. Basically, my class is to import sound into it and to allow use to change their volumes and the speedness of the sound.
 
This is the tutorial for the speed [URL]
 
Right now, what I want to do is to auto loop back the song once the song have finished play but I have having troubled doing it.

[Code]....

View 5 Replies

ActionScript 3.0 :: Looping Mp3 File And Event.SOUND_COMPLETE

Jul 3, 2007

I am trying to find a workaround to the problem of looping mp3 files, basically the silence in the transition (from end to start). I could use wav files but I need to load the file externally, which makes not possible to use wav. So I did this

HTML Code:
var channel:SoundChannel = myMp3.play();
channel. addEventListener (Event.SOUND_COMPLETE, onComplete);

[Code]....

Edit: Now I know it is not a problem of flash, it is problem of the mp3 format itself.

View 7 Replies

ActionScript 3.0 :: Flash Event.SOUND_COMPLETE Not Working 2 Well?

Feb 10, 2011

I have a movie that has a bunch of animations on diferent scenes the problem is that I need my movie to wait for my sound to finish before it goes to the next scene, when I use the sound complete it works fine on the first scene but it won't go past that.

Code:
import flash.media.Sound;
import flash.net.URLRequest;

[code]....

View 1 Replies

ActionScript 3.0 :: Play Sounds One After Another Avoiding Overlapping Without Using The SOUND_COMPLETE Event?

Jun 20, 2010

is there a way to play sounds one after another avoiding overlapping without using the SOUND_COMPLETE event by SoundChannel? I have a few sounds to be played in order and using SOUND_COMPLETE would take me to add to many listeners.

View 3 Replies

IDE :: SoundChannel.SOUND_COMPLETE Won't Fire

Jan 12, 2009

i have a little flash-player with a playlist and so, it plays normally a vlc-mp3-stream but has an extended prelisten-function (wich plays the mp3's directly via http, secured with a password)i've got an array with 2 Sound()-objects (for preloading purposes), the code looks like this :

Code:
playStream = url=="";
if (playStream) {
SoundObjects[SN].load(new URLRequest("http://" + URL + ":8001/MIRstream.mp3?" + Math.random()), sloader);
} else {

[code]....

this works for the vlc stream (which is not continuos), but not for the mp3s on the http-server in my opinion, this doesn't makes sense..except, maybe the recent CSRF-hardcore-paranoia [URL]

PS: i use AS3 with flex_sdk_3.2.0.3794 and flashdevelop (i activated flash10-support, but it still works in fp9)

View 1 Replies

ActionScript 3.0 :: Play Sound Only Once SOUND_COMPLETE Not Working?

Apr 11, 2009

I have a button that rotates a wheel 90 degrees each time the button is pressed. What I'm trying to do, is play a sound when the wheel stops at each rotation. So something like this:

Wheel rotates to 90 degrees.
90 degrees = sound #1
Sound #1 plays once.

The rotation works fine, but the problem is, when I tried to do this I put in a statement that with my wheel named "wheel" if wheel.rotation==90 play my sound. But my sound keeps looping and SOUND_COMPLETE is not firing to trigger it to stop.

[Code]...

View 4 Replies

Flex :: Catch A ComboBoxes Value Before Change With A Change Event?

Feb 3, 2010

I am displaying a combo box in something of a WYSIWYG preview. I want the user to be able to click on the combo box and see the options inside, but I don't want them to be able to change the value. I tried using preventDefault() on the change event but it doesn't work. I don't want to disable it because I do want the user to be able to "look inside" the dropdown.

So I'm trying to block the change, but can't. My next resort is to change the selected index back to what it was before the change, Is there any way to do this within the scope of a ListEvent.CHANGE event listener?

Current Workaround is to basically re-assign the controls selected item the same way I am defining the selected item when I originally build it (a default selection). So a user sees their change then it immediately changes back to the default selection.

View 1 Replies

AS3 Array Change Movieclips

Jun 8, 2009

I have 2 arrays i.e.:[code]Is it possible to set the color of the moviceclips (mcclipsArray) to the relevant colors from the second array (mcclipsColorArray), so movieclip a becomes blue, b becomes red etc.

View 2 Replies

ActionScript 1/2 :: Change The Color Of Some Movieclips?

May 12, 2011

In my movie i can change the color of some movieclips. But when im opening the movie after some it reverts to the older color. What i want to do is save my movieclip's color and load it whenever im opening the movie.

View 1 Replies

ActionScript 3.0 :: Change Depth Of Movieclips?

Mar 14, 2012

i want when user rollover on any movieclip it comes on top after rollout it goes it's original position but, this code is showing error.ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller.
 
 private function pan3D():void{
excelmc=thumbswork.excel
officemc=thumbswork.office
googlemc=thumbswork.google

[code]....

View 1 Replies

ActionScript 3.0 :: Change The Positions Of Movieclips

Nov 14, 2009

i wanna know how to change positions of movieclips.[URL]

View 4 Replies

ActionScript 3.0 :: Add Event Listener To Multiple Movieclips

Mar 19, 2009

How can i add an event listener to multiple movieclips using a for loop in AS3 so that when i click on a movieclip, flash traces the name of the clip i clicked. This would be it's equivalent in AS2:

View 3 Replies

ActionScript 3.0 :: Event.target And Nested Movieclips?

Sep 23, 2010

I have a bunch of movie clips in my main timeline with at least 2 nested clips inside them, MyMc.nested1.nested2 etc. I have given the top most movie clips that sit on the main timeline instance names. In a document class I created a private variable typed as an array and placed all those MC names in that array. I then looped through the length of the array and assigned 2 event listeners to each instance. Example:

for (var i:uint = 0 ; i < _activities.length ; i++){    _activities[i].buttonMode = true;    _activities[i].addEventListener(MouseEvent.MOUSE_DOWN, pickUp);    _activities[i].addEventListener(MouseEvent.MOUSE_UP, dropIt);} 
 
in the event pickup() is were my trouble seems to come in.In the pickup function I have the following:
 
event.target.startDrag() 

This seems to work, but only on the lowest nested Movie clip......nested2I can use event.target.parent.parent.startDrag() and that seems to work.... Except when I place another movieclip in the second layer of the of the MyMC , if that is accidently clicked, it will now drag the Stage.I attempted to use the event.target.mouseChildren = false but that only seems to work on the lowest nested object... nested2 as that seems to be the one I am clickingIs there something I am missing to say, click only the top level mc then ignore all nested mc?

View 3 Replies

Professional :: How To Change MovieClips Background Color

Oct 26, 2010

I have a moviclip and I want to change its background color on mouse over event. I think that I have to use ColorTransform, but I've not understood how to use it, I've not understood how the multipiers and offsets work. At beginning the background is #000010, I want to change it to #000030. The moviecip's instance name is borse_mc, how to apply the change to it?

View 2 Replies

ActionScript 2.0 :: Change Attached Movieclips X Position

Apr 12, 2011

I am using the following script in a MC to produce an empty movieclip and fill it with evenly spaced movieclips on demand.[code]The last piece of code repeated below should remove one of the attached movieclips when it is created then remove its iteration from the array and loop through all movieclips after it in the array and minus 30 from their y coordinate:[code]When I trace Wine[mc] it produces a list of names of movieclips after it in the array as it should, and the movieclip is removed as it should but the coordinates of the other movieclips remain unchanged.

View 1 Replies

ActionScript 3.0 :: Removing Event Listeners From Movieclips In Class

Mar 21, 2011

I'm creating a class for a game, and I'm having a problem removing event listeners from movieclips in that class.In the class file I have an enterFrame event which puts the movieclips into motion - I want to remove that event listener when the movieclip is removed from the stage.I made the function 'public' in the class file and tried to target it as follows (animal is the movieclip)animal.removeEventListener(Event.ENTER_FRAME, animal.onEnterFrameHandler)

View 2 Replies

ActionScript 2.0 :: Can't Assign OnRelease Event To Array Of Movieclips?

Jan 18, 2009

I'm creating an image gallery and the below code is what I have come up with to create a 'container' movieclip which dynamically adds a number of thumbnails, each as a separate movie clip, one after another vertically inside the container (which is contained inside a 'main' movieclip - note the existence of mc1 is to enable me to mask the container - this is worknig so you can disregard it).(Note the number of clips is currently hardcoded to 7)

Code:
image = new Array(); //array of movie clips to be contained
imgLink = new Array();

[code].......

View 9 Replies

ActionScript 2.0 :: Add On(press) Event To Dynamically Created Movieclips

Aug 8, 2009

i have a movieclip named "mc" and i want to load many images in it and add on press event to those images.

For that, i have a button which is when click adds images to movieclip "mc".

I created empty movie clip in "mc" and loaded that empty movie clip with images. But i m not able to attach on press event to that empty movie clip.

Here is my code:-

In button :-
on(press)
{
_root.fun();

[Code]....

I even tried to add listener to movie clip (commented portion in above code) but that also didnt work.

View 2 Replies

ActionScript 3.0 :: MouseOver Event Canceling Due To Child MovieClips

Aug 19, 2010

What I've got is a clip that when moused over expands down, and when moused out contracts back up again...simple right.

The problem I've got is that as soon as I place a child inside the expanding clip (which is another expanding and contracting clip). the listener gets blocked by its child making it contact before it should. This sounds a little confusing, but will make alot more sense when viewing my code here...

Code:
import com.greensock.*;
import com.greensock.easing.*;
var section1:Section1 = new Section1();

[Code]....

By the way I will be putting buttons inside the clips eventually, so disabling the clips contents is a no go.

View 1 Replies

ActionScript 2.0 :: Nested Movieclips - Event Listeners And Depth

Dec 2, 2005

I have two movie clips. The child movieclip is a button with rollover events which is nested inside the parent. I would like the parent to also have rollover events, but I understand that this is not possible in flash. I am familiar with two workarounds: event bubbling/delegation and the event listeners.

[Code]....

View 7 Replies

ActionScript 2.0 :: Event Listeners - MovieClips Fade In At Different Times

Aug 2, 2007

Flash CS3, actionscript 2.0. I have a timeline animation that I am trying to convert to actionscript. Basically there are 8 movieclips that I have added to the timeline that fade in at different times. I have the code for each of the tweens figured out
(var laugh:Tween = new Tween(laugh_mc, "_alpha", Strong.easeIn, 0, 100, 17, false)
But I need one to start one, then when its finished, go to the next one without using go to and play.

View 6 Replies

Actionscript 3.0 :: MouseOver Event Cancelling Due To Child MovieClips?

Aug 13, 2010

Which can be seen here...[URL]

What seems to happen is as soon as the cursor goes over any of the MovieClips that are inside of the expandable button the MouseOver event is getting cancelled. and the MouseOut event gets Called (I presume that it no longer thinks it is over the clip due to the call getting blocked by the content clips). This can be seen when the mouse goes over the text (which is a MovieClip inside the expanding button). I'm pretty sure this is to do with event propagation, and is probably quite straight forward to sort, but I'm just not sure where? here's my code...

Code: Select allimport com.greensock.*;
import com.greensock.easing.*;
section1.NavBar1.scaleY = 1;
section1.WhiteBar.scaleY = 0;

[Code].....

View 1 Replies

ActionScript 3.0 :: Reposition All Of Movieclips When The OnResize Event Gets Triggered

May 4, 2010

There seems to be just one problem I cant get around. Its a full screen flash site so when the browser gets resized, it looks all weird until you refresh the browser. I think it would be too hard to make a function to reposition all of my movieclips when the onResize event gets triggered so I figured it may just be easier to restart the flash movie from the start when it gets triggered, how could I refresh the movie, or possibly even refresh the browser? here is the site so you can see what I am talkin about [URL]

View 4 Replies

ActionScript 3.0 :: CLICK Not Firing When MovieClips Change States?

Dec 22, 2009

I have a MovieClip Button, btn, made up of 2 MovieClips, sqrT and sqrB on top. sqrB is stopped at an empty frame. On Down, sqrB stops at a MovieClip frame, on Up, it goes back to the empty frame. On Click, it traces "Clicked!", but Click never fires. Why is this, and is there a way to make it work without using alpha?

Code:
btn.sqrT.gotoAndStop("square");
btn.sqrB.gotoAndStop("blank");
btn.addEventListener(MouseEvent.MOUSE_DOWN, onDown);

[Code].....

View 1 Replies

Flash :: Cleanup MovieClips On Scene Change In ActionScript 2

Nov 21, 2010

[Code]...

The main scene is overlayed with all the MovieClips I had in the previous scene. How can I automagically clean them up?

View 1 Replies







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