User Christian Nunciato - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T05:10:06Z http://stackoverflow.com/feeds/user/32129 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1439719/c-get-thumbnail-from-file-via-windows-api/1751610#1751610 0 Answer by Christian Nunciato for C# get thumbnail from file via windows api Christian Nunciato 2009-11-17T20:39:13Z 2009-11-17T20:39:13Z <p>Ran across this today -- it's a few months old, but it got the job done for me (on Win7, extracting thumbnails on MPEG-4 files):</p> <p><a href="http://blogs.msdn.com/windowssdk/archive/2009/06/12/windows-api-code-pack-for-microsoft-net-framework.aspx" rel="nofollow">http://blogs.msdn.com/windowssdk/archive/2009/06/12/windows-api-code-pack-for-microsoft-net-framework.aspx</a></p> <pre><code>ShellFile shellFile = ShellFile.FromFilePath(pathToYourFile); Bitmap shellThumb = shellFile.Thumbnail.ExtraLargeBitmap; </code></pre> <p>Hope it helps!</p> http://stackoverflow.com/questions/1677835/as3-memory-conservation-loaders-bitmapdatas-bitmaps-sprites/1682952#1682952 1 Answer by Christian Nunciato for AS3 Memory Conservation (Loaders/BitmapDatas/Bitmaps/Sprites) Christian Nunciato 2009-11-05T19:27:55Z 2009-11-05T19:27:55Z <p>It's a good question, but to the best of my knowledge, the answer is no -- neither Bitmap nor BitmapData objects possess references to the loaders that load them, so you can safely use them without concern for their preventing your Loaders from being collected.</p> <p>If you want to make absolutely sure, though, use the <a href="http://www.adobe.com/livedocs/flex/3/langref/flash/display/BitmapData.html#clone%28%29" rel="nofollow">clone() method of the BitmapData class</a>:</p> <blockquote> <p><strong>clone()</strong></p> <p>Returns a new BitmapData object that is a clone of the original instance with an exact copy of the contained bitmap.</p> </blockquote> <p>For example:</p> <pre><code>private function onCreationComplete():void { var urlRequest:URLRequest = new URLRequest("MyPhoto.jpg"); var loader:Loader = new Loader(); loader.contentLoaderInfo.addEventListener(Event.COMPLETE, loader_complete, false, 0, true); loader.load(urlRequest); } private function loader_complete(event:Event):void { var img1:Image = new Image(); img1.source = Bitmap(event.target.content); addChild(img1); var img2:Image = new Image(); img2.source = new Bitmap(event.target.content.bitmapData.clone()); addChild(img2); } </code></pre> <p>Here, img1's source is a Bitmap cast explicitly from the BitmapData object returned by the loader. (If you examine the references in FlexBuilder, you'll see they are identical.) But img2's source is a clone -- new bunch of bytes, new object, new reference.</p> <p>Hope that helps explain things. The more likely culprits responsible for keeping objects from being garbage collected, though, are usually event handlers. That's why I set the <a href="http://www.adobe.com/livedocs/flex/3/langref/flash/events/IEventDispatcher.html#addEventListener%28%29" rel="nofollow">useWeakReference flag</a> (see above) when setting up my listeners, pretty much exclusively, unless I have good reason not to:</p> <blockquote> <p><strong>useWeakReference</strong>:Boolean (default = false) — Determines whether the reference to the listener is strong or weak. A strong reference (the default) prevents your listener from being garbage-collected. A weak reference does not.</p> </blockquote> http://stackoverflow.com/questions/1664168/difference-in-building-swf-through-flexbuilder-and-mxmlcant-build/1665448#1665448 1 Answer by Christian Nunciato for Difference in building swf through FlexBuilder and mxmlc(ANT build) Christian Nunciato 2009-11-03T05:38:35Z 2009-11-03T05:38:35Z <p>There could be differences between your configurations; have a look here -- this Adobe KB article might help you determine whether there are, and if so, what they might be so you can correct them:</p> <p><a href="http://kb2.adobe.com/cps/404/kb404341.html" rel="nofollow">http://kb2.adobe.com/cps/404/kb404341.html</a></p> <p>I hesitate to mention this second part, because I haven't often toggled between the two compilers (I generally stick with one or the other), but I can say that I've noticed this issue before myself, and as I recall there was a brief mention, <a href="http://tv.adobe.com/watch/max-2009-develop/whats-new-in-flex-4/" rel="nofollow">in Ely Greenfield's talk at MAX</a> this past month, about a push with Flex 4 to achieve parity between Flex Builder's compilers and their SDK counterparts -- suggesting that such parity doesn't quite exist today. So while I don't have much in the way of details on that, it does seem there are some differences between the two. </p> <p>Wish I could be more helpful on that -- maybe someone with a little more detail could chime in on it.</p> http://stackoverflow.com/questions/1654403/adobe-flex-word-wrap-in-button-label/1654948#1654948 0 Answer by Christian Nunciato for Adobe Flex: Word Wrap in Button Label Christian Nunciato 2009-10-31T17:04:01Z 2009-10-31T17:04:01Z <p>Essentially you need to set a few protected properties on the Button's TextField control (multiLine and wordWrap), which you can't do without extending the Button class. So if you create a new class that extends Button and sets those properties and does a little work to make things measure out correctly:</p> <pre><code>package { import flash.text.TextFieldAutoSize; import mx.controls.Button; public class WrappingButton extends Button { public function WrappingButton() { super(); } override protected function createChildren():void { super.createChildren(); textField.multiline = true; textField.wordWrap = true; textField.autoSize = TextFieldAutoSize.CENTER; } override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void { super.updateDisplayList(unscaledWidth, unscaledHeight); textField.y = (this.height - textField.height) &gt;&gt; 1; height = textField.height + getStyle("paddingTop") + getStyle("paddingBottom"); } } } </code></pre> <p>... you can drop that control into your MXML like so:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" xmlns:local="*"&gt; &lt;local:WrappingButton label="The quick brown fox jumped over the lazy dog." width="100" paddingTop="10" paddingBottom="10" /&gt; &lt;/mx:Application&gt; </code></pre> <p>Hope it helps! Post back with questions if you have 'em.</p> http://stackoverflow.com/questions/1631374/how-to-create-hbox-with-only-the-top-corners-rounded-in-flex/1632570#1632570 2 Answer by Christian Nunciato for How to create HBox with only the top corners rounded in Flex? Christian Nunciato 2009-10-27T17:54:29Z 2009-10-27T18:00:04Z <p>Alas, the only solution I know is to draw the background yourself, using Programmatic Skinning -- specifically, orderriding RectangularBorder::</p> <pre><code>package { import mx.skins.RectangularBorder; public class HBoxSkin extends RectangularBorder { public function HBoxSkin() { super(); } override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void { super.updateDisplayList(unscaledWidth, unscaledHeight); var cr:Number = getStyle("cornerRadius"); var bc:Number = getStyle("backgroundColor"); graphics.clear(); graphics.beginFill(bc, 1); // Draw the rectangle manually, rounding only the top two corners graphics.drawRoundRectComplex(0, 0, unscaledWidth, unscaledHeight, cr, cr, 0, 0); graphics.endFill(); } } } </code></pre> <p>... and then applying the change using the borderSkin property of your HBox:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"&gt; &lt;!-- Apply the skin using the borderSkin property of your HBox --&gt; &lt;mx:HBox borderSkin="HBoxSkin" backgroundColor="#FFFFFF" cornerRadius="10" height="100" width="100" top="10" left="10" /&gt; &lt;/mx:Application&gt; </code></pre> <p>The <a href="http://livedocs.adobe.com/flex/3/html/help.html?content=skinning%5F6.html" rel="nofollow">Flex Documentation gives an example</a> of how to implement programmatic skinning. It's beyond beginner level, unfortunately (this stuff gets a lot easier in Flex 4), but if you follow the code in my example and in the documentation's, you should be able to get something together. Good luck!</p> http://stackoverflow.com/questions/1627396/flex-image-switching-place-in-tilelist/1627894#1627894 0 Answer by Christian Nunciato for Flex: image switching place in tilelist Christian Nunciato 2009-10-26T23:24:14Z 2009-10-27T17:18:56Z <p>I don't have your app handy, so I can't test end-to-end, but I've looked at your source. You probably need to override the <strong>data</strong> setter in your itemRenderer:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;mx:Image xmlns:mx="http://www.adobe.com/2006/mxml" initialize="init()"&gt; &lt;mx:Script&gt; &lt;![CDATA[ override public function set data(value:Object):void { super.data = value; this.source = data; this.name = data.toString().split("/").pop().split(".").shift(); } private function init() : void { // Removed from your source and transplanted above } ]]&gt; &lt;/mx:Script&gt; &lt;/mx:Image&gt; </code></pre> <p>Flex will attempt to re-use item renderers in lists (which means the lifecycle events you might be expecting -- initialize, creationComplete, etc. -- won't always fire), so if you want to be sure your renderer gets updated when the data item changes (as it will when scroll events happen), the best practice is to override the renderer's data property. That'll most likely fix the problem.</p> http://stackoverflow.com/questions/1627769/how-to-remove-the-icon-indent-in-flex-control-menu/1627865#1627865 2 Answer by Christian Nunciato for How to remove the icon indent in Flex control Menu? Christian Nunciato 2009-10-26T23:12:47Z 2009-10-26T23:12:47Z <p>Someone probably has a more elegant solution, but setting the paddingLeft style of your menu to a negative number seems to work just fine (I'm using a PopUpMenuButton to illustrate, but a PopUpButton with a Menu would work just the same):</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical"&gt; &lt;mx:Style&gt; Menu { paddingLeft: -12; } &lt;/mx:Style&gt; &lt;mx:XMLList id="myData"&gt; &lt;node label="One"/&gt; &lt;node label="Two"/&gt; &lt;node label="Three"/&gt; &lt;/mx:XMLList&gt; &lt;mx:PopUpMenuButton id="myButton" dataProvider="{myData}" label="Click Me" labelField="@label" /&gt; &lt;/mx:Application&gt; </code></pre> <p>Hope that helps!</p> http://stackoverflow.com/questions/1627147/capture-ctrla-ctrlc-keys-events-in-flex/1627382#1627382 1 Answer by Christian Nunciato for Capture CTRL+A, CTRL+C keys/events in flex Christian Nunciato 2009-10-26T21:14:14Z 2009-10-26T21:14:14Z <p>You're probably not targeting Flash 10. In Project > Properties > Flex Compiler, make sure you've set either <strong>Require Flash Version: 10.0.0</strong> (under HTML Wrapper -- yours may read 9.x.x) or otherwise specified the compiler argument <strong>-target-player=10.0.0</strong>. That ought to do the trick.</p> http://stackoverflow.com/questions/1625262/how-to-programmatically-set-focus-to-horizontallist-so-that-it-could-receive-key/1627304#1627304 4 Answer by Christian Nunciato for How to programmatically set focus to HorizontalList so that it could receive key events (Flex)? Christian Nunciato 2009-10-26T20:58:17Z 2009-10-26T21:05:50Z <p>Is your app running inside a browser? You may have to set focus on the SWF object (via JavaScript) in order to begin interacting with it without clicking the object first. </p> <p>For example, assuming you're using Flex Builder, try adding a line like this one to the end of the SCRIPT tag of your index.template.html file:</p> <pre><code>window.onload = function() { document.getElementById("${application}").focus(); }; </code></pre> <p>You may need to do a little tweaking depending on your specific situation, but that's probably the issue. Setting focus on the Flash object explicitly should do the trick. Hope it helps!</p> http://stackoverflow.com/questions/1620625/actionscript-using-multidimentional-arrays/1622557#1622557 0 Answer by Christian Nunciato for actionscript: Using multidimentional arrays Christian Nunciato 2009-10-26T00:05:29Z 2009-10-26T00:05:29Z <p>The others are right -- you need to initialize your arrays as Arrays. </p> <p>I'd also add that since you know the boardSize in advance of populating these arrays, you should use that value as well, to avoid the unnecessary overhead of using Array.push:</p> <pre><code>var points:Array = new Array(boardSize); for (var i:uint = 0; i &lt; points.length; i++) { points[i] = new Array(boardSize); for (var j:uint = 0; j &lt; boardSize; j++) { var s:StoneSprite = new StoneSprite(); // Do your work on s... points[i][j] = s; } } </code></pre> <p>Then, to read the values in the way you describe, just use a getter:</p> <pre><code>private function getStone(x:uint, y:uint):StoneSprite { return points[x - 1][y - 1] as StoneSprite; } </code></pre> http://stackoverflow.com/questions/1614050/program-doesnt-respond-when-i-add-canvas-on-enterframe-function/1615140#1615140 1 Answer by Christian Nunciato for Program doesn't respond when I add canvas on enterFrame function Christian Nunciato 2009-10-23T18:22:57Z 2009-10-23T18:22:57Z <p>Nice little problem. It looks like the component-creation process is being short-circuited somehow, although to be honest, I'm not exactly sure how. </p> <p>Nevertheless, waiting for the CustomCanvas to dispatch a creationComplete event before attempting to act on its display properties (which is good practice, anyway) fixes the problem. See below, modified to add the listener for creationComplete, and waiting until that listener gets called to add the enterFramelistener:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="init()"&gt; &lt;mx:Script&gt; &lt;![CDATA[ import mx.events.FlexEvent; import mx.containers.Canvas; import mx.controls.Button; private var ccanvas:CustomCanvas = new CustomCanvas(); private var canvasButton:Button = new Button(); public function init():void { canvasButton.label="canvas Button"; ccanvas.x = 100; ccanvas.y = 200; ccanvas.addChild(canvasButton); ccanvas.addEventListener(FlexEvent.CREATION_COMPLETE, ccanvas_creationComplete); addChild(ccanvas); } private function ccanvas_creationComplete(event:FlexEvent):void { addEventListener(Event.ENTER_FRAME, onEnterFrame); } public function onEnterFrame(event:Event):void { ccanvas.x += 1; } ]]&gt; &lt;/mx:Script&gt; &lt;/mx:Application&gt; </code></pre> <p>Truth be told, though, I'm not sure what the difference is between an mx:Canvas and your derived CustomCanvas in this case, in terms of the timing; maybe someone could chime in on that one. But hopefully the solution will prove useful for ya, and again, it's good practice to Flex do its component-lifecycle thing before attempting to work with its components. </p> <p>Hope it helps!</p> http://stackoverflow.com/questions/1613388/is-it-possible-to-drag-and-drop-files-from-local-file-system-into-a-flex-applicat/1614783#1614783 3 Answer by Christian Nunciato for Is it possible to drag and drop files from local file system into a Flex application? Christian Nunciato 2009-10-23T17:12:37Z 2009-10-23T17:12:37Z <p>Unfortunately, not with a browser-hosted Web application, no -- the drag-and-drop APIs are only available to Flex applications targeting Adobe AIR.</p> http://stackoverflow.com/questions/1612699/flex-tilelist-start-offset-and-click-handler/1613369#1613369 1 Answer by Christian Nunciato for Flex TileList start offset and click handler Christian Nunciato 2009-10-23T13:19:00Z 2009-10-23T13:19:00Z <p>Good question. I'm sure someone'll offer up a more elegant solution, but a simple approach might simply be to add a null to your dataProvider at position 0, and having your itemRenderer handle the null by displaying some sort of alternate content, or nothing at all.</p> <p>To extract the index of the clicked element, there are several properties on the ListEvent objects you might use -- event.currentTarget.selectedIndex (or event.currentTarget.selectedIndices, if you're using multi-selection), event.columnIndex and .rowIndex, or event.itemRenderer, which you can use in combination with the TileList's itemRendererToIndex property, among others. </p> <p>Here's a quick-and-dirty app code demonstrating both of these approaches:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" xmlns:local="*"&gt; &lt;mx:Script&gt; &lt;![CDATA[ import mx.controls.Alert; import mx.events.ListEvent; import mx.collections.ArrayCollection; private var dpSource:Array = [ null, {src: "http://turbonerd.com/media/images/roaming/t/20091017225355.jpg"}, {src: "http://turbonerd.com/media/images/roaming/t/20091017225355.jpg"}, {src: "http://turbonerd.com/media/images/roaming/t/20091017225355.jpg"}, {src: "http://turbonerd.com/media/images/roaming/t/20091017225355.jpg"}, {src: "http://turbonerd.com/media/images/roaming/t/20091017225355.jpg"}, {src: "http://turbonerd.com/media/images/roaming/t/20091017225355.jpg"}, {src: "http://turbonerd.com/media/images/roaming/t/20091017225355.jpg"}, {src: "http://turbonerd.com/media/images/roaming/t/20091017225355.jpg"}, {src: "http://turbonerd.com/media/images/roaming/t/20091017225355.jpg"}, {src: "http://turbonerd.com/media/images/roaming/t/20091017225355.jpg"}, {src: "http://turbonerd.com/media/images/roaming/t/20091017225355.jpg"}, {src: "http://turbonerd.com/media/images/roaming/t/20091017225355.jpg"}, {src: "http://turbonerd.com/media/images/roaming/t/20091017225355.jpg"}, {src: "http://turbonerd.com/media/images/roaming/t/20091017225355.jpg"}, {src: "http://turbonerd.com/media/images/roaming/t/20091017225355.jpg"} ]; [Bindable] private var dp:ArrayCollection = new ArrayCollection(dpSource); private function myList_itemClick(event:ListEvent):void { Alert.show("You clicked the item at position (" + event.columnIndex + ", " + event.rowIndex + "), which is item " + myList.itemRendererToIndex(event.itemRenderer).toString() + " in the list."); } ]]&gt; &lt;/mx:Script&gt; &lt;mx:TileList id="myList" dataProvider="{dp}" itemClick="myList_itemClick(event)"&gt; &lt;mx:itemRenderer&gt; &lt;mx:Component&gt; &lt;mx:Canvas&gt; &lt;mx:Script&gt; &lt;![CDATA[ override public function set data(value:Object):void { super.data = value; } ]]&gt; &lt;/mx:Script&gt; &lt;mx:Image source="{data.src}" width="100" height="60" visible="{data != null}" /&gt; &lt;mx:Label text="No item!" visible="{data == null}" /&gt; &lt;/mx:Canvas&gt; &lt;/mx:Component&gt; &lt;/mx:itemRenderer&gt; &lt;/mx:TileList&gt; &lt;/mx:Application&gt; </code></pre> <p>Hope it helps! Post back with questions if you have 'em.</p> http://stackoverflow.com/questions/524559/whats-the-simplest-way-to-import-a-system-data-dataset-into-excel 2 What's the simplest way to import a System.Data.DataSet into Excel? Christian Nunciato 2009-02-07T20:47:53Z 2009-10-23T10:30:10Z <p>In .NET 2.0 (in this case VB), is there a standard API that'll serialize a DataSet object into a stream that can be saved as a tab-delimited file and opened directly in Excel? Or does one have to create the delimited file manually by iterating through the members of the table collection? </p> <p>In this case, the DataSet's small, consisting of about 10 DataTables, each with between one and a few dozen rows. I'm just wondering whether there's a built-in mechanism for handling this scenario, since I imagine it's a relatively common one.</p> <p>Ideally, I'd like to be able to return it all in a single click as well -- e.g., the client clicks a Generate Report button, I assemble the report, and return a Response object containing the formatted data, prompting to save or open, etc. (I'd rather not have them download a file and then import it, as that seems a unnecessarily cumbersome usability-wise.)</p> http://stackoverflow.com/questions/1599800/flex-3-asp-net-and-wcf/1607637#1607637 0 Answer by Christian Nunciato for Flex 3 ,ASP.NET and WCF Christian Nunciato 2009-10-22T14:29:22Z 2009-10-22T14:35:38Z <p>Absolutely, I find the integration between WCF Services (using basicHTTPBinding) and Flex to be fantastic. I've been using it for a year or so now, and have been really pleased with the results.</p> <p>The benefits to using WCF, to the extent you can get your head around it (I chose Juval Lowy's look <a href="http://books.google.com/books?id=DW2ldput788C&amp;printsec=frontcover&amp;dq=Programming+WCF+Services&amp;ei=423gSqvRAozskwSAq%5F2sCA#v=onepage&amp;q=&amp;f=false" rel="nofollow">Programming WCF Services</a> to help me with that process, which I'd recommend if you aren't already familiar with it, since it's definitely got its own idiom), are numerous, but for me, it's mainly meant (a) not having to deal with serialization issues and (b) writing very little code. Essentially, I define my types and the functions I want to expose as Web interfaces, and WCF takes care of the rest. Flex's WebService class works splendidly with it. You don't need any third-party software systems to handle connecting the two -- just spend a little time learning WCF, and you can do the work yourself.</p> <p>It reminds me I should post an example on my blog showing just how simple it is to do this. I'll post back with an update if I do. Meantime feel free to post with comments if you have questions. Best of luck!</p> http://stackoverflow.com/questions/1597110/can-flex-wrap-java-applets/1597856#1597856 1 Answer by Christian Nunciato for Can Flex wrap Java applets? Christian Nunciato 2009-10-20T23:23:12Z 2009-10-20T23:23:12Z <p>If you're going to be running in a browser, you can definitely do something much like the example you cite, which essentially runs both the Flash player and the Google Earth plug-in alternatingly on top of one another (in that case, Google Earth situated atop Flash), using JavaScript as the glue responsible for hooking the two together.</p> <p>As for wrapping Java applets, accessing the hardware, etc., though, no -- you're pretty much confined to the player in that sense. If you're hosting the Flash player in an installed application (as we often do here), or in a browser (e.g., as described above), you can reach out of the box using ExternalInterface, or if you're not, you can plug in to another app using AS3's Socket classes, but that's about it; Flash Player has no facilities for wrapping/embedding non-Flash binaries.</p> <p>Hope that helps -- feel free to post back in comments and I'll try to help explain whatever additional questions you might have.</p> http://stackoverflow.com/questions/1561410/flex-binding-to-an-mxml-esque-binding-string-in-action-script/1562094#1562094 0 Answer by Christian Nunciato for Flex: Binding to an MXML-esque "binding string" in action script? Christian Nunciato 2009-10-13T18:30:39Z 2009-10-13T18:30:39Z <p>Using ChangeWatcher (e.g., via BindingUtils.bindProperty or .bindSetter) is the way to go, yes. I admit it's a strange notation, but once you get used to it, it makes sense, works perfectly and is quite flexible, too.</p> <p>Of course, you could always wrap those functions yourself somehow, if the notation bugged you -- both methods are static, so doing so in a way that feels more appropriate to your application should be a fairly straightforward exercise.</p> http://stackoverflow.com/questions/1394711/adobe-flex-any-way-to-automatically-change-font-size-to-fit-in-its-container/1395671#1395671 0 Answer by Christian Nunciato for Adobe Flex - any way to automatically change font size to fit in its container? Christian Nunciato 2009-09-08T18:50:18Z 2009-09-08T18:50:18Z <p>Not automatically (at least not that I know of), without setting up some sort of event handler, and taking action on the occurrence of some event. Here's a simple AIR app that demonstrates one approach -- in this case, a resize event triggering a change in the fontSize of a Label:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="this_creationComplete()"&gt; &lt;mx:Script&gt; &lt;![CDATA[ import mx.binding.utils.BindingUtils; import mx.binding.utils.ChangeWatcher; [Bindable] public var myValue:int = 0; private function this_creationComplete():void { setSize(); addEventListener(Event.RESIZE, handleResize); } private function handleResize(event:Event):void { setSize(); } private function setSize():void { lbl.setStyle("fontSize", this.height / 2); } ]]&gt; &lt;/mx:Script&gt; &lt;mx:Label id="lbl" text="Hello, world!" /&gt; &lt;/mx:WindowedApplication&gt; </code></pre> <p>Here, when the app gets resized, the label's fontStyle property gets changed to one-half the app's height; scale it up and down and you'll see how it works. There are certainly other approaches, as always, but because we're dealing with styles and not bindable properties, a little custom coding is most likely called for. Hope it helps!</p> http://stackoverflow.com/questions/1394176/building-flex-3-project-from-msbuild/1394918#1394918 1 Answer by Christian Nunciato for Building Flex 3 Project from MSBuild Christian Nunciato 2009-09-08T16:25:48Z 2009-09-08T16:25:48Z <p>I find using a simple batch file works just fine.</p> <p>Here, where %FLEXSDK% contains the path to the SDK you're using, %DEBUG% "true" or "false", and %OUTPUT_PATH% the destination path and filename:</p> <pre><code>"%FLEXSDK%\bin\mxmlc" -debug=%DEBUG% -output=%OUTPUT_PATH% src\MyMain.mxml </code></pre> <p>Simple and straightforward! Hope it helps.</p> http://stackoverflow.com/questions/1394283/watching-a-bindable-property/1394878#1394878 2 Answer by Christian Nunciato for Watching a bindable property Christian Nunciato 2009-09-08T16:14:34Z 2009-09-08T16:14:34Z <p>One option is to use <code>BindingUtils.bindSetter</code> (which incidentally returns a ChangeWatcher):</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="this_creationComplete()"&gt; &lt;mx:Script&gt; &lt;![CDATA[ import mx.binding.utils.BindingUtils; import mx.binding.utils.ChangeWatcher; [Bindable] public var myValue:int = 0; private function this_creationComplete():void { var cw:ChangeWatcher = BindingUtils.bindSetter(myValueChanged, this, "myValue"); } private function setValue():void { myValue = getTimer(); } private function myValueChanged(o:Object):void { trace("myValue: " + myValue.toString()); // You can also use o.toString() -- the new value will be passed into the function } ]]&gt; &lt;/mx:Script&gt; &lt;mx:Button label="Click Me" click="setValue()" /&gt; &lt;/mx:Application&gt; </code></pre> <p>Here, <code>myValueChanged</code> gets called whenever the <code>myValue</code> property changes. There are other ways, of course, but I often use this approach with good results. Hope it helps! Post back with questions and I'll keep an eye out.</p> http://stackoverflow.com/questions/1378042/moving-as3-forward/1383711#1383711 0 Answer by Christian Nunciato for Moving AS3 forward? Christian Nunciato 2009-09-05T16:28:21Z 2009-09-06T04:33:18Z <p>I come from the second camp, but I'm not frustrated -- in fact I'm pretty happy with the language as it is today. If anything frustrates me, it's the limitations imposed by the Flash and AIR runtimes, and the size of the Flex and AIR APIs, but so much the ActionScript language per se. </p> <p>Sure, I get miffed from time to time about the "missing" stuff -- user-exposed threading support would be really nice, as would method overloading, abstract classes, real enums, etc. -- but on the whole I find ActionScript easily the most flexible language, as a language, that I've ever worked with. I do love my C# and Java, but both feel much more rigid by comparison.</p> http://stackoverflow.com/questions/534703/is-it-possible-to-downsample-an-audio-stream-at-runtime-with-flash-or-fms 0 Is it possible to downsample an audio stream at runtime with Flash or FMS? Christian Nunciato 2009-02-10T23:13:38Z 2009-08-02T10:26:42Z <p>I'm no expert in audio, so if any of you folks are, I'd appreciate your insights on this.</p> <p>My client has a handful of MP3 podcasts stored at a relatively high bit rate, and I'd like to be able to serve those files to her users at "different" bit rates depending on that user's credentials. (For example, if you're an authenticated user, you might get the full, unaltered stream, but if you're not, you'd get a lower-bit-rate version -- or at least a purposely tweaked lower-quality version than the original.)</p> <p>Seems like there are two options: downsampling at the source and downsampling at the client. In this case, knowing of course that the source stream would arrive at the client at a high bit rate (and that there are considerations to be made about that, which I realize), I'd prefer to alter the stream at the client somehow, rather than on the server, for several reasons.</p> <p>Is doing so possible with the Flash Player and ActionScript alone, at runtime (even with a third-party library), or does a scenario like this one require a server-based solution? If the latter, can Flash Media Server handle this requirement specifically? Again, I'd like to avoid using FMS if I can, since she doesn't really have the budget for it, but if that's the only option <em>and it's really an option</em>, I'm open to considering it.</p> <p>Thanks in advance...</p> <p><hr /></p> <p>Note: Please don't question the sanity of the request -- I realize it might sound a bit strange, but the requirements are what they are. In that light, for purposes of answering the question, you can ignore the source and delivery path of the bits; all I'm really looking for is an explanation of whether (and ideally how) a Flash client can downsample an MP3 audio stream at runtime, irrespective of whether the audio's arriving over a network connection or being read directly from disk. Thanks much!</p> http://stackoverflow.com/questions/1203761/is-it-possible-to-detect-when-a-javascript-opened-windows-location-changes 0 Is it possible to detect when a JavaScript-opened window's location changes? Christian Nunciato 2009-07-30T00:08:30Z 2009-07-30T00:13:19Z <p>If I open a window with JavaScript (e.g., with window.open()), is there a way, using the handle on the window I opened, to be notified when the URL of the window I opened changes? For example, I'd like to be able to do something like this, generally:</p> <pre><code>&lt;script type="text/javascript"&gt; function openNewWindowAndNavigateTo(url) { var w = window.open(url, "myWindow"); w.addEventListener("locationChange", handleLocationChange); } function handleLocationChange(e) { alert(e.sourceWindow.newLocation); } &lt;/script&gt; &lt;a onclick="openNewWindowAndNavigateTo('SomeDocumentIAuthored.html')"&gt;Go&lt;/a&gt; </code></pre> <p>Even if it's browser-specific (this is just for demonstrative purposes), is this even possible? If so, how? Assuming both documents live on the same domain, etc. Can it be done?</p> http://stackoverflow.com/questions/1176453/flex-convert-arraycollection-to-xml/1177483#1177483 1 Answer by Christian Nunciato for Flex: Convert ArrayCollection to XML Christian Nunciato 2009-07-24T12:58:57Z 2009-07-24T12:58:57Z <p>Have a look at this example, which uses SimpleXMLEncoder:</p> <p> </p> <pre><code>&lt;mx:Script&gt; &lt;![CDATA[ import mx.rpc.xml.SimpleXMLEncoder; import mx.utils.ObjectUtil; import mx.utils.XMLUtil; import mx.collections.ArrayCollection; private var items:ArrayCollection; private function onCreationComplete():void { var source:Array = [{id:1, name:"One"}, {id:2, name:"Two"}, {id:3, name:"Three"}]; var collection = new ArrayCollection(source); trace(objectToXML(collection.source).toXMLString()); } private function objectToXML(obj:Object):XML { var qName:QName = new QName("root"); var xmlDocument:XMLDocument = new XMLDocument(); var simpleXMLEncoder:SimpleXMLEncoder = new SimpleXMLEncoder(xmlDocument); var xmlNode:XMLNode = simpleXMLEncoder.encodeValue(obj, qName, xmlDocument); var xml:XML = new XML(xmlDocument.toString()); return xml; } ]]&gt; &lt;/mx:Script&gt; </code></pre> <p></p> <p>...which produces the following XML:</p> <pre><code>&lt;root&gt; &lt;item&gt; &lt;id&gt;1&lt;/id&gt; &lt;name&gt;One&lt;/name&gt; &lt;/item&gt; &lt;item&gt; &lt;id&gt;2&lt;/id&gt; &lt;name&gt;Two&lt;/name&gt; &lt;/item&gt; &lt;item&gt; &lt;id&gt;3&lt;/id&gt; &lt;name&gt;Three&lt;/name&gt; &lt;/item&gt; &lt;/root&gt; </code></pre> <p>I should note that got the objectToXML function <a href="http://blog.flexexamples.com/2008/03/04/converting-objects-to-xml-packets-using-the-simplexmlencoder-class-in-flex/" rel="nofollow">from Peter de Haan's blog</a>, but folks have apparently had a few problems with the SimpleXMLEncoder class. In my own tests, encoding simple objects works well (as indicated above), but complex types tend to produce unpredictable results. (For example, encoding an array of Font objects produced a long list of empty item nodes.) </p> <p>But depending on the types you're attempting to serialize, this approach might work out just fine for you. Hope it helps!</p> http://stackoverflow.com/questions/1174506/open-popupmenubutton-on-mouseover/1174981#1174981 1 Answer by Christian Nunciato for "Open" PopUpMenuButton on MouseOver? Christian Nunciato 2009-07-23T23:08:06Z 2009-07-23T23:08:06Z <p>Have you tried calling the control's open() method directly on mouseOver, like so?</p> <pre><code>&lt;mx:PopUpMenuButton id="myButton" mouseOver="myButton.open()" label="Hover Over Me"&gt; &lt;mx:dataProvider&gt; &lt;mx:Array&gt; &lt;mx:String&gt;Item One&lt;/mx:String&gt; &lt;mx:String&gt;Item Two&lt;/mx:String&gt; &lt;mx:String&gt;Item Three&lt;/mx:String&gt; &lt;/mx:Array&gt; &lt;/mx:dataProvider&gt; &lt;/mx:PopUpMenuButton&gt; </code></pre> <p>If I've misunderstood the question, or if there's additional behavior you're trying to suppress, post back and I'll keep an eye out.</p> http://stackoverflow.com/questions/1168547/binding-to-an-specific-property-of-objects-in-an-array/1169296#1169296 3 Answer by Christian Nunciato for Binding to an specific property of objects in an array Christian Nunciato 2009-07-23T02:36:43Z 2009-07-23T02:36:43Z <p>You're probably looking for the <code>labelField</code> property of the List control. Here's a working example:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" initialize="onInitialize()"&gt; &lt;mx:Script&gt; &lt;![CDATA[ import mx.collections.ArrayCollection; [Bindable] private var fonts:ArrayCollection; private function onInitialize():void { fonts = new ArrayCollection(Font.enumerateFonts(true)); } ]]&gt; &lt;/mx:Script&gt; &lt;mx:List dataProvider="{fonts}" labelField="fontName" /&gt; &lt;/mx:Application&gt; </code></pre> <p>Also note that I'm using an ArrayCollection for the binding (as opposed to an Array), since Arrays don't support binding in the way you're expecting.</p> <p>Hope that helps! Any questions, feel free to post back.</p> http://stackoverflow.com/questions/1154951/sqlite-and-flex/1156262#1156262 0 Answer by Christian Nunciato for SQLite and Flex Christian Nunciato 2009-07-20T22:14:37Z 2009-07-20T22:14:37Z <p>Not the way you're probably thinking, no -- there's no SQLite client built into Flex proper. From a Web-based Flex app, the only way to access a relational database (even a SQLite file) is through a web-service API of some sort.</p> <p>If you haven't already run across it, here's some useful StackOverflow discussion for you addressing the scalability of SQLite specifically:</p> <p><a href="http://stackoverflow.com/questions/54998/how-scalable-is-sqlite">http://stackoverflow.com/questions/54998/how-scalable-is-sqlite</a></p> <p>Based on your description of the project, assuming you're not going to have very high volume (even if it's only selects), SQLite might be an acceptable choice.</p> <p>But my personal suggestion would be that if you have any ability whatever to run even a simple a RDBMS instance somewhere (MySQL, for example), definitely go that route. You might simply be limited operationally -- every company's different in that sense. But if you can help it, don't choose a flat file as the database of your Web app. Even if you don't run into contention issues right off the bat, you'll almost surely run into them eventually. That's a headache best avoided if you can manage it.</p> http://stackoverflow.com/questions/1148086/error-reporting-from-flex-app/1149070#1149070 0 Answer by Christian Nunciato for Error reporting from Flex app Christian Nunciato 2009-07-19T02:02:19Z 2009-07-19T02:02:19Z <p>Unfortunately, there really isn't -- errors don't bubble up in such a way as to be trappable at a global level, so the only real way you have to catch errors is to try and catch them all manually. (The community's been pretty vocal in asking for a global exception-handling feature for a while, but it's not there yet.)</p> http://stackoverflow.com/questions/1145382/is-there-a-way-to-choose-an-mxml-component-at-ui-construction-time-based-on-the-v/1145717#1145717 1 Answer by Christian Nunciato for Is there a way to choose an MXML component at UI construction time based on the value of a field? Christian Nunciato 2009-07-17T21:13:21Z 2009-07-17T21:13:21Z <p>The right (and really only sensible) way to do it would be with a plain ol' <code>for</code> loop and ActionScript:</p> <pre><code>for each (var o:Object in yourDataProvider) { if (o.someProperty) { var rb:RadioButton = new RadioButton(); yourContainer.addChild(rb); } else { var s:Specify = new Specify(); yourContainer.addChild(s); } } </code></pre> <p>You could do as slashnick suggests, and just add both components with each iteration of the Repeater, toggling their display based on a test of some sort (in which case I'd probably suggest including the <code>includeInLayout</code> attribute as well), but you'd be bloating your display list by doing so, and it doesn't scale -- eventually, you just end up doing it in ActionScript anyway.</p> http://stackoverflow.com/questions/1140841/reading-the-link-attritube-on-the-itemclick/1140910#1140910 2 Answer by Christian Nunciato for Reading the link attritube on the itemClick Christian Nunciato 2009-07-17T00:05:17Z 2009-07-17T00:05:17Z <p>It sort of depends on which set of controls you're using, but most likely you're looking for something like "event.item.@link", where the "@" signifies "attribute" -- for example:</p> <pre><code>&lt;mx:Script&gt; &lt;![CDATA[ import mx.events.MenuEvent; private function onMenuItemClick(event:MenuEvent):void { trace(event.item.@link); } ]]&gt; &lt;/mx:Script&gt; &lt;mx:PopUpMenuButton itemClick="onMenuItemClick(event)" labelField="@label"&gt; &lt;mx:dataProvider&gt; &lt;mx:XML xmlns=""&gt; &lt;module label="Executive Library" &gt; &lt;node label="Document one" link="http://www.google.com" /&gt; &lt;node label="Document Two" link="http://www.google.com" /&gt; &lt;node label="Document Three" link="http://www.google.com"/&gt; &lt;/module&gt; &lt;/mx:XML&gt; &lt;/mx:dataProvider&gt; &lt;/mx:PopUpMenuButton&gt; </code></pre> <p>Here, I'm just using your XML (minus the root node) to populate a PopUpMenuButton's dataProvider, and capturing the itemClick event that way. Hopefully that's what you're doing as well -- post back and let me know if you have any issues.</p> http://stackoverflow.com/questions/477759/javascript-css-vs-silverlight-vs-flex/478053#478053 Comment by Christian Nunciato on JavaScript/CSS vs. Silverlight vs. Flex Christian Nunciato 2009-11-25T23:55:04Z 2009-11-25T23:55:04Z Indeed, I agree. http://stackoverflow.com/questions/20910/silverlight-vs-flex/20933#20933 Comment by Christian Nunciato on Silverlight vs Flex Christian Nunciato 2009-11-18T19:22:41Z 2009-11-18T19:22:41Z In point of fact, Flash does not come bundled with IE, FF or Chrome. http://stackoverflow.com/questions/1677835/as3-memory-conservation-loaders-bitmapdatas-bitmaps-sprites/1682952#1682952 Comment by Christian Nunciato on AS3 Memory Conservation (Loaders/BitmapDatas/Bitmaps/Sprites) Christian Nunciato 2009-11-06T22:53:25Z 2009-11-06T22:53:25Z Right -- well, in my img1 example above, the BitmapData object is not duplicated -- it's the same object. In img2, I explicitly clone the bytes to demonstrate how you'd do that, as there are times when you might want to. Either way, though, you're in the clear with respect to concern about references to the Loader. Good luck! http://stackoverflow.com/questions/1631374/how-to-create-hbox-with-only-the-top-corners-rounded-in-flex/1631707#1631707 Comment by Christian Nunciato on How to create HBox with only the top corners rounded in Flex? Christian Nunciato 2009-10-27T18:06:04Z 2009-10-27T18:06:04Z What version of the framework are you using? I'm just curious, because it doesn't compile for me (3.4 using FlexBuilder 3, though neither with Flex 3.2). http://stackoverflow.com/questions/1631374/how-to-create-hbox-with-only-the-top-corners-rounded-in-flex/1631707#1631707 Comment by Christian Nunciato on How to create HBox with only the top corners rounded in Flex? Christian Nunciato 2009-10-27T18:00:43Z 2009-10-27T18:00:43Z This answer actually worked? http://stackoverflow.com/questions/1631374/how-to-create-hbox-with-only-the-top-corners-rounded-in-flex/1631707#1631707 Comment by Christian Nunciato on How to create HBox with only the top corners rounded in Flex? Christian Nunciato 2009-10-27T17:29:50Z 2009-10-27T17:29:50Z roundedBottomCorners doesn't apply to HBox. http://stackoverflow.com/questions/1627396/flex-image-switching-place-in-tilelist/1627894#1627894 Comment by Christian Nunciato on Flex: image switching place in tilelist Christian Nunciato 2009-10-27T17:19:20Z 2009-10-27T17:19:20Z Ah, good point -- I've tweaked my answer to reflect that. Glad it helped! http://stackoverflow.com/questions/1629592/javafx-or-adobe-flex-which-shines-in-which-case Comment by Christian Nunciato on JavaFX or Adobe Flex? Which shines in which case? Christian Nunciato 2009-10-27T12:54:21Z 2009-10-27T12:54:21Z There's no reason this question should be closed. It's a legitimate question. http://stackoverflow.com/questions/1620625/actionscript-using-multidimentional-arrays/1620693#1620693 Comment by Christian Nunciato on actionscript: Using multidimentional arrays Christian Nunciato 2009-10-25T17:16:51Z 2009-10-25T17:16:51Z Sorry for the edit -- I clicked the down arrow by mistake, meaning to click the up. :) (SO forced me to make an edit to correct the mistake.) http://stackoverflow.com/questions/1599800/flex-3-asp-net-and-wcf/1607637#1607637 Comment by Christian Nunciato on Flex 3 ,ASP.NET and WCF Christian Nunciato 2009-10-22T17:18:52Z 2009-10-22T17:18:52Z Sure, you can (and often do) use both -- it depends on what you need. For example, I just completed a project for a client that uses ASP.NET Web forms to provide basic CMS functionality, and then as part of the CMS, there's a Flash component in one of the pages that handles a few tasks related to audio processing, and which hooks up to the database by way of a handful of WCF services. Whether it's a good idea&quot; depends on the nature of your project, but I can say it's a fine way to go, and I've had excellent experience with it personally. http://stackoverflow.com/questions/1561410/flex-binding-to-an-mxml-esque-binding-string-in-action-script/1562094#1562094 Comment by Christian Nunciato on Flex: Binding to an MXML-esque "binding string" in action script? Christian Nunciato 2009-10-13T22:42:37Z 2009-10-13T22:42:37Z Yeah, I just don't think there's another way, actually. http://stackoverflow.com/questions/1394176/building-flex-3-project-from-msbuild/1394918#1394918 Comment by Christian Nunciato on Building Flex 3 Project from MSBuild Christian Nunciato 2009-09-09T16:23:54Z 2009-09-09T16:23:54Z It's definitely worth exploring, yeah. I simplified my command line for purposes of illustration, but we build pretty much exactly this way, with mxmlc, the SDK and a flex-config.xml file, and all goes well -- localization, modules, etc., all get handled with a single batch file. Good luck! http://stackoverflow.com/questions/1381943/how-to-format-string-in-flex Comment by Christian Nunciato on How to format String in Flex Christian Nunciato 2009-09-05T16:34:54Z 2009-09-05T16:34:54Z Not that I've ever seen, no. http://stackoverflow.com/questions/1361200/open-local-files-in-as3 Comment by Christian Nunciato on open local files in AS3 Christian Nunciato 2009-09-01T17:45:27Z 2009-09-01T17:45:27Z You've asked a particularly loaded question that'll require a bit more info before it can be answered with more than generalities; there are many ways to do this, but they all depend on the specifics of your use case. What kind of content are you trying to load (e.g., JPG, PNG)? What do you want to do with it after you load it? Are you prompting the user to browse first? So If you haven't already found a solution, post back with an update and we'll see if we can help you get it figured out, because the answers posted so far are sort of part-right, part-not, depending on these missing details. http://stackoverflow.com/questions/1203761/is-it-possible-to-detect-when-a-javascript-opened-windows-location-changes/1203776#1203776 Comment by Christian Nunciato on Is it possible to detect when a JavaScript-opened window's location changes? Christian Nunciato 2009-07-30T00:15:32Z 2009-07-30T00:15:32Z Yeah, that does make total sense -- though it's the answer I was afraid of. ;) Thanks for the prompt response!