ActionScript 1/2 :: Set The TabIndex For The RadioButton Of A Same Group?
Oct 11, 2011how to set the tabIndex for the RadioButton of a same group.
View 5 Replieshow to set the tabIndex for the RadioButton of a same group.
View 5 RepliesI've got some MC's in my library that have radiobuttons in them -- all of this created at design time -- and pull them onto the stage dynamically. My question is how do I get the selectedData from the group? The setup is like this: In a MC called pageOne, I have a group of buttons with a group name of Q1, Q2, etc. I pull the MC onto the stage like this:
[Code]...
Do I need instance names on each of the buttons and add listeners to all of them?
I have a code:
import fl.controls.RadioButtonGroup;
rb1.label="C++";
rb2.label="ActionScript 3.0";
[Code]......
How do I assign a value to a radiobutton when it's in a for loop to then trace out the value when radiobutton is clicked? I got this now, but it just sets all the radiobutton values to 10..
View 8 RepliesI have a few radiobuttons I drag and drop within same group. In main.as I added click event listener.
How do I get the selected radiobutton ? handler target argument doesn't contain any reference to it.
I have some code here for some falling leaves. I was wondering how it can be altered so there is a delay between a group of leaves falling and the next group falling? also to slow down at the end of the fall? [code]
View 9 RepliesI have a main swf and some nav items which load in external swfs. This all works but it needs to be accessible. No problem. I created a set of alt nav buttons for tabbing. This works. what doesn't work is when an external swf is loaded in I can't the extranal swf to get the focus. It just stays on the buttons on the main swf.For buttons on the main swf I have set the tabIndex and in the external swf those buttons have their tabIndex's set and all are unique numerically.
View 1 RepliesDoes anyone know if there is a way to set focus to the next item in the tabIndex? So for example (in psuedo code): stage.focus = whatever the next item in the tabIndex is
Maybe something like tabIndex.next? I know this doesn't work because I already tried it, but maybe something like it?
if there is a way to set focus to the next item in the tabIndex? So for example (in psuedo code): stage.focus = whatever the next item in the tabIndex is
Maybe something like tabIndex.next? I know this doesn't work because I already tried it, but maybe something like it?
I have a series of dynamically generated textfield boxes that form a grid and I want users to enter a single character and then have the focus change to the next box. I have had all kinds of issues trying to reference the next textfield using the instance name I gave them when they are generated, so I thought if there was a way to just automatically go to the next item in the tabindex, that would be perfect.
I have a login system set up in flash where people enter an email and password. Hence,there's two text fields and a submit button.This submit button responds to the Enter key on the keyboard.The problem is that if I define those two textfields with tabIndex, the submit button does not respond to the enter key anymore.
View 2 RepliesI have a form with numerous input boxes. I've set tab orders to tab through the fields. In this scenario, I actually LIKE the edge highlight that appears around the textField when tabbing through them. However, this dissappears for any textFiled that I placed an onSetFocus event
View 1 RepliesI'm trying to add tabIndexing to a dynamically-created form, with a SEND button on the end that is constructed from a custom button class that extends Sprite.
For some reason, the tabIndex gets stuck on this button no matter what I do. If I disable it -- and enable it only for the TextFields -- it works fine, cycling through all of the TextFields endlessly. But as soon as I give this custom button Sprite a tabIndex value, it will highlight that button just fine in the order I tell it, but I can no longer tab or shift-tab to get off of the button again; it remains stuck there unless I use the mouse to click somewhere else and start over.
In an attempt to eliminate any variables, I threw this code together -- essentially the same thing I'm trying to do -- and it gets stuck with this code as well[code]....
I have several input text fields in flash. For instance, email and password to login. I also have a button that responds to the Enter key (to submit the data). Everything works perfectly until I use the tabIndex property in ActionScript. The moment I define those 2 text fields as tab Indexes the Enter Key does not execute the submit button. I can only click the button with the mouse.
I have:
userName.tabIndex=1;
password.tabIndex=2;
Where userName and password are the text field names. TabIndex works then but not the Enter key. It's only one or the other. How can I make Tabindex and Enter key Compatible?
iam giving tabindex order. some swf file loading runtime than can i change tabIndex order
View 1 RepliesI have a contact form on my site for which the text inputs are created via AS2. This works fine but I cannot get the tabbing to work (or even have any effect) no matter what I do. I have a menu that sometimes displays at the top, sometimes on the left and sometimes at the bottom. If it's at the top or bottom then the form tabbing works fine, however if it's down the side then when i tab from contact_namefield it goes to the 8th menu option, then the 9th menu option, then contact_emailfield then contact_messagefield.Similarly if i tab from the top of the menu it's goes down sequentially to menu option 7, then to contact_namefield, then menu option 8, then menu option 9 then contact_emailfield then contact_messagefield.
I cannot for the life of me work out how to change this, I would rather avoid setting tabenabled=false for every other element on the page (as i'd still like these to be tabbed), but either way I don't think this will fix it as the tabindexes i've specified seem to be having no affect at all, no matter what values i put in (even if i reverse them) the tab order is always exactly the same. I am using the following code and would be so grateful if anyone could point out what i'm doing wrong as I can't for the life of me figure it out!
var currfont=_root.textfont;
var inputcol = "0x" + _root.textcolour;var my_fmt:TextFormat = new TextFormat();my_fmt.bold = false;my_fmt.font = "Arial";my_fmt.color = inputcol;
[code].....
I feel like I'm missing something really simple here. I'm loading a AS3 swf containing a form (created by one of our designers) into a flex app. The swf's tabIndex properties work fine when the swf is viewed by itself, however, once it's loaded into the flex app:
<mx:SWFLoader source="form.swf" top="20" horizontalCenter="0" id="formSwf" complete="swfCompleteHandler(event)"/>
the form fields stop receiving focus on tab. I've been looking at the FocusManager in flex, for some sort of solution, but I can't seem to find any examples, and I'm not entirely sure I'm looking in the right place. Am I stuck redoing this form in flex?
I have some numericstepper in my movie, I given the tabindex for all numstepper, Its working fine with pressing TAB key, but I need this event also work even if I press "SPACE" key.
View 2 RepliesI have set up a Qwerty keyboard within a swf using duplicateMovieClip() - all works fine. If I have no tabbing whatsoever then I can use the tab key to randomly jump all over the keyboard.
But I would like it to tab in an order. Other buttons at the _root level are tabbing fine but these dynamically created ones are not doing a thing.
The keyboard buttons are created within a movieclip called mcContent which is sat at the _root level, anything within this mc is usually referenced by mcContent. or _level0.mcContent. (if it is being really fussy).
I have an instructions button - if this is NOT included in the tabIndex then the tabbing will work on the keyboard, erratically, but it at least goes there. As soon as I set _root.mcInstructionsBtn.tabIndex = 1; then nothing but the _root level buttons work
I have tried to add the tabIndex when creating the movieclips but this has not worked either. I have tried to set the tabIndex in a copy version where the keyboard buttons are created at the _root level and it functions exactly the same.
I have a challenge in a flash movie with TabIndex that involves some pretty comprehensive keyboard functionality and have solved the problem but the client is not madly happy with the solution. Problem is I don't know whether there is another way of solving it.
I've built a app the allows the user to upload a picture and manipulate it using marker placement. You can either drag the markers with the mouse or using tabIndex can tab through them then, once highlighted, you can move each marker up, down, left and right using the WASD keys.
I thought this was a nice solution since gamers are familiar with WASD to move directionally, however the client wants to use the arrow keys for this function. The problem resides in the fact that within the tabindex the arrow keys act in the same way as the tab, in that they tab forward or back through the index.
Client suggest tabbing to marker, clicking ENTER to disable tabbing, using the arrows to move the marker, then clicking ENTER again to re-enable the tabbing, move to the next marker, click ENTER to disable... etc etc.
I'm having an issue where the browser will not tab to a dynamic text region. If I change the region to input, the tab works fine, but I don't want users to change the text in the region. It is just meant to be read aloud by screen readers.
View 2 RepliesI've got a problem with following example code in flex:
Test.mxml:
<?xml version="1.0" encoding="utf-8"?>
<s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009" [code]..........
When I start the application and press Tab to cycle through controls, the focus jumps to the first text box, then to the first radio button of the first TestComponent, and then directly to the last textbox missing the second and the third TestComponents.
UPD: Explicitely setting tabIndex does not work either:
<?xml version="1.0" encoding="utf-8"?>
<s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"[code]...............
I have a button with a tabIndex. The button contains a textfield.When I click on the edge of the button and hit tab, the next item is correctly focussed.But when I click on the textfield (non-editable,not tab-enabled, no tabindex), and then hit tab, it focusses on the first object on the page, even though the parents focusIn function is triggered, in which I'm setting the focus to the parent object[code]...
View 1 RepliesI have a login system set up in flash where people enter an email and password. Hence, there's two text fields and a submit button. This submit button responds to the Enter key on the keyboard. The problem is that if I define those two textfields with tabIndex, the submit button does not respond to the enter key anymore. Do I need to use listeners to fix this somehow?
View 2 RepliesI want to have 4 radio buttons Then which ever radiobutton the user has chosen I want Flash to use it later on.
[URL]
however I receive the following errors why?
**Error** Scene=Scene 1, layer=action, frame=1:Line 4: The class or interface 'fl.controls.RadioButtonGroup' could not be loaded.
var myradioGroup:RadioButtonGroup=new RadioButtonGroup("Group 1");
**Error** Scene=Scene 1, layer=action, frame=1:Line 13: The class or interface 'MouseEvent' could not be loaded.
function showResult(event:MouseEvent):void {
Total ActionScript Errors: 2 Reported Errors: 2
i was wondering if there is a way to disable radio button selection after a choice has been made?I tried radioButtonGroup.selected = false, didnt work, nor did radioButtonGroup.enabled = false.For example, when i initialize my radiobuttongroup in the setup.enabled radio button in the setup, so user can select choice.radiobuttongroup.enabled = true.After which, i have a checkAnswer button to check that regardless of choice radiobutton group.enabled = false. that way, the user will not be able to choose choice 1, after which, blah, i am going to choose choice 2/3/4/5/...Or is it, tough luck bum, if u want to do it that way, comboBox/the other button are the only way to go?
View 3 RepliesI want to change the skin of a radiobutton with images which are called dynamically. I know how to modify radiobutton's sking but I want to call particular images for over, selected icons. Can it be possible in Actionscript 3?
View 1 RepliesI am having troubles adding a radiobutton to a VBox in actionscript.
var radioButton:RadioButton = new RadioButton();
radioButton.groupName = "source";
radioButton.label = "label";
[Code].....
I first created these radiobuttons in mxml and it worked fine, but now that the radiobuttons need to be dynamically generated in actionscript it doesnt work.
When stepping through in the debugger I get to a binding error (1009) when trying to execute the addchild statement and nothing shows up in the VBox.
Recently i worked in a project where i used 5 radio button to select a page number. Now the clients wants a big radio button. how can i increase the size of radio button in flex?
View 1 RepliesI'm working on Flash Builder with latest flex SDK. I have a problem getting the value radioButton of the selceted radio button inside a form:
<mx:Form id="form_new_contribution">
<mx:FormItem label="Contribution type" includeIn="project_contributions">
<mx:RadioButtonGroup id="myG" enabled="true" />
<mx:RadioButton id="subtitle" label="subtitle" groupName="{myG}" value="subtitle"/>
<mx:RadioButton id="note" label="notes / chapters" groupName="{myG}" value="note"/>
</mx:FormItem>
[Code]...
In my flex app I have some radio buttons. When a user clicks the radio button, I want to popup an Alert, and if the user clicks ok the radio button will change, otherwise their change will be discarded.
How do I accomplish that? I tried event.preventDefault(); while handling the click event, but that didn't do anything.