flex

click on AdvancedDataGrid cell and change its color

simple (?) question: what's the easiest way to programmatically change the style of an ADG cell most recently clicked by the user? Important note: I'm assuming cells not to editable and the selection mode to be singleRow, i.e. the specific cell needs to render differently from the standard highlight that comes with being part of the sele...

setting value in a datagrid

Any idea how to set value at a cell level in a data grid I used the following private function dataPanel(rowindex:Number, Var1:Number, Var1Name:String, Var2:Number, Var2Name:String, Var3:Number, Var3Name:String, Var4:Number, Var4Name:String): void { trace("rowindex ", rowindex) if (rowindex==0) { co...

how to export array (array collection) data into an html table or text file

Hey all, I have an array collection of strings and integers (which I have displayed in a data grid) and I am wondering if it is possible to export the array collection into an html table? or even a text file for the user to download I found some pages that had an export to .xls files but I want to stray away from that for now. Thanks i...

Tag cloud example or source code for Flex

There is such a wonderful source http://evocms-plugins.svn.sourceforge.net/viewvc/evocms-plugins/flash_tag_cloud_plugin/src/ but it does not get integrated into Flex. Are there other examples of an animated tag cloud? ...

Security Error when trying to communicate with Twitter from Flex

When I try to request a token from Twitter: _consumer = new OAuthConsumer( _consumerKey, _consumerSecret ); var oauthRequest:OAuthRequest = new OAuthRequest( "GET", AppConstants.TWITTER_REQUEST_TOKEN_URL, null, _consumer, null ); var request:URLRequest = new URLRequest( oauthRequest.buildR...

Flex 4 listen for JavaScript

Hello! I am currently using ExternalInterface to call JS functions from Flex. Is it possible to do the same the other way around: have Flex execute a function when a certain trigger is executed in JS? I want to have a Flash app with buttons in HTML that when pressed call functions inside the Flex app. Thank you. ...

Flex 4 Enable Drag and Drop in List

Hello! I have a Spark List with a TileLayout. I want to enable moving itemRenderers around to be able to order items. How can I do that please? Thank you. ...

Flex and Flash CS, how the integration is done?

Flex is good at produce code, whereas Flash is good at animation, how the integration is done? If I want to insert the animcation produced by flash, what's the recommend way to do the integration? Do I need to use SWFLoader? Or is there any book/tutorial on this? ...

Can we use Flash Player to play video stream from other media server(rather than FMS)

I am curious, is it possible to play video stream from non-adobe(or homebrew server), in the newest flash player(10). It looks like the VideoPlayer only plays the stream from FMS? Is it the business model of Adobe? ...

flex AIR application controlbar for Windows & MAC

Hi, In my flex AIR application(with systemChrome=false & showFlexChrome=false) I am using ApplicationControlbar as the title bar with title text, close, max, min, button. It work fine on windows platform. But I have problem on MAC platform. My application shows close, max, min buttons on right & title text on left. But my requirement is...

Online App to Rip Discs to ISO/DMG

I've been thinking a lot lately about how cool it would be to have a website that allows a user to insert a disc into their drive and click a button to begin a ripping process. After the rip is complete, it would upload to a server and be hosted there. Ideally, the process would be seamless for both DVDs and CDs and work cross platform. ...

Embedding a Flash UI in a Java application

What's out there that lets you do this? Are there any OSS projects or maybe something a little more popular than this: http://www.jpackages.com/jflashplayer/ ? This does exactly what I'm suggesting (i.e. cuts out the need for Swing UI for the most part) but for a number of reasons I'd be interested in any better alternatives. Are there...

Flex SDK or Adobe Flash?

I looking to get into Flash game development (coming from XNA), but I'm not so sure I'm willing to dish out for the pricey Adobe Flash software. I've noticed there is the free "Flex" SDK. What's the difference? Would I be able to develop a flash game using the free Flex SDK and submit it to a game portal in the same way I would if I de...

Flex Custom Event dispatching

Hi there! I got a question about event dispatching in flex. my goal is to get a custom event loaded up with some data and than bubble up to the eventlistener. my main application has and AMF service request inside which calls an service class. that class is supposed to dispatch an event when the AMF service request returns a result or...

Detect when the security panel has been closed?

Is there a way to detect this in Flash? ...

Netstream video chat client freezes and crashes after time

Hi all! So I built a videochat client that uses the adobe stratus protocol. Its very simple and just connects two users. However, after about a minute of video chatting the clients freeze and the browser crashes. Any idea what might have caused this? Is there some sort of cache that I need to clear every so often or a possible memory l...

Showing list item tooltips in flex

I have a list of objects containing an icon, a label, and a tooltip. I want to show only the icon and the label. The tooltips should be visible on mouse over an item. Is there a way i can achieve this without writing my own mouse-over/out functions? (Please notice that dataTips are a different thing as they are displayed only when the ...

Custom Contextmenu seems to only work when video isn't loaded [Custom Spark Videoplayer]

I'm making a custom spark videoplayer including a custom contextmenu: The problem is :if video fails to load or i just don't input any source, my Custom menu works perfectly. But i rather show some video with my player but with a source/input my contextmenu just doesn't react or work! making my contextmenu: private function initContex...

Flex/BlazeDS Trading application - How to create a professional looking website ?

Hi, I am a Flex/Java developer, in the process of creating a Financial/Trading website for a start-up company. The default look and feel of Flex (out of the box) is pretty plain and bland (in terms of the default styles). Can anybody recommend the easiest way for me (as a developer) to make the website look as polished and professional ...

What event handler can i use to capture new values that have been changed in a flex datagrid.

I have an editable grid and would like to update values based on the edited cell and i am doing this in the itemEditEndHandler such that when they finish editing a cell i update other cells that are dependent on it. the only problem is in the itemEditEndHandler the new value has not registered yet. If i try and get the value of the cell ...