ActionScript 2.0 :: Possible To Retrieve Volume Level Set By User In Another Frame?

Mar 27, 2005

I have this code where the player can set their volume;
var my_sound:Sound = new Sound();
my_sound.loadSound("C://Documents and Settings/me.my-comp/My Documents/My Music/Unknown Artist/Unknown Album (8-09-2004 10-55-17 AM)/my_song.mp3", true);
this.createEmptyMovieClip("knob_mc", this.getNextHighestDepth(),0,0,140,64);
knob_mc.left = knob_mc._x;
knob_mc.right = knob_mc.left+100;
[Code] .....
OK, now the catch, this code works fine, however, how would I make it possible for the volume level to be retrieved in another frame and all the sounds in that frame are played at the set volume??

View 6 Replies


Similar Posts:


Actionscript :: Retrieve An Xml Nodes Root / Top Level Parent?

Jan 3, 2012

how do i retrieve the top level parent of an xml node in actionscript please?

<companies>
<company id="1" name="boo" level="1">
<company id="2" name="hoo" level="2">[code]......

View 1 Replies

Configure/control The Volume Level Of A Mp3?

May 4, 2009

Is there a way to configure/control the volume level of an mp3 that automatically plays in your flash segment?  In other words I'd like for the volume to play at a 30 or 50% level.

View 6 Replies

ActionScript 3.0 :: Get Volume Level Of  NetStream?

Nov 25, 2011

I want to get the activity level of audio of a NetStream, similar to how you can do it with a Microphone.In this article,

[Code]...

View 2 Replies

Flex :: Algorithms Use For Audio Volume Level?

Jul 22, 2009

Let's say I have a slider that can go between 0 and 1.The SoundTransform.volume also ranges between 0 (silent) and 1 (full volume),but if I use a linear function,let's say SoundTransform. volume = slider.volume, the result is rather not pleasing.I really haven't studied the human ear,but I overheard once that human perception is logarithmic, or something similar. What algorithms should I use for setting the SoundTransform.volume?

View 7 Replies

Animation - Volume Level On Button In Flash?

Jan 13, 2011

i want to control sound in my movie clip by the button which i designed in flash. for ex.: my default sound is 100% on home button & when i click on contact(last button) the volume level goes to 20% same as in between buttons.i use this script to call the sound in flash

bgSound = new Sound(this);
bgSound.attachSound("sound1");
bgSound.start(0,99);

now tell me what i put in buttons to manage sound level.

View 2 Replies

ActionScript 2.0 :: Mouse Position On Stage Dictating Volume Level?

May 30, 2007

i've got a MC named 'enterBtn', i want the volume of 'crowd.wav' to increase when the mouse moves towards 'enterBtn' and decrease when moving away. i don't know if this helps, but the co-ordinates of enterBtn are x =530, y = 344.

[Code]...

View 2 Replies

AS3 :: Can't Retrieve A Facebook User's Friends List?

Apr 20, 2011

i am trying to write a facebook app using as3 and the facebook-actionscipt graph api library i am having trouble getting a user's friends list, while i have no problem getting a user's other data (favorite movies, for example)

[code]...

ok after doing some more searching i find that getting friends-of-friends with any api is impossible this is very interesting - you can access friends-of-friends manually as a facebook user, but not automaticallythis means it is not a privacy issue at all - it is something Facebook wants to keep for itself only - for the "People You May Know" section in the facebook page

View 1 Replies

ActionScript 2.0 :: Level Up When User Got 10 Points?

Nov 24, 2003

I am a actionscript Newb, and I just started making a very simple game. In this game little bugs fly across the screen which you kill with a fly swatter. When you kill enough bugs (points) the level goes up and the game gets harder. Ive got it so that when you kill the bugs your points go up that works fine. I want your level to go up when you get to 10 points. Ive got this code on the main timeline:
"if (Points == 10 ) {Level++}"

View 6 Replies

ActionScript 3.0 :: Create User Interaction Simulating The Use Of A Spirit Level?

Jan 18, 2012

I need to create a user interaction simulating the use of a spirit level showing that a rectangular object on the stage is level. It doesn't have to actually work like spirit level, basically just has to give the impression that it has worked like one.

Maybe make the bubble of the spirit level should move (become animated) when being dragged to the object, then settle (animation come to a stop) when dropped in place on top of the rectangular object? Although I am unsure of the code to go about this?

View 4 Replies

ActionScript 2.0 :: Set The Value Of A Variable And Then Retrieve It In Another Frame

Mar 26, 2009

how I can set the value of a variable and then retrieve it in another frame. To put this into context, I would like to dynamically load an external text file for different restaurant menus - depending on which button is clicked. I.e. Mains >> "mains.txt". What I have so far in the dynamic text box AS is the following:

[Code]...

View 2 Replies

Flash :: Proxy - Using SWF Applications To Retrieve A User's "real" IP Address?

Jun 27, 2010

I'm almost certain this is possible, but am not sure how to go about it.

Basic idea: User visits a website using a HTTP/socks proxy. Hidden .swf file is embedded on the site which, when loaded by the client, sends data back to the web server, and that allows the IP to be logged along with a corresponding session ID of some sort which ties the proxy IP and the true IP together.

My question is how would I go about doing this in flash? I've searched for examples, but all I've managed to find on the subject is people claiming that it's possible to do.

View 2 Replies

Get Sound Volume Of Frame With Javascript API?

Jun 24, 2009

Is it possibleto get the sound volume of of a specific frame or specific time of sound item with the Flash Javascript API maybe together with Action Script?

View 1 Replies

ActionScript 2.0 :: Go To Certain Frame Within Level 0?

May 1, 2007

I am trying to go to a certain frame within level 0. When you are in level 4, for example, and you click the button that takes you back to level 0, I would like to bypass the preloader and initial animation in level 0 and start at frame 3. I would like to think that it's as easy as:


loadmovieNum("main.swf", 0);
_level0.gotoAndPlay(3);

But somehow I'm thinking it's not that easy... Because it didn't work .

View 1 Replies

ActionScript 3.0 :: Mic Level Changing Frame?

Aug 14, 2009

I dont know the first thing about Actionscript, so I dont know if this goes in Newbies or not because I'm not a newbie to Flash, just the programming aspect.Basically what I'm looking for is this script:

m = Microphone.get();
attachAudio(m);
m.setUseEchoSuppression(false);

[code].....

View 4 Replies

ActionScript 2.0 :: Manage Volume Of More Than One Sound In Flash Per Frame?

Jun 27, 2007

In a code im currently working on, I have 3 sounds that I need to maintain constantly, but It seems flash can only manage 1 sound per frame.

How can I manage the volume of more than one sound in flash per frame?

View 10 Replies

ActionScript 2.0 :: Microphone Level Changing Frame?

Aug 14, 2009

I dont know the first thing about Actionscript, so I dont know if this goes in Newbies or not because I'm not a newbie to Flash, just the programming aspect.I originally found this online.URL...Basically what I'm looking for is this script:[code]Can someone please plug this idea into this code? I would REALLY be grateful! I need this for a school project and don't know anyone who knows actionscript! I believe to someone who knows AS this should be fairly simple. Once I have the finished code, I can edit the frames to suit my puropse.

View 7 Replies

ActionScript 2.0 :: Loading Swf Into Level And Starting At Certain Frame?

Jan 15, 2009

I am using levels for this project to allow transparency transitions between swf files as they load. I created two variables:levelvar=5;removevar=(levelvar - 2)The external swf files load into _level0.levelvar and removevar prevent the root file from unloading. All is well except on one button I want it to load the swf at a particular frame. I tried this:

button.onRelease = function() {
loadMovieNum("contact.swf", _level0.levelvar);
gotoAndPlay ("_level0.levelvar" 52);

[code].....

View 0 Replies

ActionScript 3.0 :: Microphone Level Changing Frame?

Aug 14, 2009

I posted this in beginners. But I guess this is a better place to post it. I originally found this online. [URL] Basically what I'm looking for is this script:

m = Microphone.get();
attachAudio(m);
m.setUseEchoSuppression(false);
onEnterFrame = function () {
circle._xscale = circle._yscale = m.activityLevel+50;
};

EXCEPT that instead of scaling, I need the mic level to affect what frame is being shown.(Circle is a graphic symbol)

[Code]...

View 3 Replies

ActionScript 3.0 :: GotoAndPlay Frame On Higher Level?

Sep 18, 2010

I've got a button that, when clicked, needs to play a frame. Normally I'd just use the gotoAndPlay feature, but the frame I want to play is on a higher level than the button. That is to say that the button is inside of a few movie clips but the frame I want to point to is just in the main scene, not inside of movie clips

View 1 Replies

ActionScript 2.0 :: Goto The Next Level (next Frame) When Hit The Exit Door

Jan 17, 2007

i have just started to use flash and i am in the process of making a game but im stuck on putting actionscript into one part. i have a character and i want the game to go to the next level (next frame) when he hit the exit door. i know this might sound stupid but i have only just started.

View 1 Replies

ActionScript 3.0 :: Simple Volume Slider That Controls The Master Volume Of The Entire Swf?

Oct 6, 2009

does anyone have an example of a simple volume slider that controls the master volume of the entire swf?

View 1 Replies

Flash :: Volume Slider - Volume Doesn't Change Until Mouse Over?

Nov 21, 2009

I've created a small music player with a sliding volume control. I'm having trouble with the volume. Though it does control volume properly, if I set the initial volume to less than 100%, the volume always starts at 100% until I move my mouse over the player. At that point, the volume changes to whatever the initial volume is set to.Is this a flash bug, or am I missing something? Here is the affected code (code for other buttons/functions omitted for brevity):

var song_initvolume:Number = 100;
slider_1._x = groove_1._x + song_initvolume;
playSong(0,song_play);[code]....

I'd like to be able to set the volume at say 50%, but the above mentioned behavior happens each time.

View 2 Replies

Flash :: Reverse Sound Volume Math For Volume Slider?

Feb 1, 2010

I'm building a video player and am kinda stuck at the volume slider part. It's a YouTube style vertical slider, meaning if the slider is in the top position volume should be 100% and if the slider is dragged to the bottom position sound should be 0. Currently it's doing the opposite of what I want :(

Dragging the slider down will make the sound louder, while dragging up lowers it.

Here is my code below dealing with the volume slider.

[Code]....

The (-4) is an offset value so when you drag it all the way to turn it off, it's 0 and not 4. I need to reverse this somehow, so the traces above will swap... going down will make userVolume = 4 and going up will make it 30.

View 4 Replies

ActionScript 2.0 :: Create A Level Select Screen So The Buttons Unlock Complete A Level?

Apr 22, 2011

im trying to create a level select screen so the buttons unlock as you complete a level, so far i have this on each button:

on(release){
if(this.number <= currentItem){
gotoAndPlay(3);
}
}

[Code]...

View 0 Replies

ActionScript 1/2 :: OnLoad Working At _root Level But Not At Mc_target Level?

Aug 26, 2010

I have two layers in my FLA both with empty movie clips as follows:In mc_Empty1, I attach a faded background movieclip as I wait for mc_Empty2 to load a SWF.  Once the SWF is loaded into mc_Empty2, I want to remove the faded background movieclip from mc_Empty1.  When I load the SWF from the main timeline, the onLoad() function works and removes the faded background from mc_Empty1.  However, when I load the SWF from mc_target, the SWF loads, but the onLoad() function does not.  Here's my AS2 code:
 
//Loading SWF from main timeline
mc_Empty1.attachMovie("mcFadedBg", "mc_FadedBg", 1);
mc_Empty2.loadMovie("My.swf");mc_Empty2.onLoad = function():Void{    trace("loaded"); //This works    removeMovieClip(mc_Empty1.mc_FadedBg); //This works}

[code]....
 
I know I'm targeting properly because the SWF loads as it should, but the onLoad() function does not. 

View 3 Replies

ActionScript 3.0 :: Application Level Vs Document Level Class Paths?

Oct 2, 2010

This is making me a little kooky today. I thought I could defined a library path in PREFERENCES > ACTIONSCRIPT > ACTIONSCRIPT 3.0 SETTINGS then that library would be available to all AS3 FLA files, but that doesn't seem to work for me. If I use the PUBLISH SETTINGS and define the library path everything is fine.

Is there something that I could have done to disable the application level class path functionality? I guess I'm trying avoid having to set the library path for every new FLA I'm making.

View 1 Replies

Actionscript 3 :: Volume Controls - Volume On Or Off Through The Games?

Apr 12, 2012

I've got a serious of games which in turn load off a main main swf.I have mute and unmute buttons on the main menu and the same buttons in each game.When I unload/load a game I want the volume to stay as it is so they player doesn't have to keep turning the volume off. AudioOff is the button shown when the volume is off and AudioOn is the button shown when the volume is on.The code I've got now keeps the volume on or off through the games but the buttons aren't showing up correct with this code..

if (SoundVolume.volume == 1)
{
AudioOn.visible = false;[code].....

View 2 Replies

ActionScript 2.0 :: Volume Slides But No Volume Change?

Sep 10, 2011

I converted the slider bar and slider button to buttons. Then, I made the slider button into a movie clip.

Here is the code I placed while slider button was a button:

Code:
on (press) {
startDrag(this, false, left, top, right, bottom);
}

[Code]....

It seems right to me but I don't know. The movie button slides down the slider bar but it just doesn't affect the volume. Going to try to attach my FLA to offer better insight. Just tried to upload it and no matter if it's FLA or zipped FLA, it says it failed.

View 1 Replies

ActionScript 2.0 :: Load Swf From Third Level Into Container In First 'home' Level

Dec 26, 2011

I'm doing a bigger aplication in flash (as2).Image, there is a main "home" flash with several menu buttons.Clicking these buttons, I load external swf into an empty container in this "home" flash.[code]clicking buttons in this second level, will load external movies into an empty container in this SECOND LEVEL swf.This works fine, but now, coming to the THIRD LEVEL (don't think there will be more in the future) problems come up, some scripts won't work.Now (I'm a as2-beginner) I think, loading external swf ALLWAYS into containers in the first "Home" flash should solve the problem.But I don't know, how to load an swf from the third level into a container in the first "home" level.In the "home" level, I have a "close" button, that will unload the container content.I need to go to a certain scene "content_2" in the home swf, too.

View 7 Replies







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