flex3

Determining when Video has ended in Adobe Flex using Events

Hi everyone, I'm new to Flex, Flash, and ActionScript. I'm attempting to create a video player that starts another video when the previous video ends. I thought there might be an event that is thrown when the video finishes playing, but I have not been able to find it. VideoEvent.COMPLETE is when the video is completely downloaded, n...

In Adobe Flex 3 - how do I limit the number of connections for a NetConnection stream

I have and Adobe Flex application that uses the demo from adobe as its core: http://labs.adobe.com/technologies/stratus/samples/#resources I am trying to limit the number of outgoing streams that an instance can have to only 1, but not sure where to specify that. I tried setting outgoingStream.maxPeerConnections but this method is appar...

how to increase the row space(Horizontal space) in dataGrid in flex

I want to increase the row space(Horizontal space) in DataGrid in flex no i want horizontal space between every row. eg. dataGrid Header -- ID Name 1st row -- 01 A Horizontal Space-- 2nd row -- 02 B Horizontal Space-- 3rd row -- 03 C Like this. I want to increase this horizontal space ...

How to Force a Flex Chart to Redraw During Runtime

I have a column chart that uses a label function to format the vertical axis. I added a button and want the axis (or chart) to redraw when the button is clicked. Right now, the chart axis renders OK only when initially added to the view state. I have a function that sets various properties after the chart is initially created. In there,...

Show all datatips for a single lineseries

I'm trying to figure out if there is a way to show all datatips for a single lineseries in a Flex 3 linechart. This chart will have multiple lines and the functionality we're looking for is when a user hovers over a line, show all datatips associated with just that series. Any help would be appreciated. showAllDataTips will not work i...

Flex Text Input with icon inside like mac os x search text input

Hi Everybody, I'm trying to extend the text input that comes in flex to support an icon, just like mac os x search text input has a grey circle aligned to the right, the text input has a addChild method, but it didn't work for me. Is there some way to do this? thanks in advance ...

Flex 3: should I provide prepared data to my component or make it to process data before display?

I'm starting to learn a little Flex just for fun and maybe to prove that I still can learn something new :) I have some idea for a project and one of its parts is a tree component which could display data in different ways depending on configuration. The idea There is list of objects having properties like id, date, time, name, descri...

Attaching .swf assets to Flex3 by calling getDefinitionByName()

Hello! Does anybody please know, how could you attach symbols from an .swf file in the Actionscript part of your Flex3 file? I've prepared a simple test case demonstrating my problem. Everything works (there are icons at the 4 buttons, there is a red circle) - except the getDefinitionByName() part. My target is to attach a symbol fro...

Get content of a single cells labelFunction from a DataGrid in Flex 3

This is similar to this question I asked last week. My dataGrid is populated with three phone numbers per row. Each phone number is pulled from an array and displayed using a labelFunction, while the name and description come from the dataProvider. I used the really helpful solution to my last question with some success, but can't grab ...

how to split the content in alert box

Hi, i want to display a lengthy message in alert box,it should be display in two lines ...is it possible ?thank's in advance.... ...

how to save a flex file?

I need to send a flex assigment...work on a "cart" using FlexBuilder 3.0 and send it to my instructor. Do I save it as "Cart.mxml" or "cart.swf" so that she can open it in FlexBuilder and look at the code? Which is the correct format? ...

How to use remote shared object in flex

How to use shared object in flex 3 ...

How to play MOV,M4V, M4A files using flex or flash?

Is it possible to play these files in Adobe Flex or flash? ...

Is there some property like 'visible columns' in advance data grid flex

Hi friends, I want to some how control the visibility of some columns in my advance data grid. I have a data provider with 115 coumns out of which I want to hide few columns. I know the column index and header field of these columns. Is there some property in Advance data grid where I can specify this directly? Thanks in advance. ...

How to get netstream bytesLoaded and bytesTotal from streaming .mp4?

I have a flex 3 app that uses netstream and a video object to stream .mp4 movies. I want to use the bytesLoaded and bytesTotal properties of the netstream to display the buffering information. I would also like to get any information about the number of frames that are dropped if possible. When I've tested on .flv I'm able to get the ...

Flex Tree Control - How can I reference icons by URL?

I have a collection of objects that are displayed in two places - spatially as icons on a map, and in a tree control. I'd like to know if it's possible to use the image URLs that I use for displaying the icons elsewhere in a tree control. I've tried simply using the name of the field that contains the URL as the iconField on the tree co...

Is it possible to do a #define in Adobe Flex?

I'm looking for a way to do something similar to a c/c++ #define in adobe flex. I'd like to have lots of different paths a project build can take depending on wither or not something was defined. Does such a thing exist in flex? I know there is ways to set global variables but that wont really suit my purpose. being able to have struct...

Pixel Bender Chroma Keying code for flex3 / as3

Hello Stackoverflowers, Does anybody know where i can find a good chroma keying pixel bender code example. Or does anybody know how to write such a code in pixel bender. Or a create pixel bender tutorial to create a chroma keying filter. Does anybody know how to get it in flex 3. every help is welcome. ...

Flex actionscript extending DateChooser, events in calendar

ExtendedDateChooser class is great solution for simple event calendar used in my flex project. You can find it if google for "Adding-Calendar-Event-Entries-to-the-Flex-DateChooser-Component" with a link of updated solution in comments of the post. I posted files below. Problem in that calendar is text events are missing when month is ch...

Increase the height of Flex Container dynamically and introduce scrollbar on the browser

Hi, I am trying to increase the height of container with increase in the number of contents inside the container. Like in my case i m using tileList inside tabNavigator , when I put contents inside the tileList, the height of tileList does not increase beyond vertical height of the viewport. It puts scrollbar on the container. I want...