Looks like we'll be having 2 meetings this month: 1. Our regular meeting will be Thursday, September 11th in San Francisco. We're locking down the rooms, but...
Our second annual QCon San Francisco conference <http://mailer.infoq.com/link.php?M=474796&N=181&L=1420&F=H> is coming back to San Francisco. The event is...
I have an application which plays 5 sound files together sort of like the following: var speech:Array = new Array(); var sc:Array = new Array(); var...
Do you mean like offline merging? That is possible in some scenarios but not always. For instance I may want to mute one of the sounds dynamically and may also...
Hi! I want to use a slightly better looking image for the slider instead of the standard (I'm not talking about the thumb, though I'll be changing that too). I...
Well the icon actually becomes the thumb skin so that's why it was behaving the way it did. I still have the unanswered question though, how to replace the...
You need to change the slider skins to point to the new image. Here is an example that I used before. I created a custom slider that extends HSlider: ...
I am probably using the wrong terms to specify my problem. The thumb's okay, I don't care about that. It's the actual line on which the thumb travels, that I...
Is dataToLocal for a linear axis column chart always correct? I am having trouble with positioning reliably using this function. Anybody else run into this?...
Hi! I have a Number that I need to print out along with other strings. I don't get the leading or trailing 0's and that continues to affect the label whose ...
Just wanted to make sure that you guys knew about the Air Cookbook Cookoff: http://www.adobe.com/devnet/logged_in/mkoch_aircookoff.html Only US residents may...
Hi, I want to download a remote audio file (streaming, not blocked) before playing so that I can reuse it the next time if needed and also for quick seeking...
I am dynamically creating Button objects but cannot figure out how to assign a click event handler/listener to the buttons; the button is not created in MXML...
Try this: myButton.addEventListener(MouseEvent.CLICK, loadContent); where the loadContent method looks like: private function loadContent(evt:MouseEvent):void...
Do it like this instead. The second argument of addEventListener() is a function reference. You don't call the function there, so omit the parentheses. ...
NetStream appears to require FMS at the backend. NetConnection seems specific to mp3 only. Is there a way to use NetStream with my regular apache server...
You just need to pass in the function and not call the function. So your add event listener would look like this: myButton.addEventListener(MouseEvent.CLICK,...
When: Wednesday, September 24th 2008 Special Silvafug CS4 Meeting - 6:30 pm to 8:30 pm Where: Adobe HQ San Jose West Tower (The one closest to the 87 Freeway) ...
I have started out my project with Flex, and then decided to switched gear to grails due to time constraints. I integrated DOJO with grails as the front end...
You can definitely use NetStream without Flash Comm. Go ahead and give it a try. You just can't seek to areas of the file that haven't yet been downloaded...
Hello, I'm relatively new to Flex and one of the problems I've run into is that I'm unable to set a combo box' prompt by setting selectedIndex to -1 in the...
We faced the similar issue. Work around that we are using is to add the prompt value as the first item in the ComboBox data provider. Its certainly not the...