We are developing an AIR application for a huge touch table (110-inch, with 40 simultaneous touch points) that should allow multiple users to collaborate during a meeting by exchanging documents, contacts, notes etc. We are using: actionscript 3, robotlegs framework to wire the application stacks and for the dependency injection, gesture works for touch points and gestures management. Every user has the possibility of opening a bloc-notes to take on the fly notes. Every bloc-note has its own virtual keyboard, now the problem is that the keyboard is bind with the focus event of the text area so when there are more than one textarea all the keyboards on the stage write on the text area focused. We have used other kinds of events but we couldn't work out this problem. Any idea in how to manage focus events for multiple users or put in another way is it possible with actionscript to have multiple focus areas on a unique stage (even if this could appear contradictory)?
Actionscript 3.0 simultaneous multiple textarea
103 Views Asked by gpar At
1
There are 1 best solutions below
Related Questions in ACTIONSCRIPT-3
- [Actionscript]How to display the information inside an array of objects
- How to set a colour variable in JS
- When using INSERT OR REPLACE INTO in SQL is there any way to tell if a record was inserted as new or replaced in SQL for AS3?
- How to inject a bean in a view with Crux
- AS3 - Unable to resize Image width and height
- How do I move Pac-Man smoothly in AS3?
- Export Release Build is not working in Adobe Flash Builder, It does nothing on Finish button
- 1009 Error for a Character Skin Symbol in AS3
- Issue setting domain memory
- Implicit coercion of a value with static type Object to a possibly unrelated type Number
- Defer implementation of interface functions to child class
- Simple top 3 scores from an array to textfield
- Need ActionScript 3 coding for input boxes that will determine amount of color fill in a movieclip
- AS3 Caling MC on Parent Timeline from Child
- 2 error problems for simple music players
Related Questions in ACTIONSCRIPT
- [Actionscript]How to display the information inside an array of objects
- eval vs Function() return semantics
- create a quiz with actionscript 3
- How do I move Pac-Man smoothly in AS3?
- Issue setting domain memory
- proplem in in using load with enterframe event in flash & actionscript3
- Defer implementation of interface functions to child class
- How do I fix this Else-If error for my platformer?
- Layer Parenting, Make Child Layers Move Along With Parent Layer That's Being Moved by ActionScript 3.0?
- Action Script Trace
- How to return data type "Date" using AMFPHP
- For loop only sets last iteration
- I cant do an image gallery movie clip , my buttons doesnt work
- Scanning nextjs application by Sonarqube fails on github actions
- Assign custom field price as product price to specific user role in WooCommerce more than one
Related Questions in EVENT-HANDLING
- WinForms, event unable to subscribe from a custom class
- Removing the beforeunload event does not work in React
- Why won't drag event trigger on first attempt?
- Terminating turbolinks:click event listener once a user has navigated away from a form
- event handling for overlapping polygons in google maps
- Global event monitoring with WPF
- nodejs EventsEmitter, replace the last event handler with a new one
- What is the difference between "Action<object?, EventArgs>" and "EventHandler(object? sender, EventArgs e)"?
- React vs JS event handlers for clicking outside the component, which one is best practice?
- Event Handler removing subscribed function not affected
- Can I prevent enter key press from calling change event of Input tag?
- scrolling problem with combobox inside datagrid inside scrollviewer
- Powershell - Nested loops seeming to ignore if statement
- Trouble with 'keydown' Event in Chrome Extension: Capturing Backspace Action
- Why doesn't preventDefault() of an input event stop changes to the value of a form element
Related Questions in MULTI-TOUCH
- How to support multi touch for Android using react native
- what is /d:VRI on logcat output
- what is Fingersgesture event on android?
- android 13 multi touch issue
- Add Multitouch Support in SwiftUI to DragGesture()
- Handling simultaneous button presses in React Native Android
- SplitMotionEvents not disabling multi tou
- Android TouchEvent Location Y Value Greater than Screen Height When Bottom Of Screen Clicked
- How to recognise 2 Drag Gestures simultaneously in SwiftUI
- RealityKit's ARView – Multiple touches not working
- Flutter: how to stop the finger in the side borders of the screen count as a touch?
- Lag when processing pointer position during onTouch MotionEvent Android Kotlin
- Avoid (or delaying) handling the first touch in case the user touches with two fingers
- How to handle event when pointer moves in multiple pointers?
- How to 2-finger touch on the "google_maps_flutter" to only zoom, but keep the center of the screen fixed
Related Questions in FOCUSMANAGER
- How to clearFocus from TexttFields when scrolling Column on Compose?
- why does not focusManager work in Jetpack Compose?
- How to set keyboard focus to a textbox inside a user control in WPF?
- How to stop controls from losing keyboard focus after changing when IsFocusScope is set to true?
- I want to set the focus to the first button in an ItemsControl which uses a template to generate buttons from a BindableCollection of objects
- How to keep focus of custom textbox within when there is validation error and many custom textbox are placed one after other
- How to manage Focus state in Jetpack's Compose
- FocusManager.FocusedElement won't bind on a page
- How to find the name of current JTextField of a View in Java?
- In which way is Angular Focus Manager WAI-ARIA compatible?
- Android: How to bring focus to the updated view
- Focus navigation in keyBinding
- Actionscript 3.0 simultaneous multiple textarea
- WPF Find new focus control in PreviewLostKeyboardFocus
- WPF Microsoft Ribbon Control does not work with FocusManager?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You could manage focus manually by having a single, high-priority 'key down' event listener on stage and then routing the keypresses appropriately, but then the problem becomes differentiating from which keyboard the key event originated. If you have custom keyboards, that could be fixed by having keyboards post custom key down events.
Hope this helps.