ActionScript 2.0 :: ComboBox Component - List Doesn't Drop Down
Jun 3, 2008
I have a combo box on the stage in a main SWF. when the user selects an item in the dropdown list a child SWF is launched into level0 using loadMovieNum and data is left behind using _global variables for the child SWF to use. this works fine and well. but inside the new child SWF that is launched is a button that takes you back to the previous main SWF with the ComboBox. its done using the same method loadMovieNum into level0. and the main SWF loads but you cannot open the ComboBox. it will not drop down. the halo green color on hover over is there and it gets darker when you click, but the list doesn't drop down. here is some code that I think may be significant to the situation...
[Code]....
View 12 Replies
Similar Posts:
May 10, 2007
I have a combobox and list component on the stage. The combobox has 3 selections. How do I get it so that each selection triggers the specific xml file to load into the list component? I can't get them to communicate to each other.
View 1 Replies
Mar 12, 2011
When a combobox is elected in the flex app, there is a quick flicker, then the combobox needs to be selected again in order to get the dropdown to open. After that, the dropdown works as expected, but only while selecting the control subsequent times while on the form. Reloading the form requires the double selection again.
View 1 Replies
Mar 30, 2011
Because of screen size, I must ensure we're only displaying necessary data to the user.I have a drop down box that contains only 5 items and I would like that when an item is selected, it doesn't appear in the drop down box (since technically it's showing twice, once at the top as the selected item and once in the list). how I would achieve this? I tried using a custom CellRender and overriding the "set selected" function to call this.visible = false if selected is true, but that simply hides the item but does not remove it from the layout of the drop down list.
View 1 Replies
Apr 29, 2009
I am working on a quiz application for a client. I currently have an array that as the user goes from one question to another, it holds the question number if the user answers the question incorrectly. At the end I have the results of the array displayed on a dynamic text field.I was wondering if there is a way to display the contents of the array at the end on a comboBox or list component. And, is there a way to make the items on the comboBox or list component be clickable so that the user could navigate to a different place on the project (like the section that explains how to answer the question correctly).Right now i have the array being created at the beggining:var questionsArray:Array = new Array();I have acommand so that if the question is wrong, add the number of the quesiton to the array:questionsArray.push(" #1");and I display the results of the array at the end:
View 12 Replies
Apr 14, 2011
i'm trying to repopulate a list when you select a new category from a drop down component.
So far i can populate the category drop down and i can also populate the list box from a default dir but i can't seem to get the list to change when you select a new category.
this is the category script that populates the drop down (this is working fine except that when i change the category i want the list box (bgList) to repopulate with the new location files):
ActionScript Code:
loadCat ="textures";
if (_url.indexOf("http") != 0) catFilepath = "xxxxxxx/backgrounds/";
else catFilepath = "xxxxx/backgrounds/";
[Code]....
View 2 Replies
Nov 8, 2010
I'm trying to set a specific list item in a mx combobox to have a custom item renderer, the problem is that I cannot do this via mxml, it needs to be done via actionscript at a later stage, eg: combobox gets created, combobox gets populated, user does other tasks, combobox needs to set one or more items in the combobox to have icons (via item renderer)..
I can do this via the onChange event, but it only applies the icon when the combobox is opened and there is a slight delay so you can see the icon being added.
View 1 Replies
Jun 29, 2009
how to populate a list box component located within a seperate mc in my swf with an array... the array comes from a response from a webservice call. I am not currently on the computer with my source code available so lets just use the following....
listdata[i] = the array i want to populate the list box with..... (listdata1, listdata2, listdata3, listdata4, etc. etc.)
movieclip1 = the MC within my fla containing the list box component
mylist = the actual list component
... just not all that familiar with the format of actionscript when working with objects... using CS3 and as2 btw,
View 3 Replies
Aug 11, 2010
I'm using flex 4.1 to write an application. i read in the documents that has the rowCount property to set how many items to display. the does not have that property. how can I limit the list to display 3 items ?
View 3 Replies
Nov 9, 2010
I am working on an older Flash project created in CS3 ActionScript 2.0 How can I make the pointer cursor change to the hand when hover over a list item?_root.slidePanel.myList'myList' is the list. I have traced out the contents of the List MC and it has a child MC called 'content_mc'. I assumed this was the object containing all of my list items but the only members of this MC I can see (when tracing them out) are 'setRGB' and 'searchKey'.
View 1 Replies
Mar 23, 2012
Why I have to press 2 times the arrow key down to get a navigation through the list items in a list component of Flash?
Theres any workaround for this? I have a listener for keyboard event that checks if keyCode is equal to 40 if it is then I use 'stage.focus = list', but I have to press 2 times key arrow down to start navigating through list items.
View 1 Replies
Jan 6, 2010
I want to restrict the number of entries that appear in the drop-down list of a combobox (ie the length of the drop-down). My research suggested that mybox.length = 20 should restrict the number of items in the list to 20 but it has no effect. A trace(mybox.length) gives "undefined" yet flash help says the default is 0.
View 2 Replies
Apr 26, 2007
Does anyone know how to force a combobox to drop up instead of down? by default, if your combobox is near the bottom of your movie stage it should do this...however...I'm calling a movie clip into another movie clip stage that is centered in full screen...therefore the "bottom" is too far away to make it do this. Hope this makes sense.
View 1 Replies
Nov 11, 2010
I'm building a top view 2D map, that it's objects are stored on the server.The kind of objects are 10 and might be a photo, label, button, lists, mix of them or labels with tooltips.The component must request the "areas" that are missing on screen.An area is 1000x1000 px and is cached in flex.To move in the map, will be like in google maps (drag-and-drop).I should be able to have another list and move objects from one to another using drag-an-drop on objects. Ex.: I grab an objects from a list and I move it on this map, I release the mouse button and the item is placed there.Now the problem is: I build a custom component for this trying to emulate the item renderer for performance and recyclage, implement drag-and-drop on objects and request the areas that are missing?
or
I extend the List component from spark and I add some features as multiple kind of itemrenderers and use recycle on them. Of course it must be able to request the missing areas on the screen and cache it's data.Maybe create a custom layout is needed too.What I need is something that must be really fluid, so the lighter this component is, the better.
UPDATE: *There will be not any object over another.
*I will not use hitTest on bitmaps because all bitmaps are wrapped in another component,as they,for now are itemrenderers.
Anyway I already begin to do this using a class that extends the SkinnableDataContainer and a custom layout. As the layout is not like a grid, is sparse, random items at diferent points(x, y).How to get the localX and localY, relative to item renderer and not to the Spark List, from a DragEvent in Flex 4?
View 1 Replies
Apr 13, 2006
I have two Lists (components) on stage. The first one (mainList populates from an XML called topics.xml
[Code]...
on event handler change, I want to load the second list on the other list component, called subList..It's not loading.. I believe it's because when it reads the data from my topics list, it reads topic1.xml instead of "topic1.xml" ( reads without the quotes). If I unquote line v.list.load("subtopic.xml"), it works, but I need it to be loaded from the XML..
[Code]...
View 1 Replies
Jul 28, 2009
Have created a combobox, a list of selectable text. Once the text is selected it display the selected text. now this script is working half ><
1. at beginning, the combobox is blanc, i want this actually by default. text1 displayed.
2. when i select for example text4, it does display text4, BUT when i select back to text2, nothing happens.[code]...
View 5 Replies
Nov 18, 2010
i don't understand Adobe's documentation for the SelectableList class:The SelectableList is the base classfor all list-based components--forexample, the List, TileList, DataGrid,
View 1 Replies
Mar 19, 2011
I have a bit of a problem (since I'm not used to binding with AS3), the thing is that I want to do this kind of data binding:
<mx:Application xmlns:mx="[URL]"
layout="vertical"
verticalAlign="middle"
backgroundColor="white">
[Code] .....
But the ComboBoxes are being created dynamically with AS3, everything is working except I cant bind the second ComboBox dataProvider to be the XMLList in the first ComboBox's selectedItem.
View 3 Replies
Oct 13, 2009
I didn't find any clear explanation how list in ComboBox could be sorted alphabetically. It's very annoying that this ComboBox takes data from array (label/data) in random order.
View 2 Replies
Jun 23, 2009
My SWF contains a combobox that functions as expected when it is viewed alone. But when this same SWF is loaded into a 'container' SWF the combobox no longer works.
The container SWF uses AS3, and the SWF that is being loaded into it uses AS2. Could this be the problem?
View 1 Replies
Apr 1, 2010
I have a combobox in a view that receives information about application state changes, and then is supposed to show or hide it's children based on the whole application state. It receives state change messages, it traces the correct values, it does what it's supposed to do, however, it just doesn't seem to work. Essentially, all it needs to do is hide a combobox during one state, and show it again during another state.[code]
View 2 Replies
Apr 19, 2011
My code snipet looks like :
[Code]...
Do you have idea about the reason for that error and how to prevent it? N.B. The code that triggers this error is as a result for click handler. If before encountering this error change the selection on my yearsCb, everithing is fine. EDIT: I forget to specify that this error is thrown when it is a selected item in my ComboBox. It seem that after container that holds the ComboBox loses the focus, it doesn't recognize it's ComboBox child as having a selected item anyway (this problem arise only after the modal popup close.).
View 2 Replies
Jan 20, 2010
im using as3 and components. here i make a combobox.editable=true; i type something inside.. then click outside, the combobox doesn't loose focus. i tried to write stage.focus=null;. but i got d following error
ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller.
at flash.display:isplayObjectContainer/removeChild()
at fl.controls::ComboBox/close()
at fl.controls::ComboBox/fl.controls:ComboBox::onStageClick()
View 1 Replies
Apr 12, 2011
In a flex application how to display default selecteditem from the dataprovider of the combobox.
I'm using {staticdataholder.currencylist}.
For example: I have to show INDIA so it should be selected as default from the list.
View 2 Replies
Jan 22, 2009
I want to show some different-2(dynamic) icon in my combo Box drop down list. I am able to show icon in combo box list but I want to change the color of this icon for different-2 values.
Here is ActionScript Code:
for(i=0;i<len;i++){
newColor = "0x"+_root.colorList.items[i].ColorCode;
labelText = _root.colorList.items[i].DeptCodeComboDesc;
comboClip.clip.opaqueBackground = parseInt(newColor);
_root.colorListCombo.addItem({label:labelText,pIcon:"comboClip"});
"comboClip" is a clip which I want to show as icon in combobox.
View 0 Replies
Feb 3, 2012
Here is my code.I run this code on change event.
for(var i:uint =0; i< model.medicalHistoryDTOListByPatient.length; i++)
{
if(formatDateTime.format(model.medicalHistoryDTOListByPatient[i].VisitDate) ==
[code]......
View 1 Replies
Nov 24, 2009
My question is, how I use the component combobox? for joining with php.
View 3 Replies
Apr 26, 2010
I am using a List with an ArrayCollection as a DataProvider. The list uses ComboBox as Item Renderer itemRenderer="mx.controls.CheckBox"I would like to bind the values in the List.You have a list with several comboboxes, and those values are loaded dynamically from an ArrayCollection.The ArrayCollection contains Objects with a boolean property for which I should bind the True/False values selected in the comboboxes.
View 2 Replies
Nov 25, 2009
I would like to populate a combobox from XML file in Flash. Then, when a list item of combobox is pressed then thumbnail image of that particular category is being loaded in a movieclip from XML file.
I spent a hard time to achieve this, but there is no success.
I used this code so far to accomplish this task.
Code:
var myXML = new XML();
myXML.ignoreWhite = true;
myXML.onLoad = function(loaded){
[Code]....
View 0 Replies
Jun 3, 2011
I am wanting to use the ComboBox Component in a Mobile App. Thing is the scrollbar is way to small.Is there any way to change the width of the scrollbar on the ComboBox either in code or by skinning it? I tried just adding some width to the scrollbar component by clicking into the component and changing the width,but it did not work correctly.
View 1 Replies