Flex :: Keep Focused After 'alt' Was Pressed?

Jan 18, 2011

I was making an application with AIR+Flex.

One Feature is like: when 'alt' key is down, the mouse cursor changes to B, when 'alt' key is up, the mouse cursor restores to A.

But the problem is that everytime a release 'alt' key, the mouse cursor will change back to system default (Arrow shape), and seems like the focus is on somewhere outside the stage.

That reminds me that, when 'alt' was pressed in a ordinary window, the menuBar will be focused.

How can I stop this default behavior?

p.s. I have tried the following ways and doesn't work:

1) listen to stage's KEY_DOWN/KEY_UP event, and add 'event.stopImmediatePropagation()' in the event handlers

2) listen to stage's KEY_DOWN/KEY_UP event, and add 'event.preventDefault()' in the event handlers

3) listen to stage's KEY_DOWN/KEY_UP event, and add 'this.setFocus()' in the event handlers. And 'callLater(this.setFocus)' doesn't work too.

View 1 Replies


Similar Posts:


ActionScript 2.0 :: Get Focused Movieclip Name

May 17, 2010

I am not able to get the name of focused mc using var focused_mc:MovieClip = eval( Selection.getFocus()I am creating new movieclip to which one existing movieclip is attached. this new movieclip is passed to an Object. In this class i am adding some objects with mc's on passed mc. and based on onClick button i am trying to get the name of clicked mc name. But it gives "undefined".[code]when i go to dnd_btn and click it, it is expected that i should get the clicked mc name but i am getting it as undefined.Can anyone please explain me the reason? WHat's going wrong in all this process

View 0 Replies

ActionScript 2.0 :: Make A Textfield That's Always Focused?

Mar 15, 2003

Well, i know, it sounds easy, but the only thing I want to do is make a textfield that's always focused. When I click next to the textfield on a picture or on the root the focus changes and that's not what I need, the textfield has to stay focused.

View 8 Replies

ActionScript 1/2 :: Faster Blurred-to-focused Effect

Mar 29, 2009

URL...but it takes about 5 seconds to go from blurred to focused.can anyone tell me how to speed it up? All done in 2 seconds would be enough.

View 2 Replies

Javascript :: Check Whether A Browser Window/tab Is Focused?

Aug 1, 2011

It is a small widget. It lives in an iframe, and because of this, this method is not working. And since the iframe is loaded from a different domain there is no way to reach the top level window object.

[URL]

"With the recent new 10.3 player this should be much easier, since there are new events for this specific situation."

So, using a simple flash object, and maybe js callbacks this might be the solution, but what are theese events?

View 2 Replies

ActionScript 2.0 :: Change Background Of Textfield When Focused?

Jul 31, 2009

I have 3 text field and i want to change its background when it is focused and change it back to white when the focus is lost.

I tried keeping background = true and border = true, but still i can't change the background.

Also when i keep tf.backgroundColor = 0x00FF00 outside the onSetFocus method then the textfield contains that background.

View 7 Replies

ActionScript 2.0 :: Make A Box That Fades In When Pressed On The Button And Fade Out When Pressed For The Second Time?

Nov 16, 2004

I have a function on root:

_root.fadeBox_mc.onEnterFrame = function (){
if (fade){
this.nextFrame();[code]....

This causes a mc to fade in and out on rollover/rollout. But what I wanna make is a box that fades in when pressed on the button and fade out when pressed for the second time. But if I say

on (press){
_root.fade = true;
}

the mc fades in, but I cant do another on (press) to fade out. Is this too confusing?

View 2 Replies

Javascript :: Stop All Flash Animations When Window/tab Is Not Focused?

Nov 24, 2011

I'm looking for a code to stop all flash animations on a web page when this page/tab is not focused or active. Because this problem causes performance loss at any computer.

View 1 Replies

ActionScript 2.0 :: Make Text Field Focused From First Load?

Jul 31, 2003

How to make my Text Field Focused , from first load?

View 3 Replies

ActionScript 2.0 :: Play Video On Html Page Only When Maximized / Focused?

Aug 19, 2009

I could get some direction on something that I have been wondering about for a while. There have several flash video players that I have seen that only start to load/play the video when the object is visible on the screen.

For instance, if I click a link to an html page with an auto playing flv on it, and then minimize the window. The video will only start to play/load once I maximize the window again.

The other instance I have seen it is with the position of the page. So if an flv is placed onto a long html page, all the way at the bottom, it will only begin to load/play once I have scrolled to make it visible.

I have done some searching but have not been able to determine what this would even be refered to as. Is it controlled by Javascript or Actionscript, or is this just a the way flash player functions?

View 7 Replies

Professional :: Black Areas In Video Widget When Input Text Focused

Feb 23, 2010

I have two separate video widgets running on the same test page [URL] and when an input textfield from one of the widgets receives focus or is typed into, the other widget goes black.

View 1 Replies

ActionScript 3.0 :: Change The Default Key (space Bar Key) To Execute The Action Of The Focused Element In The Stage?

Jun 3, 2011

it's possible to change the default key (space bar key) to execute the action of the focused element in the stage?If you ever worked with the Focus Manager you've possibly seen that when you press the space bar the focused item is "executed".Can you disable that "executor" or can you change the space key with the enter key?

View 2 Replies

Flex :: How To Get All Buttons Pressed With Return Key

Apr 23, 2010

Buttons in flex can be pressed with the space key, but a client would like to press enter instead of space. This can be achieved by programming each button, but it would be very time consuming. How to do this in the less amount of time?

View 1 Replies

Flex :: Pressed Key 's Charcode To String As UTF-8

Jun 6, 2011

private function pressedLetter(event:KeyboardEvent):void
{
pressedKeyLabel.text = String.fromCharCode(event.charCode);
}

According to code below, the letters such : "ı, ğ" could not be displayed at pressedKeyLabel, it shows different things. how can i display this letters correct ?

View 1 Replies

ActionScript 1/2 :: Keys Pressed Or Not Pressed?

Dec 6, 2010

I am struggling a bit with keys on the keyboards controlling a movieclip to happen.Ive got a person moving when pressing right and left, and a movieclip with three frames: First frame is a movieclip with the person standing still, looking bored. The second frame is the person moving right, and the third frame is the person moving left.This is the code that Ive inserted into the persons actions on scene1:

if (Key.isDown(Key.RIGHT)) {_x += speed;this.gotoAndStop(2);_xscale = +scale;} 
if (Key.isDown(Key.LEFT)) {_x -= speed;this.gotoAndStop(3);_xscale = -scale;}
 
this code works alright accept that when the keys are not pressed it doesnt stand still, the legs are still moving, so I tried to include this code aswell:

if (!Key.isDown(KEY.RIGHT)) [code]....this makes the person standing still when not pressed but not moving the legs when turning right and left.

View 3 Replies

Flex :: Know Exactly What Numpad Key Is Pressed In AS3 (with Num Lock Disabled)?

Sep 11, 2009

In Actionscript 3 I see that if I press the "8" key (from the numpad) I got the result of keyCode of the numpad key "8", but when I disable the "Num Lock" and press the numpad key "8", the event I receive the keyCode of the Up Arrow key...

How to difference between the keys of the numpad (with Num Lock disabled) and the original keys, such as the Arrows, End, Insert, Delete and so on?

I've tried using the keyLocation property of the event, the value of that property is 0 for the arrows and 3 for the numpad, but when the Num Lock is disabled the value for the 4, 6, 2 and 8 in the numpad are 0, so I can't difference between the numbers with numpad disabled and the Arrow keys.

Also the numLock property of the Keyboard class didn't work, because I can't know if I press the Up Arrow or the 8 whit Num Lock disabled (because they trigger the same event, or I think that)

View 4 Replies

Flex :: Enable Button To Keep Pressed (Down State)

Oct 20, 2010

I have skin a button with up, down, over, and disable states. I hope to know if there a code enable a button to keep press (down state) when the user press and hold a specific key link to that button. Something like down_button state.

View 2 Replies

Flex :: Find Out The Character Pressed Key In Languages?

Dec 27, 2010

I can't use charCode, or keyCode in KeyboardEvent to find out the character pressed, because even if I change the keyboard layout, charCode and keyCode are not change (if press the same key).So, how to find the presssed character, following to the current keyboard layout?

The charCode property is the numeric value of that key in the current character set (the default character set is UTF-8, which supports ASCII).is not correct.

View 3 Replies

Flex :: Simulate Tab Key Pressed On Flex?

Jan 26, 2012

It is possible to Simulate a Tab Key when another key is pressed? I'm looking to do exactly the same, but with the DOWN & ENTER Key.[code]...

View 2 Replies

Flex :: Button To Trigger Event Continiously When Pressed... Not Once?

May 27, 2010

I'm wondering if there's a way to configure a FLEX button so it behaves like a push button...

View 3 Replies

Flex :: List Component That Acts As If Control Was Permanently Pressed

Jun 1, 2010

I have a list control and i want the user to be able to select many items at a time. Thus I want it to act that if the control key is pressed while he is clicking. Eg if he clicks on a selected row it should become unselected and if he clicks on a unselected row it should become selected.

View 1 Replies

Flex :: Events - Prevent Exit Fullscreen When "ESC" Is Pressed In Flex?

Feb 11, 2010

We have a Flex application which goes fullscreen on startup (which is possible when it's a projector .exe). When a user presses ESC, the application exits fullscreen mode. Is there any way to prevent this? This because we want to use the ESC-key for other functionality.Normally all keyboard input is disabled in fullscreen mode, but not when we run it as a projector. I already tried capturing the FullScreenEvent.FULL_SCREEN event without luck (this event is only fired when the user selects "Full Screen" in the Adobe Flash Player or hits "CTRL + F".

View 3 Replies

ActionScript 2.0 :: Selection.setFocus(textfield) - "textfield" To Be Focused When Movie Loads

Mar 2, 2003

I don't really know what I'm doing I'm completely gone in my own code, I think I'm going around in circles!

[Code]...

Ok let me explain what I want to do: when my movie loads I want "textfield" to be focused, so I use Selection.setFocus(textfield); Fine! But on a frame before this I have a button to enter my site! Now as soon as you click this button it changes the focus so that when I enter the frame with the textfield it is no longer focused! Make sense? Well on this frame once the textfield is focused you can enter text right away! and then I have this listener which listens to an event within the textfield! Ok now I'm even more confused then when I started explaining this! Anyway I want the textfield to be focused when you enter this frame and if the user focuses something else, well then they will have to focus the textfield themselves. Basicly I just want the the textfield to be focused on load, but the problem is my button at the start! What?

View 2 Replies

ActionScript 3.0 :: Name Of Key Pressed

Jun 29, 2010

Is there anyway to display the name of the key pressed on KEY_DOWN events? For example, if the user pressed the 'w' key I would want the SWF to print out 'w' and NOT the corresponding key code.

View 6 Replies

IDE :: Test To See If The S Key Is Pressed?

Sep 26, 2009

How can i test to see if the S key is pressed? (all i need to do is gotoAndStop)

View 12 Replies

Displaying A Graphic When A Key Is Pressed?

Apr 18, 2010

I am trying to play a sound and display a graphic when a key is pressed , so far i have been able to play my sound when i press the 'a' key but i also want to display a graphic that gets displayed while the key is down , i have created the graphic as a movie clip, not sure if thats right, iam not sure of the code i need to display the graphic.

View 1 Replies

Button On Pressed Stage

Oct 13, 2010

I have 2buttons. Each have 3stages: up, over, down.I want to have 1st button to stay on its 'down state' when pressed and then you should see 2nd button 'up' stage(down stage of 1st button is the same as up stage in 2nd button).If someone hovered again you see 'over' stage of 2nd button,when will click, button move to 'up' stage of 1st button.

View 1 Replies

ActionScript 2.0 :: Do Sth While Mouse Pressed?

Oct 18, 2010

I made a button and want do something when mouse is press, I mean when mouse is pressed that button should do its job. When button release scale of image will increase, now, I want it to do while mouse is pressed.should I use loop or conditional statement?

View 7 Replies

AS3 :: Flash - Print The Name Of A Pressed Key?

Sep 18, 2011

Does AS3 have a way to output the physical name of a key that has been pressed? (ie. "You pressed: Left Arrow")

The obvious solution is to convert the character code to a string, but this only works for things like the alphanumeric keys. Ctrl, Alt, etc have special cases, but this still doesn't help for things like the arrow keys or the F-keys.

Another possibly naive option is to have a Key, Value pair for all the keycodes and their names. It should be almost trivial (if tedious) to code this myself, but since AIR already has things like

KEYNAME_LEFTARROW : String = "Left"

I was wondering if this ability is already built in somewhere without having to keep my own collection of strings.

View 1 Replies

ActionScript 3.0 :: Check Whether Two Key Is Pressed?

Aug 11, 2009

I have a problem in keyboard event as3 is detecting only one key event.How to check whether two key is pressed

View 9 Replies







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