Flex :: AIR - Keyboard Events Only Sometimes Working?

Mar 12, 2010

I am adding a key listener to my AIR application like so:

<mx:WindowedApplication
xmlns:mx="http://www.adobe.com/2006/mxml"
keyDown="onKeyDown(event)">

Yet only sometimes when I press keys does it actually invoke. I have no clue why, I thought maybe something else has focus. Well I cannot add key listeners to NativeWindow or NativeApplication, and I would assume if it is on the WindowedApplication which is the root element, that as long as my application has focus the key presses should invoke the listener.

View 1 Replies


Similar Posts:


ActionScript 3.0 :: Mouse And Keyboard Events Not Working In Browsers

Mar 22, 2011

I have a SWF file that uses Mouse and Keyboard Events. When I test the SWF file in the flash IDE the events work fine. When I run the SWF file stand-alone with the Flash Player, the events work fine as well. But, when I open the SWF in a browser, neither mouse clicks or key presses register. Even if I puslish the SWF as a HTML, it doesn't work either.

View 4 Replies

Flex :: AIR Using Command And Ctrl Keyboard Events?

Jan 15, 2010

I am writing an AIR application in Flex. The application needs to be able to handle shortcuts on both Mac and Windows. I have the shortcuts on the Windows side working, but the same application on a Mac doesnt seem to trigger the commandKey property on a Keyboard event when the user is also using another key in combination (ex. command+g doesnt work)

View 2 Replies

Flex :: Sprite Not Receiving Keyboard Events?

Jan 14, 2011

I have a Sprite which is a child of a Flex object, and acts as the main "game window". So during game-play it should get keyboard input but at other times not. When I add a keyboard listener to it, it never fires.

Do I need to stop parent objects 'eating' the events somehow, or something similar? I get the same thing with mouse-wheel events, but mouse-click events are fine. Sprite doesn't seem to have the concept of focus unless I missed it.

More generally in this kind of approach, are there any suggestions on the best way? For instance some keys might still be needed to be intercepted before getting to the game-window, like ESC or F1 or something... the aim is the game-window isn't aware of other UI.

View 3 Replies

ActionScript 3.0 :: Keyboard Events (movie Clip Moves Via Keyboard Control) And Scenes

Nov 7, 2009

I have 2 scenes. In both scenes, I have a movie clip that moves via keyboard control. If the goto next scene is triggered by the movie clip in the first scene the keyboard control works in the second. However, if I use a button to move to the next scene then there isn't any control over the movieclip in that scene. I've traced the keyCode in the second scene and it is picked up but the switch statement doesn't run. I'm migrating to Actionscript 3.0 and updating something I created in 2.0. I would like to do it without writing a class.

[Code]...

View 5 Replies

Flex :: Get Mouse And Keyboard Events, Masked By PopUpManager

Jul 29, 2011

I am implementing an application timeout feature (flex4). What I am finding is that mouse and keyboard events, which I have listened to with :

FlexGlobals.topLevelApplication.addEventListener(MouseEvent.MOUSE_MOVE, resetLastActivity);
FlexGlobals.topLevelApplication.addEventListener(KeyboardEvent.KEY_DOWN, resetLastActivity);

are being masked by the existence of any popup windows. The code is in a component, in the constructor. The component is added to the main application in the block.

How can I get these system generated events to not get stopped by PopUpManager display objects?

View 1 Replies

Flash - Flex 3: Preventing Keyboard Events From Reaching A Sprite?

Feb 9, 2012

I'm working on a Flex 3 app, implemented in Actionscript 3 and MXML, that includes an embedded video player, which is essentially a black box--I load it as a SWF from another site on demand, and I don't have access to its source code. It does, however, inherit from Sprite.The problem is that, when focus is on the Flash app, the video player is somehow receiving and processing keyboard events, even when the player itself isn't in focus.So when users are typing text elsewhere in the GUI, if they hit the space bar, the video pauses.

I've tried intercepting key events in the Sprite's parent, and setting tabEnabled = false, tabChildren = false, and buttonMode = false on the Sprite, but nothing seems to work. It's as if the Sprite is getting keystrokes through an alternate Event path.how I can prevent the player from receiving keyboard events or input events entirely? It's fine with me if no input events reach the player, since I've implemented my own,separate video controls.

View 1 Replies

Flex :: Catch Keyboard Events Without Forcing Users To Click On The Stage?

Nov 8, 2010

handling global keyboard events in Flex, is to attach a listener in the application complete event of a Flex application. However, no matter what I try, I have not been able to catch events without clicking on a point on the page, which is hosting my Flex application.
Moreoever, if I use a Flex component in a web application, where there is also html and Javascript, I'd still like to be able to grap global keyboard events, even if the embedded flex component (in flash player) does not have focus. So is there a reliable method for connecting flex applications and components (when they're embedded in a web page) to keyboard events?

View 1 Replies

Flash :: Make Flex Only Consume Mouse Scroll And Keyboard Events?

Feb 5, 2011

This one's been irking me for a while. When I'm using the mouse scroll wheel to scroll up and down in a webpage, and a flash movie comes into the path of the cursor, the scroll wheel stops working. Also, when a flash movie has focus, you can't use browser shortcuts like Ctrl + L or Ctrl + R.

I'm writing a flex application now and I'd like to find a solution, so that at least my users aren't plagued by this inconsistency of the user interface behavior.

I should think there would be a way to tell flash to propagate such events as the mouse scroll wheel and keyboard input back up to the browser unless they occur in an element for which they are useful, like in a flex textarea. I can't find any solutions out there though, nor even anyone talking about it.

Specifically, how can I make it so that:

When the user is scrolling with the mouse, the browser scrolls unless the mouse is over a flex container with scrollbar, or another component that wants to scroll.When the user presses a button or combination of buttons on the keyboard, it will be propagated to the browser unless there is an active keyboard listener, or the cursor is in a text field, etc.

View 3 Replies

Flex :: Activate An Application So The User Doesn't Have To Click Inside It To Start Getting Keyboard Events

Nov 26, 2010

My Flex application is heavily keyboard-oriented. It uses 100% of the browser window and I'd like the user to be able to start using it immediately - as soon as it loads. However, it seems that the application is only first "activated" (i.e. the activate event fires) when the mouse clicks somewhere inside it, which is very inconvenient for my keyboard-heavy app.

Can I force an activation of my app at some point during/after it loads? I hope I don't have to display some silly "click inside to activate" overlay every time the page loads..

In certain browsers ([cough] Chrome [/cough]) the focus is lost whenever the user switches away from the browser (or even touches the address bar) and is not regained when switching back. So the solution has to take in consideration not just the first focus when the page loads but also "re-focusing".

View 2 Replies

Flex :: Wny Linux Sends Unicode Keyboard Events While Windows Sends ANSI

Sep 27, 2010

Unde linux, the foreign keys such as... do not seem to work with this code:URL...The output is wrong under Linux, but Windows is Ok.the output of foreign keys such as ü with Linux looks same here, totally broken, two chars appear: URL...

View 1 Replies

IDE :: Keyboard Events Being Ignored

Sep 30, 2009

I'm trying to write a simple counter. UP or Space increments a number and DOWN decrements. It's just one big number in the middle of the screen. A bell rings on an increment and I have added code to go full screen on mouse click.[code]...

View 1 Replies

ActionScript 3.0 :: Keyboard Events Being Ignored?

Oct 1, 2009

I'm trying to write a simple counter. UP or Space increments a number and DOWN decrements. It's just one big number in the middle of the screen. A bell rings on an increment and I have added code to go full screen on mouse click.

Test mode works fine ( except for full screen of course).

Seems to work fine on the local machine using Safari 3.2.3

However if I try to run it locally using firefox it does not work.I need it to run on a laptop but it does not always acknowledge the keyboard events and while in full screen it never responds to the keyboard events.Laptop is running Safari 3.2.1

import flash.display.StageDisplayState;
import flash.events.KeyboardEvent;
var chickCount = 0;[code]..........

View 2 Replies

ActionScript 3.0 :: Keyboard Events Per Second?

Apr 7, 2011

I was looking at this game called "Tsunami Fighter" (if you google it, it'll be the first thing that pops up�I can't post links sadly) which is a keyboard mashing game. Basically you have to mash a certain keyboard button as fast as possible to stop the rage bar from reaching the top. I tried some things that I thought would work,

How would I script the keyboard mashing part of this game (The part where you have to keep a greater keyboardclicks/second than the rising bar You'll know what im talking about if you play the game. I'm not really concerned at the score or the graphics just the keyboard event thing.

View 3 Replies

Professional :: Keyboard Events Being Intercepted?

Apr 1, 2010

I created an E-learning project for a customer that has pages that require the user to make keyboard entries. When the user enters a specific letter, the page progresses. The pages work as expected until the customer places the project in a 'wrapper' that controls the navigation. When this is done, the user can make the keyboard entries, but now the page will not progress to the next section. It seems that the wrapper is stopping the system from detecting that the specific letter is pressed.

View 7 Replies

ActionScript 3.0 :: Swf Does Not Catch Any Keyboard Events?

Mar 12, 2012

why the swf does not catch any keyboard events? When i Ctrl+Enter my .fla there is a message appearing that says: "Your content will not stream. Runtime Shared Library (RSL) preloading will require all of your content to download before the first frame will play. To prevent this you can change the Runtime Shared Library Library Settings in the Advanced ActionScript 3.0 Settings dialog which can be raised from the Public Settings dialog. The Runtime Shared Libraries being preloaded are: textLayout_1.0..........."

View 17 Replies

Actionscript 3 :: Keyboard Events Without Stage?

Jun 23, 2011

is it true that keyboard events can not be accessed outside of the stage on non display objects?

example:

package
{
//Imports
import flash.events.EventDispatcher;
import flash.events.KeyboardEvent;

[Code].....

here i would like to initialize a new TestClass() then press a on the keyboard to receive the output Test Class: a.

View 1 Replies

Actionscript 2.0 :: Dispatching The Keyboard Events?

Jul 16, 2009

I have a key.addlistener setup to listen to key events.What I want to be able to do is to dispatch key events by for example a mouse click or just on load. I've tried a lot of possible solutions such as dispatchEvent with type as "onKeyDown" and "keyDown" etc.... but key listener simply do not treat it as a keyboard event.

Code: Select allvar eventObj = new Object();
eventObj.type = "keyDown";
eventObj.code = 13;
eventObj.ascii = 'e';
dispatchEvent(eventObj);

View 1 Replies

ActionScript 3.0 :: Keyboard Events Within A Class

Jun 6, 2009

seem to have trouble getting a keyboard event within a class to work, I have an ENTER_FRAME event which works fine, but the keyboard event never gets called.[code]

View 2 Replies

ActionScript 3.0 :: Navigating With Keyboard Events?

Aug 9, 2010

Is there way to navigate to various buttons on a stage using only the keyboard? I have several movies (complete with cover art) on my Flash stage. I want to convert them into buttons so that anytime a user navigates to that button and presses enter, it will take them to a new frame (where I will have information about that particular movie). I know how to do this with Mouse clicks. But, this application requires users to use arrow keys in order to navigate and not the mouse.

View 3 Replies

ActionScript 2.0 :: Keyboard Events And External SWF?

Aug 12, 2010

I finally found a way to exactly position my External SWF on the main stage. Here is the Actionscript I placed on an empty layer:

Code:
this.createEmptyMovieClip("externalSWF",1);
externalSWF._x=550;

[code].....

View 2 Replies

ActionScript 3.0 :: Flash Keyboard Events?

Jan 15, 2011

currently learning AS3 and having a bit of trouble with keyboard events. I feel like I understand how they work, but something about my implementation is faulty. This is basically the code I currently have, and I can't find an error in it based on tutorials and such that I've looked up:

Code:
package {
import flash.events.KeyboardEvent

[code]....

View 2 Replies

PLAY And Stop PLayhead Using Keyboard Events In AS3?

Feb 2, 2010

I want my animation to STOP when I press SPACE, and then PLAY when I press SHIFT. This needs to be in AS3. The only catch is that my whole animation is composed of 5 Scenes. Would this be a problem? Also, I'm confused as to where I should add the code. I have it in a class and it still doesnt work. I tried putting it on the 1st frame on Scene 1.

View 1 Replies

ActionScript 3.0 :: Keyboard Events For Right And Left Keys

Aug 7, 2010

Here is my code:

[Code]...

The code for KEY_UP and KEY_DOWN seems to work fine. But, the rest of it returns the error "1119: Access of possibly undefined property Key through a reference with static type Class." How do you call a function for Right, Left, Enter, and Escape Keys?

View 8 Replies

ActionScript 3.0 :: Navigating Buttons Using Keyboard Events

Aug 9, 2010

Is there way to navigate to various buttons on a stage using only the keyboard? I have several movies (complete with cover art) on my Flash stage. I want to convert them into buttons so that anytime a user navigates to that button and presses enter, it will take them to a new frame (where I will have information about that particular movie). I know how to do this with Mouse clicks. But, this application requires users to use arrow keys in order to navigate and not the mouse.

View 4 Replies

ActionScript 3.0 :: DispatchEvent To Send Keyboard Events?

Mar 19, 2010

I am trying to create an on-screen keyboard for a touch-screen kiosk. Does anyone know how to send a keyboard event to a text input component from a button click event? For example, the user will push the on-screen buttons to enter their name, press tab to go to the next field, and so on.
 
I believe that I somehow need to use dispatchEvent but have not been able to get it to work. For example, pressing the on-screen A keyboard button will fire a CLICK event and call a handler to place an A in the currently focused text input component. The handler needs to be able to dispatch a keyboard event (with the correct keycode) to that text input field and that is where I am stuck.

View 6 Replies

Professional :: Can Crossover Mouse And Keyboard Events

Aug 26, 2010

My client uses IrfanView to play SWF files. Unfortunately, he does not use Flashplayer. In Flashplayer, I can crossover mouse and keyboard events with no problem. In IrfanView, the second I click a button, the keyboard events are disabled. Is there a fix?

View 3 Replies

ActionScript 1/2 :: Call Keyboard Events With Script?

Nov 15, 2010

I have a keyboard app that is placed on a touch screen. I want to trigger the actual keyboard events within Flash. for example Key.BACKSPACE , Key.SHIFT etc, without actually pressing any keys on a key board

View 2 Replies

ActionScript 3.0 :: No Keyboard Events Until Mouse Click?

Jun 2, 2011

i'm using actionscript 3 in FlashBuilder 4.5in my top-level class that is derived from the Sprite class, i added a keyboard listener:stage.addEventListener( KeyboardEvent.KEY_DOWN, HandleKeyboard );i don't get any keyboard events until i click the mouse button in the screen area - then the events work fine.i tried setting the stage.focus to stage and other various things,

View 8 Replies

ActionScript 3.0 :: Keyboard Events And File Reference

Jun 24, 2011

Started work on my actual project and thought I'd get a handle on the FR class before creating the game world mechanics. I have a class that deals with keyboard events with a set of functions I use on most of my projects and it works fine, however, I have been thrown a nice little error about FR methods needing user input to actually run, which I thought would've been recognised as it's encased in if statements that return values from the key class. I add an event listener for KEY_DOWN in the class I'm using the FR and as soon as the conditions within the KeyboardEvent function are met, my key class detection stops working.

I'm guessing that this is because the stage has two listeners added to it and one overrides the other. Why is it that the second listener only overrides the first once a specific key is pressed? Do I also need a subsequent KEY_UP listener to resolve this? Though the second listener does not affect the key class at all. I've tried returning the KeyboardEvent from my keyclass and passing that manually into the other function but that also did not work.

View 7 Replies







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