Tagged Questions

4
votes
1answer
3k views

drag-and-drop problem in a Tilelist using an ItemRenderer

in my flex application, I created a Tilelist. In this Tilelist, I am using an ItemRenderer to create a box consisting of an image and an VSlider in each tile. The tile need to be dragable when you ...
2
votes
2answers
102 views

Load images to a TileList from Mysql using PHP and XML on Flash CS5

I have a mysql database with a table containing PATH's to images. I want to load al the images to a TileList. Now i have this in PHP: <?PHP mysql_connect("localhost", "root", "root"); ...
1
vote
1answer
442 views

TileList item Display

I am using Flex 4. I have created an image gallery with TileList When I click on an item in the TileList, I want the image to display by the side of the TileList in a BitmapImage. Can anyone help me ...
1
vote
1answer
1k views

How to use flex tilelist data effects combined with a ListCollectionView dataprovider

I am using a TileList control with an effect sequence linked to the itemsChangeEffect property. <mx:TileList itemsChangeEffect="{dataChangeEffectSequence}" ...> </mx:TileList > ...
0
votes
1answer
62 views

How to ScaleContent the image inside a TileList

im in Flash CS5. I have a TileList that loads its images from an XML, not all the images are the same size so they do not llook consistent wiyh the TileList. So i want the TileList to Scale the ...
0
votes
2answers
209 views

retrieve the label value from a TileList (Flash CS5 AS3)

I have a TileList, that i loaded with a PHP script that gives back an dinamically generated xml so i can load the TileList with the images and labels it needs. Now, i want to click on an item of the ...
0
votes
1answer
180 views

Custom TileList Component FLASH CS5. Has anyone built a skin for a TileList

has anyone made a Custom Skin for a TileList component in Flash CS5. I want to change the scrollbar of the TileList, i want the track bar as just a thin white line and the thumb a orange circle, this ...
0
votes
1answer
112 views

add item direction in tileList component

I have Flash AS3 Project with tile list. I have buttons on stage. each of them when clicked adds tile with a picture on it to the tileList using the addTile() function. I'm using 2 columns in the tile ...
0
votes
1answer
65 views

How do I know which characters in a string allocated?

I have an application that replaces the selected text in the row for the selected symbol from tilelist, which are loaded dynamically characters! I do not know how to do that would be able to determine ...
0
votes
1answer
104 views

how to identify a selected object in tilelist?

I have tilelist, which is dynamically loaded XML file with pictures, How do I do that would be when you click on a picture in the Label gave her name? <mx:TileList id="tileList" ...
0
votes
1answer
138 views

Loading different external text files when different value selected

I am having trouble trying to use actionscript to load different files when different values are changed. I am currently using a tilelist and they have different values so the code is something like ...
0
votes
1answer
360 views

TileList custom ImageCell, buttons/sprites on each image

Hi im trying to add some buttons or sprites on each of TileList items, i even made my own ImageCell class and inject some code that adds sprite on each image but it is not clickable - all clicks are ...
0
votes
1answer
115 views

Flex 3.5a TileList - Is it possible to exclude specific items/indices?

I've got a Flex TileList which has an ArrayCollection as its data provider. The ArrayCollection is used elsewhere in the application so modifying the base data is not possible. There are two items at ...
0
votes
1answer
328 views

How to handle Unhandled #2044 errors from Flash tilelist when changing dataprovider?

I have a tilelist component using a custom ImageCell based item renderer. I know that at times some of the images it is trying to retrieve will not be found and I am able to handle this via an IEOrror ...
0
votes
1answer
272 views

TileList creationComplete problem in Adobe Flex 3.0

I have made a tile list is Adobe Flex as follows <mx:TileList height="130" width="636" rowCount="1" columnCount="8" columnWidth="150" direction="horizontal" ...
0
votes
1answer
1k views

Flex TileList start offset and click handler

I have some images I would like to display in TileList in Flex. My TileList dimensions are 2 columns by n rows. What I want to do is to display the first item (row 1, column 1) empty and not ...
0
votes
1answer
922 views

Flex: referencing all data in TileList

I have 2 TileList component in my Flex application. 1 tilelist is filled with data much like following xml sample: <person name="Test"> <likes>Flex</likes> ...
0
votes
1answer
3k views

Flex 3 TileList Drag/Drop/Re-order Exception. How do I rearrange tiles?

I’m in need of some dire help here. I'm writing an application in Flex 3 that utilizes a TileList with a custom itemRenderer to display info from a service. Unfortunately, I'm running into an ...