ActionScript 3.0 :: Detect In The External Swf That The User Click Another Menu Voice?

Apr 16, 2010

I'm going to create a new website where i've a main swf that loads all the other that are called by the menu. I'm going to use swfaddress for deeplinkng, but my question is: when the user click on one menu voice the main swf load an external swf. now, when i click on another swf i must make a out-transition of the current loaded how can i detect in the external swf that the user click another menu voice? Or i must do the out-transition in the main swf?

View 1 Replies


Similar Posts:


ActionScript 2.0 :: Detect When The User Right-clicks To Display The Context Menu?

Jan 23, 2008

Is there a way to detect when the user right-clicks to display the context menu?

View 6 Replies

ActionScript 3.0 :: User To Be Able To Rollover Menu Button And Click It When The Page Loads

Jul 31, 2009

When the page loads, the first menu button (PORTFOLIO) is automatically OnClick. I want the user to be able to rollover it and click it when the page loads. I attached my file.

View 0 Replies

ActionScript 2.0 :: Senoc's Drop-down Menu - Only Disappear If Click On Another Menu Item Or When Click Outside The Menu

Jan 17, 2004

ive followed Senoculars drop-down menu tute [URL], awsome stuff, but it seems the submenu's dont disappear to well when you roll out. ..They only disappear if you click on another menu item or when you click outside the menu.

View 12 Replies

ActionScript 3.0 :: Record The User Voice & Act On It?

Sep 3, 2009

Is it possible to record the end user by mic? And what kid of actions can I do with the recording? Can I get for example the volume of the sound (decibels) in real time? Can I save the record on a file?

View 3 Replies

Flex :: Menu Control - Click A Button And A Menu Is Displayed. Click That Button A Second Time And Hide That Menu?

Jun 20, 2010

Basically, I have a button and on click it displays a menu. I want to click that menu a second time and the menu closes. Currently, every time you click the button, the menu reopens. I pasted the Flex livedoc example below. If you click the button, the menu keeps reopening.Now, I rigged it up by setting a var to open and closed, so when clicking the button it does a check. However, if you click away from the screen, the HIDE event gets dispatched, and the menu closes. This messed up the open close var being set.

How could I make this Flex example below show the menu on button click, and then on a second button click, it closes the menu? Take into affect that if you click away from the menu, it closes it.Also, I played around with the MOUSE_DOWN_OUTSIDE event for the button and set the preventDefault, and the FlexMouseEvent event.cancelable is set to false.Changing to a PopUpMenuButton is not an option. I have to much skinning involved.Here is the Flex example:

<mx:Script>
<![CDATA[
// Import the Menu control.
import mx.controls.Menu;

[code]....

View 1 Replies

ActionScript 3.0 :: Menu Button Click To Load External SWF

Jun 26, 2009

I was getting in to transitioning from AS2 to AS3 a while back and had designed a page that had menu buttons that when clicked, loaded an external swf in to a container. Pretty simple accept for the fact that it was a while ago and my computer crashed so I'm having to redo this and learn it all over again. I have read in to flash on the subject but I am not to sure on the best way to go about this. I know there are a lot of people on here who make thing a lot more simple and structured than I do. I'm so used to putting the actionscript on the button and I'm a little stuck on the best way to combine the actionscript for the button and loading the swf. I would need to make a button load an external swf in to a container when clicked? I figure I just need one and then I can copy it to all the other menu buttons.

View 2 Replies

Flash :: Live Voice Chat With Manipulated Voice Audio With RTMFP

Mar 27, 2012

We are building a live RTMFP voice chat application with Cumulus. While the basic voice transfer works pretty easy using NetStreams, we have one big problem:There does not seem to be a way to manipulate the microphone data that the NetStream sends, and also not a way to manipulate the data the listening NetStream receives before it is played.However, this is exactly what we need. We do not want to transfer the normal microphone recorded audio, but first pitch it, then send it, then play it. Or first send it, then pitch it, then play it. But it seems that the whole audio recording, speex encoding, speex decoding and audio playback is completely encapsuled within the NetStream class.The only ways to achieve what we want (and all of them removing NetStream completely) seem to be:Send raw pitched audio data. That does work, but is of course a lot of data to send and will likely not work fast enough outside of our local LAN testing.

Pitch audio data, convert to ogg/mp3 using existing encoders for flash, send, decode ogg/mp3 and play. But this would mean encoding each and every sample packet that is received from the microphone, adding header stuff, etc. So this would likely not even yield that much of a benefit compared to raw audio data.2.1. This would actually be a good way if there was a Speex encoder/decoder for flash. But ironically, there is none other than the built in one (which is used for encoding/decoding audio in NetStreams) that cannot be explicitly used. ot offering it, Adobe...Send the data to the Cumulus server, pitch (and probably convert) there and send to the recipient. This would likely not even be that much faster than 1. and also throw away the exact benefit of RTMFP, P2P communication.

View 1 Replies

ActionScript 3.0 :: [CS4] Dynamically Loads External Swfs When Click The Menu Buttons

Dec 18, 2009

I am currently doing a project that to create a full flash website. The website contains a preloader, an introduction movie, and dynamically loads external swfs when click the menu buttons. I am struggling with the preloader part. My preloader movie does not shown until 50% and disappears at 90%. I have searched for solutions on the internet for days but could not find any. I attached my source file as well as the swf.

View 7 Replies

Actionscript 3 :: Record Voice And Playback Voice With A Delay Using Flash?

Mar 9, 2012

I've been working on a Flash script that allows the user to speak and playback what the user is saying after certain but exact time, say 10 seconds.

View 1 Replies

ActionScript 3.0 :: When Click In On Menu The Actual Menu Does An Alpha To 0 And The Next Menu Appears?

Jan 27, 2010

The menu is like this http:[url]... (the site is in portuguese but it doesnt matter), when I click in on menu the actual menu does an alpha to 0 and the next menu appears using the alpha from 0 to 100 (and some animations like the cellphone going up).Now, how can I do a menu like that, whatever the menu I choose, it does that alpha animation ?

View 1 Replies

Actionscript 3.0 :: Playing External Mp3 Voice Overs?

Mar 16, 2010

I have an old as2 animation project with multiple voice overs that I am trying to update to AS3. One issue I have run into is playing voice overs where the animation stops until the voice over is done playing and then it advances to the next frame and another voice over plays. I created a new sound object, sound channel and so on for my first sound. If I place the same code on the next corresponding frame like I did is AS2, I get a bunch of errors, mostly duplicate function errors. I suppose I could change the variable names if I had just a few voice overs but I have several hundred. This creates a problem as you can see. All the googling I have done has not resulted in any useful information. So my question is - how do I do this? I put my old AS2 code in the comments tags.

Code: Select all/*_root.stop();
// Load voice
VSound = new Sound(Voice1_mc);

[code].....

View 14 Replies

ActionScript 2.0 :: Sound Switching - Allows A User To Select If They Want Voice Overs Played Or The Standard Beep Beep (fashy Sounds)

Apr 4, 2008

im wanting to create a simple feature in my flash ap that allows a user to select if they want voice overs played or the standard beep beep (fashy sounds) i have three buttons (onBtn, offBtn and rollMe). does anyone know how i could do somting like... if onBtn is selected then.. on rollover 'rollMe' mySound1.start(); else if offBtn is selected then... on rollover 'rollMe' mySound2.start();

View 6 Replies

Professional :: Handling CLICK Event - If User Click Anywhere On The Stage The Search Bar Will Be NO Visible(OFF)

May 19, 2011

on clicking the Search Icon , a search bar will be visible (ON) if user click anywhere on the stage the search bar will be NO visible(OFF) OR user click on ICON again the search bar will be OFF but it Stage CLICK is triggered without clicking

[Code]...

View 1 Replies

ActionScript 2.0 :: Create A Custom Context Menu (right Click Menu) In Flash?

Dec 7, 2002

Anybody know how to create a custom context menu (right click menu) in Flash?

If it's not possible, wouldn't it be a good idea for Macromedia to put some kind of event or something in there?

View 11 Replies

ActionScript 3.0 :: Context Menu - Add A Right Click Menu With A Custom Item? ?

Oct 8, 2009

i wanted to place some credits item in the right button menu (no links, so no events, just a label with credits). i was looking the contextmenu help, and there is an example of how to add items, disable default items and so on, but i could not find how to attach the menu to the movie (the basic part). i tried both on 'stage' and it tells me that stage does not have a property called contextMenu, so i tried to attach it to a sprite, it runs ok and compiles ok but when i right click on the sprite i get the default menu

var _menu_item:ContextMenuItem = new ContextMenuItem("here goes [code].....

how to add a right click menu with a custom item?

View 3 Replies

ActionScript 2.0 :: Drop Down Menu When Click On Another Menu Item?

Nov 13, 2002

I have an array for my menu and submenus.It works fine, but I have to click again on the menu to close it.When it's open it's completly open it takes too much space.how I could make a menu close when I click on another menu item..this is the code on the frame on my main timeline:

MenuArray=new array();
MenuArray[1]=menu1;
MenuArray[2]=menu2;[code].....

View 1 Replies

ActionScript 3.0 :: Click To Open Menu Then Click To Close?

Sep 28, 2011

I've got a drop down menu. I want to click a tab to make it drop then, if it's open, click it again to close. I've tried a million variations on the script below:

var btn_grp1:String
function main1Down(event:MouseEvent):void {
if (btn_grp1 != "dwn") {

[Code]....

This works too (once). So the drop down buttons all disapear again, but it won't re-set. The drop down menu stays up from then on.

BTW i'm not set on this method, it just seemed the most obvious i.e. if menu hidden, then show it, set some variable to down (showing), else hide the menu, set var to up (hidden). Not working though.

View 2 Replies

ActionScript 3.0 :: Detect If A User Has A Debugger?

Feb 22, 2009

is there a way I can use javascript to detect if a user has a debugger version or a release version?

View 6 Replies

ActionScript 2.0 :: Detect When User Has Flash Player?

Mar 12, 2009

When a user does not have a flash player... and enters a flash website...is there a way flash can recognise this and with a click he/she can download the latest flash player from that site?

View 1 Replies

ActionScript 3.0 :: Detect User Stopped Typing?

Nov 27, 2008

How can I detect if a user stopped typing for about 2seconds?After those 2 seconds I want a mc to start playing.

View 5 Replies

ActionScript 3.0 :: Detect Whether User Is Using A Mobile Device?

Dec 27, 2010

Just wondering if anyone knew ofhand the AS3 code to detect whether a user is using a mobile device, so they can be redirected to the HTML version of my flash website.

View 4 Replies

Flash Protection - Any Way To Detect User IP Address?

Aug 23, 2007

Using flash is there anyway to detect the users IP address as a means of identifying someone who tries to copy your work off the internet?

View 7 Replies

ActionScript 3.0 :: Detect When User Has Muted Sound?

Jul 18, 2010

I need to check that the user has not muted the system before running my main movie (as indicated by the red bar over the speaker icon on the lower rgiht) and if so prompt to unmute with pop up. Is that something I can do with Actionscript 3 or is it sometihing that needs to be addressed with JavascriptWSH?

View 3 Replies

ActionScript 3.0 :: Detect When User Is Connected To Internet?

Jan 5, 2011

I have been searching for a simple way to detect if a user is connected to the internet. I have been told to download xmls and read from html is there anyway one proven way which I can use in my projector for both mac and pc?

I want to hold a user on a frame while flash detects if a connection is present, if not user is shown a message 'please try again' if connection is prsent button appears in center of the stage which takes the user to a URL when pressed.

View 4 Replies

ActionScript 2.0 :: Detect The 'Connection Speed Of The User'

Dec 3, 2003

At run time, Is it possible to detect the 'Connection Speed of the user' and change the way my preloader works? Say If the user is on a Dial up connection then play the initial 50% of the movie that has been loaded while loading the remaining 50% in background, If the user is on DSL or cable then load the entire 100% movie and so on.

View 4 Replies

ActionScript 2.0 :: Detect User Screen Resolution?

Aug 27, 2006

My site starts off with a splash page. I would like to have one link to enter the site.

A long shot, but anyway....is there an actionscript that can detect user screen resolution and then open a page accordingly?

View 4 Replies

ActionScript 3.0 :: AIR Detect If User Pasted Clipboard?

Oct 31, 2009

How can I know if the user pasted or pressed Ctrl+V? I found a PASTE event, but I can't figure out to which object i should add a listener too.

View 3 Replies

ActionScript 2.0 :: Detect The 'Connection Speed Of The User'?

Dec 3, 2003

At run time, Is it possible to detect the 'Connection Speed of the user' and change the way my preloader works? Say If the user is on a Dial up connection then play the initial 50% of the movie that has been loaded while loading the remaining 50% in background, If the user is on DSL or cable then load the entire 100% movie and so on.

View 2 Replies

Flex :: Keypress - Detect If User Presses Enter Key?

Sep 9, 2010

The secnario is simple if the user presses enter while in the password field, I would like to submit the login for for processing.How can I detect that event from with in the specific text box.

View 2 Replies







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