ActionScript 3.0 :: Add Keyboard Accessibility To Not Flex?

Mar 4, 2010

I have a flash based Air application I'm trying to add keyboard accessibility to (not flex).

My problem is that MouseEvent.CLICK is not being broadcast when tabbing to and hitting enter on an interactive movieclip.

The yellow hilight rectangle shows up around the movieclip fine, and the same code works perfectly if it's compiled into a non-air swf.

Is there some difference in keyboard interaction when compiling to Air?

View 1 Replies


Similar Posts:


Playback Component Accessibility - Control With Keyboard Commands

Sep 14, 2009

Can you tab into CS3 Playback components or control them with keyboard commands in a regular (non screenreader) browser like IE? If not, can you in CS4? I believe that all screen readers can control Flash playback now, correct? But I have a higher up who wants it to be keyboard controlled as well.

View 4 Replies

Flex :: Why Is Accessibility Turned Off By Default

Aug 11, 2009

I'm a blind developer who is considering learning Flex. According to this link when you compile a flex application with the defaults it isn't accessible to screen readers. Why is this, are there performance issues I should be aware of, or was this just an arbitrary choice Adobe made?

View 2 Replies

Flex :: Enable Accessibility In Application?

Feb 13, 2010

The Accessibility best practices for Flex page from Adobe website list four strategies to enable accessibility :

[Code]...

I test if the accessibility is enabled by checking the value of Accessibility.active, which is always false in my sample application containing only a datagrid and some buttons, using the four above strategies. As I'm new to Flex, I don't really know where else I could search to enable it, and no, Accessibility.active = true; isn't a solution, as it's a read-only property

View 1 Replies

Flex :: Accessibility - Reading Out A Label/text?

Nov 28, 2010

I need to make a small app accessible to screen reader.I'm managing to make buttons accessible, but I would also like to have a section of text accessible by screen readers so that users can hear what the text says.

I can't seem to work out how to do this.. I've tried various text controls and set them as focusEnabled, tabEnabled, i've set the accessibility* attributes too but it never seems to work, I cannot tab to a text label and hear the content.

I'm honestly a little new to accessiblity in Flex so apologies if i'm missing something obvious.

View 1 Replies

Actionscript 3 :: Add Accessibility Requirements To A Swf Created Using Mxml + Flex Sdk?

Jul 5, 2011

How to add accessibility requirements to a swf created using mxml+flex sdk? I have a few buttons and textfields in the swf and the impaired user should be able to increase the button size and text size while using the swf. I've looked into flex built-in accessibility features, but its not what I require. I want to run the swf standalone without a browser, so preferably change the size with a visual widget.

View 1 Replies

Actionscript 3 :: Flex 3 PopUpManager Does Not Correctly Enable Accessibility Features

Jan 3, 2012

I have an application written with Flex 3.6 and when I create a modal popup dialog, the buttons and text on that popup do not work correctly with the Accessibility properties that I have defined. The app is compiled with the accessibility flag. I build a simple app to test demonstrate the problem.

[Code]...

View 1 Replies

Android :: Flex Mobile Project: Numeric Keyboard - Not A Full Keyboard

Jul 26, 2011

How do? Edit the field with numeric keypad, not a full keyboard my code: <s:TextInput text="{TransactionObject.cartao}" id="item" restrict="0123456789" /> app for Android and playbook

View 2 Replies

ActionScript 3.0 :: Accessibility Of Instances In Different Frames?

Oct 20, 2011

In AS2,suppose there is an input text field in frame 1 with var name ONE,its text content can be accessed in say frame 2 even though that textfield is not in stage.But in AS3,I think this is not possible right?So,how can I access instances or movieclips or variables at different frames?Do I have to make a class and make const vars?If so,If I have some irregular shape,say a man as movieclip,how can I add it to the global class?

View 5 Replies

ActionScript 3.0 :: Add Accessibility To A Flash Program?

Sep 22, 2008

I need to add accessibility to a flash program which I have created. I can make the screen reader state all of the different buttons and at the top level of a combobox. However if I traverse the combobox none of the items are mentioned by the screenreader. I've tried various things down to trying to set the accessibility properties of the combobox items as though they were an array cb[0].accessibilityProperties = accessProps0; but nothing seems to work.

View 2 Replies

Flash :: Accessibility Properties Not Updating In Loaded Swf

Feb 16, 2011

I'm making a modular site, that loads in external swfs that need to have decent screen reader names for each of the buttons.

The shell swf is set up to work with Thunder and NVDA screen readers by creating an AccessiblityProperties instance and assigning it to the relevent display objects then calling Accessibility.updateProperties( ) ; This method works in the main swf, but when used in the loaded swf it's not picking up the updated accessibility properties of the buttons, even though Accessibiltiyy.updateProperties( ) ; as been called again.

View 1 Replies

Actionscript 3 :: Accessibility To The Loaded Flash Movies?

Feb 20, 2012

I need to load a flash-game inside the flash site. The goal is to get information about the winners' score to publish it on the site. The problem is that the game was developed by third-party programmers, so I have no idea if I can get access to any variable of the loaded swf (game) to get the highscores.

How can I retrieve the data from loaded swf?

View 1 Replies

ActionScript 3.0 :: Custom Class Inheritance And Property Accessibility

Jul 24, 2010

I'm having trouble accessing the variables of my main class from other class objects UNLESS the objects are extensions of the Sprite or MovieClip class, have been added to the display list as a child of the main class instance, and I am able to use the this.parent.variable syntax. What I'm wondering is, isn't it possible to have a simple Object declared and instantiated, residing in memory and able to access another object's properties, without it being a part of the display list? Am I doing something stupid here?

Let me explain the code a bit in case it's a design flaw on my part. (I'm still learning AS3 and am not completely fluent with it yet).

I have a project with about 15 custom classes. There are no frame scripts in the .fla file. I am using it basically as a library only. The document class (let's call it Calculator for this example) extends the Sprite class and specifies the properties for the SWF dynamically. All other classes are instantiated from this main class. I have a bunch of variables that I want accessible to the different classes, so to keep them in a central location, I have declared them in the Calculator class, and am trying to access them from the other object instances.

(It should be noted that there ARE animations that need to play at times, so I'm assuming I can't NOT extend the MovieClip or Sprite class when creating the document class.

For this example, let's say there's another class called XMLLoader.as, whos instance was created from within the Calculator class, that needs some information stored in the Calculator class' variables. Incredibly simplified code for the two classes might look like this:

Document class:

Code:
package {
import flash.display.*;
public class Calculator extends Sprite {

[Code].....

So, in the code above (I've bolded the most important lines in red), the only way I have been successful at accessing the variables declared in the document class from other classes is to extend the MovieClip or Sprite class when I create the custom class, add the object as a child of the document class (Calculator), create a generic variable cast to the datatype of the document class, and use it to access the variables.

This seems really excessive to me, and I'm wondering if it is, or if this is simply a limitation of ActionScript. Does, for instance, a URLLoader object actually need to be associated with a MovieClip included in the display list in order to access internal variables of the main class object? Is it me, or is that really convoluted? Shouldn't it be able to exist in memory separate of the display list and still have access to varibles declared from the main timeline (i.e. the document class in this case)? Is there no other syntax for accessing these elements? Have I done something limiting with how I've designed this or declared the variables?

View 9 Replies

ActionScript 3.0 :: Code For Access/shortcut Keys/Accessibility?

Sep 22, 2008

I have figured out how to add tabs to text by makinginvisible buttons and using the accessibility panel, but haven'tbeen able to get access keys to work (there is a place to add theshortcut on this panel). I have read that I need to enter somethinglike "Control+I" in the field for shortcut, but I don't know whatcode to add to the frame to get it to work.

View 1 Replies

ActionScript 3.0 :: Accessibility And Full Screen Flash Site?

Mar 4, 2009

Just finished our new site which is full screen Flash effort (link in my signature if you're interested), now I would really like to implement some accessibility features, bookmarking, history etc.The whole site has a central navController function through which nav requests pass which I've developed with this in mind, and I've got a vague idea of how to do this using invisible frames and passing variables through FlashVars but is there any consensus on what is the absolute best way of doing this? The new Attik site is a good example of what I want to achieve [url]

View 4 Replies

ActionScript 3.0 :: Accessibility - Traverse The Combobox None Of The Items Are Mentioned By The Screenreader

Sep 22, 2008

I need to add accessibility to a flash program which I have created. I can make the screen reader state all of the different buttons and at the top level of a combobox. However if I traverse the combobox none of the items are mentioned by the screenreader. I've tried various things down to trying to set the accessibility properties of the combobox items as though they were an array
cb[0].accessibilityProperties = accessProps0; but nothing seems to work.

View 1 Replies

Flex :: Keyboard - Flex Air Receive Input When Unfocused?

May 12, 2011

I am trying to find out how to continue to receive keyboard input to my app when the app is not focused. For example, if I dock my app to the system tray, is there a way to continue to receive keyboard input to be fed to the app?

View 1 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

Flash :: Field Doesn't Accept Numerical Keyboard When One Use Upercase Keyboard?

Apr 29, 2010

When using a notebook and I have remarked that I cannot enter numerical character with shift + a letter to enter number.Is this a bug in flash ? How to circumvent this ?

View 2 Replies

ActionScript 3.0 :: Asdoc Generation Fails On Keyboard.A And Keyboard.D?

May 4, 2011

I get an error while extracting the asdoc of my flash professional project:

Code:

C:...Main.as(33): Spalte: 73 Fehler: Access of possibly undefined property D through a reference with static type Class.
private var moveRightArray:Array = new Array(Keyboard.RIGHT, Keyboard.D);
^
C:...Main.as(33): Spalte: 73 Fehler: Access of possibly undefined property D through a reference with static type Class.
private var moveRightArray:Array = new Array(Keyboard.RIGHT, Keyboard.D);

[code]....

View 9 Replies

Flex To Poll The Keyboard?

Nov 7, 2011

I'd like to tell if a certain key is being held down around the startup of my AIR (desktop) application, and I'd like to tell if a specific key (ALT in this case) is being held down. Unfortunately, flex seems to be so event based that there is no way poll the keyboard directly. Can anyone verify this?

I know that it's possible to take the keyboard events and keep track manually. However, this won't work if the user presses the key right before startup, so it isn't a solution for my specific problem.

View 2 Replies

Flex 4.6 TextInput Keyboard On IOS?

Dec 12, 2011

I have migrated my app from Flex 4.5.1 to Flex 4.6 and the TextInput click event was broken so I do this « skinClass="spark.skins.mobile.TextInputSkin" » (like was suggest here [URL]..and all seems work (tested in my Android and seems ok) but one user with iOS 5.1 complained that now the keyboard dont popup ?

Also complained for the TextArea that I dont have code in my extended component but also use the skin spark.skins.mobile.TextAreaSkin so the layout became similiar in my textinputs.

View 1 Replies

Flex :: Keyboard Event Handling?

Jul 31, 2009

I'd like to arrange things so that I have a chain of keyboard event handlers in my flex application, all of whom are queried when key down events occur. Basically, when a visual component is on screen, it is a candidate for handling a key press event. Something like this (clearly this is pseudocode):

<application handles_keys="F5, F6">
<tabGroup>
<tab1 handles_keys="pgup, pgdn">
<control handles_keys="0,1,2,3,4,5,6,7,8,9" />

[code]...

I have a class written that will respond to the key events the way I want it to, so how do I register one or more instances of this class to have the results I want? Also, note that there are some situations where this class should receive events that would ordinarily be handled by a UI component. The TAB key is the main example; I have a few cases where I want my key down event handler to fire even when the focus is on a text field.

View 3 Replies

Flex :: Keyboard Simulate Key Press

Aug 26, 2009

I'm creating a virtual keyboard for a touchscreen Flex app and i'm trying to simulate a key press by dispatching a KeyboardEvent. I've written a handler function to listen for the event and act accordingly. So far so good but it's starting to get complicated as i have to manage the focused textInputs (easy), the cursor position in those fields (not to so easy), etc.Now, if only there was a way to actually dispatch a KeyboardEvent that Flex would actually interpret as a genuine key press all those issues would be gone.

View 2 Replies

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

Flex :: How To Add Keyboard Shortcuts To MX MenuBar

Oct 17, 2010

I have an mx:Menubar, which I need to be able to open/expand based on the key pressed. For e.g., if Shift + R is pressed, it needs to open the 'Request' topmenu. Then if Shift + N is pressed, it should load the 'New request' module in the module loader. I've already implemented the MenuBar/module-loading functionality with the mouse, but I haven't been able to implement the keyboard shortcuts. I found a nice sample at [URL].

However, the solution directly performs the action (e.g. Shift + N to load the 'New request' module). The menu does not open/expand when you press the shortcut as though you had hovered your mouse over it (e.g. Shift + R to open/expand the 'Request' topmenu and then Shift + N to load the 'New request' module).

View 1 Replies

Flex :: DropDownList Selection When Using Keyboard In Air

May 11, 2011

Let's say I have a DropDownList with the 50 states in it. I would like to type in the letters "C + O + L" to jump to Colorado, like Firefox and most application do. Right now, it's jumping from California to Ohio to end with Louisiana.

View 3 Replies

Actionscript 3 :: Flex Popup With Keyboard Key Like C / V / X / A Key

Mar 22, 2012

As i report earlier in the issues of pop-up of that i'm not able to write "a,c, v and x" characters in the text-input field in pop-up.Shortcut actions(a = select all, c= copy, v = paste and x = cut) are performed on those keys on keys text-input fields.In the popup there is a data-grid and in the data-grid an item renderer where i enter the input.[code]

View 1 Replies

Flex :: Keyboard - Button Acting Like A Backspace?

Jul 27, 2009

How would you make a button event call a function which acts like a backspace keyboard event delete.I tried faking the dispatch keyboard event "keyup" "keydown" with keycode 8 and keynumber 8 without success.No other way than doing it by hand with begin and end select index plus substr ?I have a textinput i just want to add a button acting like a backspace.

View 2 Replies

Actionscript 3 :: Keyboard Navigation In Flex Datagrid?

Aug 21, 2009

I want to implement an Excel like keyboard (arrow) navigation in an Advanced Datagrid in Flex.The docu at [URL]states that arrow keys can be used to navigate around cells. However, in my case that does not work. I can only navigate rows up and down

When focus is on the AdvancedDataGrid control:

* Use the Left, Right, Up, and Down Arrow keys to move between cells.

* Use the Shift+Home and Shift+End keys to move to the first and last column in current row.

* Cells are only selected by default, they are not editable.

* Press the F2 key to make a cell editable.

View 2 Replies







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