ActionScript 3.0 :: KeyboardEvent And MouseEvent Work In The Same .swf File?

Mar 20, 2012

I put together a rather simple interactive .swf file using graphical "buttons" to navigate through different screens. Afterwards, I was told to add in two keyboard events as well: one to navigate to the next screen and one to restart the .swf file.
 
Using the keyboard to navigate the way I explained above works fine--that is, until I use the mouse to click on a button. Once I do that, the keyboard events no longer work. For example, if I start off the .swf file by pressing the Space bar on the keyboard to navigate to another page, it works fine. If I then press the "R" key on the keyboard to restart the .swf file, that works fine as well.
 
However, the first time I click on one of the buttons on the stage to navigate to another screen, the keyboard events no longer work. I can press the Space bar, and nothing. I can press the "R" key to restart the .swf file, and nothing. It's as if using a mouse event disabled the keyboard events or made the .swf file stop "listening" for keyboard events. The only way I can get the keyboard events to work again is by clicking somewhere on the stage and THEN pressing the appropriate keyboard key. I'm guessing that's because I put the focus back on the stage, maybe?? (again, not an expert here)
 
My code is ridiculously simple, and it's on the first frame:
 
stage.addEventListener(KeyboardEvent.KEY_DOWN, onKey);
function onKey(event:KeyboardEvent):void
{

[Code]....

Is there anything I need to do to this to make sure the .swf file is always "listening" and registering the keyboard events?

View 3 Replies


Similar Posts:


ActionScript 3.0 :: Using MouseEvent And KeyboardEvent On The Same Function?

Dec 22, 2009

I currently have an AS3 fla with a couple of mouseEvent functions but now the client wants to add a KeyboardEvent as well to the same exact functions. Can I add another eventListener to that without having to create a second function? It would be a huge waste of code if I did. Here's what I currently have in truncated form:

rightArrow.addEventListener(MouseEvent.CLICK, slide_right);
leftArrow.addEventListener(MouseEvent.CLICK, slide_left);
function slide_right(e:MouseEvent):void {

[code]....

View 4 Replies

ActionScript 3.0 :: Use MouseEvent And KeyboardEvent On The Same Function?

May 13, 2010

I made a login (textfield and a button).

mybutton.addEventListener(MouseEvent.CLICK,loginCheck); // This is my button
function loginCheck(event:MouseEvent):void { // My function code here
}
 
In order to make login using Enter button, I tried adding:
 
[Code].....
 
But of course it won't works because loginCheck is a MouseEvent function.

View 2 Replies

Actionscript 3 :: KeyboardEvent Only Works After MouseEvent?

Nov 10, 2011

Ok, so I am creating a slideshow presentation in Flash CS5. The code is very basic, however it does not work as intended. It's supposed to go to the next frame if i press a button, or press up/right arrow on the keyboard. However, the keyboard only works after I've pressed a button once.

my code:

import flash.events.MouseEvent;
import flash.events.KeyboardEvent;
slides.stop();

[Code]....

slides is a movieclip, where I've stored all my slides (Oh, by the way, I know my setup isn't the best, but I wouldn't use a lot of time on it, as it's for a religion class). FB is forward button, and you can guess what BB is..

View 2 Replies

ActionScript 3.0 :: Delay Before KeyboardEvent Listeners Work

Oct 9, 2010

In this script, I'm moving a sprite on the stage up and down using the keyboard. Works fine, except that there is a long delay after the SWF file has loaded until the key presses are registered and the sprite moves.

It takes about 5 seconds after I open the SWF file before the movement works.

[Code].....

View 5 Replies

Flash :: KeyboardEvent Doesn't Work In Game?

Aug 24, 2011

I need to use flash as3 to create a game, and I have tried to use 3 layer to load my swf. My game is in the third layer, and the first and second layers are just a preloader script.My problem is when the game is loaded onto the stage of first layer my KeyboardEvent function is not work until I press the stage.I have try to use Event.ADDED_TO_STAGE to solve it, but I also get a same error.this is my code for preloader

var request:URLRequest = new URLRequest("game.swf");
var loader:Loader = new Loader();
loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, loadProgress);[code]....................

View 2 Replies

Flash :: Firefox - KeyboardEvent Keycodes Work In Player But Not The Browser

Aug 25, 2011

I'm using ActionScript to listen for key presses and route to a method to handle them. It works fine in Flash Player Debugger 10.1, but does not work with the SWF in a browser. I've tried it with all sorts of keys: letters, numbers, etc. But I can't get it to work at all in the browser. I'm using Safari 5.1 and Firefox 3.6.8 on the Mac. Here's my relevant code:

[Code]....

View 1 Replies

ActionScript 3.0 :: Flash Ac3: Stage.addEventListener(KeyboardEvent.KEY_DOWN,..); In A Html Page Not Work?

Sep 15, 2011

i have this code:

Code:
stage.focus=this;
stage.addEventListener(KeyboardEvent.KEY_DOWN, handleKeyDown);
function handleKeyDown(e:KeyboardEvent) {
trace("click");

[code]...

when i play it in flasplayer go well...if i put the swf in a html page not respond to key event...

View 2 Replies

ActionScript 3.0 :: Does The MouseEvent Work With Masks

Feb 19, 2009

Does the MouseEvent work with masks ?

ActionScript Code:
myMask.addEventListener(MouseEvent.ROLL_OUT...)

View 2 Replies

ActionScript 3.0 :: .addEventListener(MouseEvent.CLICK Won't Work

Dec 15, 2009

I am trying to add a simple "getURL" type of functionality to a movieclip so that when it is clicked on, the user is taken to a url. i have tried 3 or 4 different ways to do this that all work when i test the movie clip in flash. However, when i embed the swf in a webpage, the click function does not work.I created a function:

Code:
function gotoPage(event:MouseEvent):void
{
var targetURL:URLRequest = new URLRequest('http://www.metteradvertising.com/marketing-help.html');
navigateToURL(targetURL);
}

and I'm calling it this way ("Bmeasure" is the movieclip name):

Code:

Bmeasure.addEventListener(MouseEvent.CLICK, gotoPage);

am i not able to attach "click" functionality to a movieclip?

View 10 Replies

ActionScript 3.0 :: MouseEvent.MOUSE_MOVE & CtrlKey Does Not Work?

Nov 6, 2009

I create an application that will work when users move the mouse and concurrently press the Ctrl key. But, it does not work if I did not first click on screen (application run on browser).

[Code]...

View 6 Replies

ActionScript 3.0 :: MouseEvent Doesn't Work On Loaded MovieClip

May 4, 2011

I'm having a problem with adding a MouseEvent listener to a Loaded MovieClip. The loaded MC is a single frame and contains two animated MCs. There's some MouseEvent listeners already on the two MCs. Here's the code in my loader SWF:

[Code]...

View 4 Replies

ActionScript 3.0 :: MouseEvent.CLICK Not Working But Using MOUSE_OVER Makes Function Work?

Aug 27, 2009

The main AS timeline creates the enemy instance and calls them via the timer class. Inside the instance enemy movie clip there is some script to do a basic tween and there are functions to remove the enemy and to declare you've hit the enemy. The problem I'm having is when I try to call my KillEnemy function with a MouseEvent.CLICK (or MOUSE_DOWN, MOUSE_UP) event, it isn't registering, I realised this after testing the same function to listen for a MOUSE_OVER, MOUSE_OUT, it worked perfectly.

Can anyone explain why this is happening? Not just that the mouse seems to be a little delicate, even with the roll over listener called it isn't registering the event unless it hits a specific part of the movie clip enemy, which leads me to believe the movieclip is somehow built incorrectly? But even when testing the game with extreme settings (i.e. leaving the enemies on screen for a long time) the mouse clicks aren't registering still. Something is broken! Here is some of code inside the enemy movie clip, the problem lies on line 11:

[Code]...

View 6 Replies

ActionScript 3.0 :: MouseEvent.CLICK Doesn't Work Properly - Function Is Not Triggering

Oct 2, 2009

In my class i've got something like this:

[Code]...

So Every time when I click left mouse button, the setClickedTrue function should be triggered. And that's what happen normally. But when I make a fast move with a mouse, and in the meantime i click left mouse button, or i make a fast move and finishing i will click left mouse button, the function is not triggering. Something like MouseEvent can't hear this Event. I'm making an avoid game, and it's very important. I'm using Timer class with delay = 30; I'm also have got 30FPS on Flash Proporties.

View 3 Replies

ActionScript 3.0 :: MouseEvent Doesn't Work - When Drag And Drop The Container Movieclip On The Main Stage And Compile

Aug 1, 2009

I added a movieclip and named "bot_mc" in another movieclip. Then, In Action panel, I use bot_mc.addEventListener(MouseEvent.DOWN, xxxx). However, when I drag and drop the container movieclip on the main stage and compile. There is no error occurs but the MouseEvent doesn't work.

View 3 Replies

Flash :: AS3 MouseEvent.MOUSE_MOVE Event Stops Responding After MouseEvent.CLICK Call?

Nov 6, 2010

I have several stage event handlers to enable mouseovers over several dynamically generated moviecilps on the stage that then change their alpha to indicate the mouse is over that particular mc... fairly trivial (mcOver handler). Additionally, I also want to know what MC is clicked, so I update a public variable (public var activemc:Number) with the ID of the dynamic movieclip when the mouse is over it (using a hitTest to check, which is why the EventListener is added to stage and not to the MC), which is checked in the mcClicked handler:This is in the constructor:

//stage.addEventListener(MouseEvent.MOUSE_DOWN, startDrawing);
//stage.addEventListener(MouseEvent.MOUSE_UP, stopDrawing);
stage.addEventListener(MouseEvent.MOUSE_MOVE, mcOver);[code]....

However, the mouseover behaviour (alpha 0 when over, alpha 1 when out) stops working as soon as I click on any movieclip on the stage, and the mcClicked ID checking (below) stops working completely. I don't know if this is to do with focus:

private function mcClicked(event:MouseEvent):void {
myTextField.text = String(activemc); // activemc is a public var:Number with the movieclip //ID
}

I then tried adding the event handler for the stage mouse_move again and this gets the mouseover working again but only for 1 more click, after which it stops again:

private function mcClicked(event:MouseEvent):void {
myTextField.text = String(activemc); // activemc is a public var:Number with the movieclip //ID
stage.addEventListener(MouseEvent.MOUSE_MOVE, mcOver);

View 1 Replies

ActionScript 3.0 :: Get MouseEvent.ROLL_OVER Or MouseEvent.MOUSE_OVER To Pass Through To MovieClip Underneath

Jul 9, 2009

I have a MovieClip (call it base_mc) which is under a bunch of other MovieClips (call them subclips). The MovieClips on top are all mouseEnabled with MOUSE_OVER, CLICK, etc, event handlers. I want to capture the event of MOUSE_OVER (or ROLL_OVER) on the base_mc as well. Any time I am over one of the subclips I am also over the base_mc clip. How can I capture this event?

View 2 Replies

ActionScript 3.0 :: Flex - Diffrence In MouseEvent.CLICK & MouseEvent.MOUSE_DOWN?

Oct 21, 2010

I'd like to know what is the difference between MouseEvent.CLICK & MouseEvent.MOUSE_DOWN. Because when i use MouseEvent.MOUSE_DOWN for a button to set full-screen view its doesn't work, instead of this MouseEvent.CLICK works. So what was the reason.

View 3 Replies

ActionScript 3.0 :: MouseEvent.MOUSEDOWN Works But MouseEvent.CLICK Doesn't

Nov 6, 2010

I'm making a button for the first time, and I wanted to use a full click to drive it. However, when I use addEventListener(MouseEvent.CLICK, onClickHandler); nothing happens when I click on it. When I use (with the rest of the code being identical) addEventListener(MouseEvent. MOUSE_ down, onClickHandler); it works like a charm.

View 6 Replies

ActionScript 3.0 :: Difference Between MouseEvent.MOUSE_UP And MouseEvent.CLICK?

Apr 7, 2009

What is the difference between MouseEvent.MOUSE_UP and MouseEvent.CLICK? Why should I use one of these over the other? 

Code:myButton_btn.addEventListener(MouseEvent.MOUSE_UP, fNavigate, false, 0, true);
myButton_btn.addEventListener(MouseEvent.CLICK, fNavigate, false, 0, true);

View 3 Replies

Actionscript 3 :: Cancelling MouseEvent.CLICK After MouseEvent.MOUSE-DOWN

Aug 11, 2011

I have a MOUSE_DOWN handler that creates a CLICK event listener on a child object. Naturally, as soon as you release the mouse button, if you happen to be over the child object, the CLICK event fires.I was disappointed to discover that event.stopImmediatePropagation doesn't interrupt the CLICK event from registering the MOUSE_DOWN as part of its detection cycle. It makes sense that it doesn't but still... disappointing.A MouseEvent.CLICK consists of detecting a MOUSE_DOWN on the object and then if it's followed by a MOUSE_UP without leaving the object, he event fires. I had hoped that by cancelling the MOUSE_DOWN event, it would clear that out of the CLICK buffer, but no such potatoes, alas.This could all be handled with a flag and a couple more MOUSE_UP and MOUSE_DOWN handlers, but dang, smacks of effort

View 2 Replies

Professional :: Using Keyboardevent -file To Immediately Go To And Play A Frame Labeled "waterdepth"?

Oct 8, 2010

In my file, I have an introduction playing over and over.  When someone hits the "K" button, I need the file to immediately go to and play a frame labeled "waterdepth".  What am I missing below?  I keep getting an error saying that "keyboard event cannot be loaded."
 
[code]...

View 3 Replies

ActionScript 3.0 :: MouseEvent Target MouseEvent RelatedObject?

Jul 24, 2009

I have the following:
 
rwBtn.addEventListener(MouseEvent.MOUSE_OVER, audioOver);
function audioOver(e:MouseEvent):void
{
var thisClip:MovieClip = e.relatedObject;
thisClip.alpha = 0;
}
 
I would like to change the alpha of the clip that is being rolled over. I don't know how to target the clip that is being rolled over. How do I do that?

View 3 Replies

Actionscript 3 :: Function From A MouseEvent Activated Function Will It Not Work Properly?

Jan 3, 2012

I am working with AS3 to build a very simple mp3 player on my site. So far the play and pause button work fine, but when I try to move the slider then click the pause button, it doesn't pause, and then clicking the play button again causes it to play a new file.I'm assuming that for some reason when I call the playMp3 function from my MouseEvent, it's within an object or something and not at the root, so it's like loading a new sound file, but I don't know how to fix that.URL...

View 2 Replies

ActionScript 3.0 :: Buttons Won't Work - Attached The Fla File And An Index Page In A Zip File

Nov 22, 2009

I have four buttons in flash and only one of them work. I have attached the fla file and an index page in a zip file. It seems only one button will work at a time.

[Code]...

View 5 Replies

Professional :: Copy Unchanged Object From Old Flash File To New Work File?

Mar 7, 2012

I changed a layer entry of my Flash file by moving around various elements within the layer. I sitll have the original file, too. I'd like to put it back exactly like it was in the original file. How do I replace the changed sprite element from the new file with the original from the old file?

View 5 Replies

How Will Flash Work If The Container Html File And An Embed Swf File Are From Different Domains

Jan 8, 2012

Let me give the context first. A user opens a local html file which has a reference to a network url of an swf file to embed.

(1) If the embed swf requests a local image file , will Flash allow the request?
(
2) If the embed swf requests an image file on a non local url other than one of the swf file, will Flash check a crossdomain.xml file on the url?

View 1 Replies

ActionScript 3.0 :: KeyboardEvent Not Being Triggered?

Sep 26, 2010

I'm a Flash newbie and I'm trying to get some keyboard action going. I've followed some tutorials, but nothing seems to work. To test it I created a brand new fla file and added the following code in the first frame:

[Code]...

The first trace ("Add listener") shows up in the debug output, but no matter which keys I press I can't get the function to be called. Am I doing it wrong?

View 3 Replies

ActionScript 3.0 :: KeyboardEvent - Kind Of New?

Nov 19, 2009

Alright I'm new to Keyboard event listeners so I might be making a really obvious mistake that I don't know about. But what I want to do is, when someone types the letters for the word 'BROTHER', then it appears on the screen and it moves to the next frame. Here's the code I have atm I currently have the letters for 'BROTHER' each as a movie clip. The instance names are, RKey, OKey, etc.

[code]...

Now, is this the only mistake in my thing? Or are there more mistakes? How do I fix it?

View 4 Replies

IDE :: Error 1046: KeyboardEvent

May 8, 2010

I have an error on my KeyboardEvent and I can't find what the problem is. The file of my class is mc_boog.as and when I compile it returns me this error: 1046: Type was not found or was not a compile-time constant: KeyboardEvent.

View 2 Replies







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