ActionScript 1/2 :: Change Initial Row Displayed In List Box?
Jul 14, 2011
This is in AS2 and should really be quite simple. I have a populated list box control that may or may not have an item selected. When the user enters some data in one of the data fields on the screen and then moves to another field, a database access is performed which returns some data which is used to populate other fields on the screen.
As part of this the item in the list box is selected based upon a code returned from the database. All so well and good. However, I cannot get the list box to move it's 'display window' to the position of the selected item. Ie I want the selected item to become the first item displayed in the list box. (Note: NOT the first item of the list box...
View 3 Replies
Similar Posts:
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
Jan 28, 2010
Environment: Flex/As3/Cairgorm/composite component.I have two comboboxes and two datagrids such that the selection of combobox 1, inserts data into combobox two and the fist datagrid.The selection of combobox 2 inserts data into datagrid 2.I have setup the change event so that the user selection on each of the combo boxes do the right thing. The problem is that on the initial load of the comboboxes, the change event does not fire and subsequent synchronization data loading does not happen.Is there an event for getting the itemselected (1st item) after the combobox is initialized?
View 1 Replies
Apr 21, 2010
I'm trying to do to familiarize myself with flash. I'm loading an external XML document into a Flash AS2 project using the XMLComponent. I'm able to get everything to display properly within my lists except for my hyperlinks.
I've enclosed my hyperlinks in the XML document using the <![CDATA[hyperlink]]>. Once the movie launches.....the full URL tags are being displayed: (eg. <a href="http://www.google.com">Google</a> )
My hyperlinks are in there own seperate List component.
View 1 Replies
May 21, 2009
Yet another simple project I'm trying to do to familiarize myself with flash. I'm loading an external XML document into a Flash AS2 project using the XMLComponent. I'm able to get everything to display properly within my lists except for my hyperlinks.
I've enclosed my hyperlinks in the XML document using the <![CDATA[hyperlink]]>. Once the movie launches.....the full URL tags are being displayed: (eg. <a href="http://www.google.com">Google</a> )My hyperlinks are in there own seperate List component.
View 1 Replies
Oct 11, 2004
i have a comboBox that has a defined fontSize for the choices inside which is 10, (myComboBox.fontSize = 10. How can i change the initial value, label I'm guessing, to be a fontSize of 10 as well?
View 2 Replies
Jan 5, 2011
I'm attempting to draw a text box on the screen. If I assign width and height to any value, as in the code below, I don't see anything drawn. Why is this? What is the use of width and height? Adobe's docs say it's the width/height of the sprite in pixels. Why would that occlude or prevent the drawing of a textbox or another box? I assumed the width/height would set the area that this sprite could be drawn upon, but based on this, I'm probably wrong.
package
{
import flash.display.Sprite;
[code].....
View 1 Replies
May 2, 2011
I have two movieclips in the centre of my stage. One is on top of the other and fade's between them using left/right buttons.I want to change this so that they slide in like a jQuery slider does. I don't want to change the initial position of the movieclips (on top of each other) just change the fade effect to a slide in.
View 1 Replies
Oct 7, 2009
I have been scripting this flash profile card which pulls data from multiple XML files. The problem i am having is when it comes down to pulling this 1 set of information which is accessing the attributes of an array of specific XML nodes on display after the first item it inputs a comma before each item.
My code:
---------------------------------------------------------------------- ---
xmlData = new XML ();xmlData.ignoreWhite = true;xmlData.onLoad = loadXML;xmlData.load ("../xml profiles/test.xml");
---------------------------------------------------------------------- ----
function loadXML (loaded){if (loaded){ xmlNode = this.firstChild;
[code].....
This is just a draft version of the layout i used to pull up fake data... to show the commas.Lastly i am wondering if it is possible to control the 3 text fields using 1 scroll bar or would i be better off learning how to create columns in 1 text field to display these lists.
View 2 Replies
Aug 7, 2009
I have two movieclips on the stage mc1 and mc2,the navigation for mc2 and mc1 is in mc1 as as3 and MovieClips suddenly now that I've added some tabs into mc2 (new layer, no instance names yet) the navigation code in mc1 has stopped working,if I change the initial stop command to a later frame in mc1 I can navigate back to the first frame and then to one other place in the menu but after moving away from the first frame I can't seem to get any of the buttons to work, its only if the stop command is on a later page that those buttons will workon the main timeline i'm using;
ActionScript Code:
stop();
mc1.stop();
[code].....
View 0 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
Jun 11, 2004
I can't get code in my button to change the values displayed in my dynamic text boxes. I have a column of twelve dynamic text boxes which display numbers stored in an array. The array contains more than twelve numbers. I want to use buttons to refresh the information in the boxes (effectively creating a scrolling effect) so that the remaining contents of the array can be revealed as required. In the code below Stats1 etc. refer to the dynamic text. The array is called Stats4display. This shows the information fine.[code]I had hoped that by incrementing the value of x I could update all the dynamic text boxes with the next value along in the array.
View 9 Replies
Jan 7, 2011
Can I use actionscript to change the size of a displayed object based on 2 objects proximity?
As in the closer 2 objects get, the bigger another one gets?
View 1 Replies
Apr 25, 2007
I was wondering if it's possible to have a dynamic text box that can change sizes, without distorting the text displayed in it... I would also like to set it up dynamically.
View 4 Replies
Feb 11, 2011
I'm attempting to change the contentBackgroundColor of a List component depending on the content found within the dataprovider.[code]...
View 2 Replies
Dec 20, 2011
I have a s:List in my flex application attached to an ArrayCollection ( elements ). I want to change position of one element, so in fact I'm changing it's item index, the question is, how to do this kind of action ?
Here is a better example :
item 1 i : 1
item 2 i : 2
item 3 i : 3
item 4 i : 4
[Code]...
View 2 Replies
Feb 10, 2009
I have a doubt about the List component.Back in 2.0 to change some colors of a List Component in this case named my_list i could do the following:
Code:
my_list.backgroundColor = 0x469EE6;
my_list.color = 0xFFFFFF;
my_list.selectionColor = 0x000000;
my_list.textSelectedColor = 0xFFFFFF;
my_list.rollOverColor = 0x97A3B3;
View 0 Replies
Nov 4, 2009
I have a series of mc's that I'm adding to the a display list of "theContainer". This is a "canvas" I'm using to drag mc's around on to make various pictures.I've set up my code so I can click any mc in that list and make it "selected". I can then, with controls outside "theContainer", change the selected clip's scale or alpha, etc.I'd like to set up 2 buttons outside that display list so I can change the stacking order of those clips in "theContainer".So if I add clip "a" to the display list, then add clip "b" to the display list, then add "c" and "d" and "e and "f" to it, I want to be able to move any of those clips forward or backward.First I'd need to learn what the index is of the clip I want to move up or down in the display list.[code]That's my problem, I can't know what the index is, or how to get a property to find it.I'm looking for a way to "get the clip's index" then to "make the index, the current index + 1", to move it up in the display list."setChildIndex( dispObj, index ) would be nice if I could know what the index was and then add +1 to it like this:setChildIndex(clip, current index + 1);
View 6 Replies
Nov 3, 2009
I have a series of mc's that I'm adding to the a display list of "theContainer".
I've set up my code so I can click any mc in that list and make it "selected". I can then, with controls outside "theContainer", change the selected clip's scale or alpha, etc.
I'd like to set up 2 buttons outside that display list so I can change the stacking order of those clips in "theContainer".
So if I add clip "a" to the display list, then add clip "b" to the display list then add "c" and "d" and "e and "f" to it, I want to be able to move any of those clips forward or backward.
View 9 Replies
Feb 26, 2011
I tried this but doesnt works: var tf:TextFormat = new TextFormat(); tf.font = "Arial"; tf.size = 25; tf.bold = true; list.setStyle("textFormat", tf);
View 3 Replies
Jul 10, 2011
I have a component that contains a list that implements a custom renderer. I use this component as a tooltip, keeping one in memory and just altering the databindings as necessary.
Something like this where TTComponent is a class that extends Canvas:
<s:TTComponent>
<s:BorderContainer>
<s:List id='lstItems' dataProvider="{data.Items}" width="50%" borderVisible="false" contentBackgroundColor="#222222">
[Code]....
Now, what happens is when data containing many items is set to tt.data, the list resizes itself larger and displays fine. However, after this, if data containing few items is set to tt.data, the component momentarily displays larger than it needs to be, then resizes itself smaller.
What I'd like to do is have the component resize itself before it displays, so I don't see the resize on screen.
View 1 Replies
Mar 13, 2012
In flex 4.5, I have an application that has a BorderContainer that loads a spark list (mxml style - _myList and the borderContainer is stored in a library outside of the parent application) that loads an arrayCollection with an itemRenderer (I should note said itemRenderer is not an inline renderer - on selection of an item in the list, the itemRenderer expands, loads a particular control within the item renderer based on data passed from the selected item in the list) and allows the user to perform a search. This works all well and good on startup/load, until I try to change the dataProvider for the list (my app allows users to switch data sources which then creates a new dataProvider with new variables). I have tried:
[Code]...
View 1 Replies
Feb 4, 2009
How do you change the background color of a list component?
I have tried to change the style by using
Code:
myList.setStyle("backgroundColor", 0xEAEAEA);
but that did not change anything.
It is the color of List_Skin that I would like to change (see link below).
[URL]
I would rather change it programatically than use any embedded resources.
View 1 Replies
Feb 6, 2010
I am trying to use a list box to show a list of items, and load different images as referenced in the XML when the user changes the selection in the list box. I have the list box created, and have written out a text area to make sure the data is coming through OK when selection changes, but when I pass the image URL to the loader, it doesn't work, but no errors are thrown. I get a good path to the image from the bInput variable below, but when I add that to the loader1 loader variable, I just get [object Loader] from the trace.
Code:
import fl.video.*;
import flash.events.*;
import flash.display.MovieClip; [code].....
View 1 Replies
Aug 5, 2009
IS there a way with flashes combo box to change the value without selecting one from the dropdown list.I tried [code]
View 7 Replies
May 28, 2009
i made a project using list and data grid componant is there any way make me chage the color of it.
View 1 Replies
Nov 22, 2009
I created a list control at runtime as following:
[Code]....
//Where myDataArray is an ArrayCollection consisting of my Custom ValueObjects. When i execute the code it displays my list with custom item renderer, which is fine. But when bring my mouse over it, it doesn't give any colour highlight which means it is not selecting. Secondly, when i click on any of the list item, it doesn't dispatch any change event. I tried a lot but couldn't understand it.
View 1 Replies
Nov 25, 2010
Is there anyway to change the colour of items showing in the dropdown list? By default, it's showing skyblue and I need to change it into grey? I'm using Flash CS4 IDE and AS3.
View 1 Replies
Jan 11, 2011
I have one list, which the item render it`s like this:link. But now I need to enable or disable the button delete depends the view state which my List is inside. This is my view(which contains the list):
[Code]...
View 2 Replies
Jun 22, 2011
I want to set the BorderColor of certain Item Renderers (textInput) of a List. By default all have a common border color, but I want for example when clicking in an item to have a red border. I tried this on a click event in my itemRenderer,
[Code]...
View 1 Replies