User mweiss - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T03:46:36Z http://stackoverflow.com/feeds/user/33254 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1020536/is-there-a-way-to-export-a-displayobjects-vector-data 0 Is there a way to export a DisplayObject's vector data? mweiss 2009-06-19T23:57:49Z 2009-06-29T22:16:32Z <p>Flex gives the ability to export a display object as a bitmap as follows:</p> <pre><code>var bitmapDataBuffer:BitmapData = new BitmapData ( displayObject.width, displayObject.height, false); bitmapDataBuffer.draw ( displayObject, displayObject.transform.matrix); </code></pre> <p>Is there a method to export a display object as a vector graphic instead of bitmap data? </p> http://stackoverflow.com/questions/1020536/is-there-a-way-to-export-a-displayobjects-vector-data/1020587#1020587 0 Answer by mweiss for Is there a way to export a DisplayObject's vector data? mweiss 2009-06-20T00:22:49Z 2009-06-20T00:22:49Z <p>I'm going to guess from this bug that it's not currently possible:</p> <p><a href="http://bugs.adobe.com/jira/browse/FP-605" rel="nofollow">http://bugs.adobe.com/jira/browse/FP-605</a></p> http://stackoverflow.com/questions/1013831/efficient-way-to-parse-a-font-tag-attributes-using-actionscript-3/1013922#1013922 0 Answer by mweiss for Efficient way to parse a <font> tag attributes using ActionScript 3 mweiss 2009-06-18T17:02:58Z 2009-06-18T17:02:58Z <p>How about using an xml object? For example:</p> <pre><code>var fontnode:XML = new XML(content); trace(fontnode.@face); trace(fontnode.@size); trace(fontnode.@color); </code></pre> http://stackoverflow.com/questions/962112/flex-builder-3-not-debugging/962396#962396 0 Answer by mweiss for Flex Builder 3 not debugging mweiss 2009-06-07T17:47:01Z 2009-06-07T17:47:01Z <p>Are you running it on windows vista? It may be this issue:</p> <p><a href="http://blogs.msdn.com/expression/archive/2009/03/16/page-cannot-be-found-issue-when-previewing-via-expression-blend.aspx" rel="nofollow">http://blogs.msdn.com/expression/archive/2009/03/16/page-cannot-be-found-issue-when-previewing-via-expression-blend.aspx</a></p> <p>The page is about silverlight, but I ran into the same issue a while back with the flex debugger, and had to add the following to my host file (which windows defender removed):</p> <p>127.0.0.1 localhost</p> <p>This is expanded more upon here:</p> <p><a href="http://circstar.com/FlashLabUnderground/?p=64" rel="nofollow">http://circstar.com/FlashLabUnderground/?p=64</a></p> http://stackoverflow.com/questions/940763/flex-scatter-plot/940772#940772 0 Answer by mweiss for flex scatter plot? mweiss 2009-06-02T17:20:59Z 2009-06-02T17:20:59Z <p>PlotCharts are included in the flex charting components: <a href="http://www.adobe.com/livedocs/flex/3/html/help.html?content=charts_types_10.html" rel="nofollow">http://www.adobe.com/livedocs/flex/3/html/help.html?content=charts_types_10.html</a></p> http://stackoverflow.com/questions/937420/why-is-my-override-protected-function-createchildren-being-ignored/937509#937509 1 Answer by mweiss for Why is my override protected function createChildren being ignored? mweiss 2009-06-02T01:00:35Z 2009-06-02T01:00:35Z <p>I think you're confusing the order of instantiation. Namely, if you want to use setChipCount after the children of the component have been initialized, you should wait for the initialize event to fire, i.e.:</p> <pre><code> public dynamic class MainDeckScoreBoard extends ScoreBoard { ... public function MainDeckScoreBoard( lock:Class ) { super(); // Verify that the lock is the correct class reference. if ( lock != SingletonLock ) { throw new Error( "Invalid Singleton access. Use MainDeckScoreBoard.instance." ); } // wait for the children to be created addEventListener(FlexEvent.INITIALIZE, onInitialize); } // executes when the children of this component have been created private function onInitialize(event:FlexEvent):void { this.setChipCount("0"); } } // end class </code></pre> <p>For a more detailed explanation of the component instantiation lifecycle, this adobe doc may be helpful:</p> <p><a href="http://livedocs.adobe.com/flex/3/html/help.html?content=components_06.html" rel="nofollow">http://livedocs.adobe.com/flex/3/html/help.html?content=components_06.html</a></p> http://stackoverflow.com/questions/935986/building-flex-charts-with-an-ant-task/936374#936374 1 Answer by mweiss for Building Flex charts with an ant task. mweiss 2009-06-01T19:34:44Z 2009-06-01T19:40:12Z <p>See <a href="http://livedocs.adobe.com/flex/3/html/help.html?content=configuring_environment_2.html#212596" rel="nofollow">http://livedocs.adobe.com/flex/3/html/help.html?content=configuring_environment_2.html#212596</a> . It has several options, but none explicetely for an ant task.</p> <p>However, I tried this in ant with the latest version of flex, and it worked (flex 3.X):</p> <pre><code>&lt;mxmlc ...&gt; ... &lt;license product="flexbuilder3" serial-number="000000000000"/&gt; .... &lt;/mxmlc&gt; </code></pre> http://stackoverflow.com/questions/926007/how-can-i-convert-a-file-to-a-bytearray-in-flex/927040#927040 0 Answer by mweiss for How can I convert a file to a ByteArray in Flex? mweiss 2009-05-29T16:54:59Z 2009-05-29T17:26:53Z <p>I think you can do something like this to fetch the byte array: </p> <pre><code>private var fileBytes:ByteArray = null; private static function loadByteArray(url:String):void { var loader:Loader = new Loader(); loader.contentLoaderInfo.addEventListener(Event.COMPLETE, function(e:Event):void { fileBytes = e.currentTarget.bytes; }); loader.load(new URLRequest(encodeURI(url))); } // static initializer { loadByteArray("my url here"); } </code></pre> <p>Edit: I didn't test the above function. If you want to load bytes directly, I'd suggest using Christian Nunciato's answer, since his is better and actually tested.</p> <p>However, it sounds more like you want to retrieve a file directly from your server as opposed to doing a three way trip (file comes from the server, you send the bytes back to the server, and then finally they come back to the client). In that case, you may try setting the content type and the content disposition to attachment on the server (e.g. for pdf, this would mean setting content type to "application/pdf" and adding "Content-Disposition: attachment; filename=myFileName.pdf" to your response headers).</p> http://stackoverflow.com/questions/916142/url-encoding-using-flex-navigatetourl-function/916894#916894 2 Answer by mweiss for url encoding using Flex navigatetoUrl function mweiss 2009-05-27T17:00:15Z 2009-05-27T17:00:15Z <p>Use <a href="http://livedocs.adobe.com/flex/201/langref/package.html#encodeURIComponent%28%29" rel="nofollow">encodeURIComponent()</a> to encode each parameter.</p> <pre><code>UrlParam = UrlParam + '&amp;name=' + encodeURIComponent(name.text) + '&amp;business=' + encodeURIComponent(buisness.text); navigateToURL(new URLRequest(UrlParams),'_self'); </code></pre> http://stackoverflow.com/questions/912684/flex-datagrid-freezes-while-retrieving-data/913394#913394 1 Answer by mweiss for flex datagrid freezes while retrieving data mweiss 2009-05-27T00:14:16Z 2009-05-27T00:14:16Z <p>There is a 2880px limit for a dimension of a flash movie (<a href="http://kb2.adobe.com/cps/144/tn%5F14437.html" rel="nofollow">http://kb2.adobe.com/cps/144/tn_14437.html</a>). Perhaps your data grid is exceeding these limits and it's causing the rendering error. Are there any exceptions being thrown?</p> <p>In any case, I'd go with JustFoo's suggestion and just use the scroll bar. It makes sense since flash will only have to render what's visible, which will be a big performance increase for the client. </p> http://stackoverflow.com/questions/899370/can-you-require-a-function-parameter-to-be-a-static-constant-of-the-functions-cl/899631#899631 1 Answer by mweiss for Can you require a function parameter to be a static constant of the function's Class? mweiss 2009-05-22T19:38:58Z 2009-05-22T19:38:58Z <p>To extend off of Dan R's answer, you could create a strict event (like the way you'd do enums) class like so:</p> <pre><code>import flash.utils.Dictionary; import flash.utils.describeType; import flash.utils.getQualifiedClassName; public class StrictEvent { private static var VALID_EVENTS:Dictionary = new Dictionary(); public static function initEvents(inType:*):void { var events:Object = {}; var description:XML = describeType(inType); var constants:XMLList = description.constant; for each(var constant:XML in constants) { events[inType[constant.@name]] = true; } VALID_EVENTS[getQualifiedClassName(inType)] = events; } public function StrictEvent(type:String) { var className:String = getQualifiedClassName(this); if(VALID_EVENTS[className][type]) { // init } else { throw new Error("Error! " + type); } } } </code></pre> <p>Then, you could define your custom event class by extending the strict event class and calling initEvents in the static initializer. Here is your example with this method:</p> <pre><code>public class CustomEvent extends StrictEvent { public static const DISAPPEAR_COMPLETELY:String = "disappearCompletely"; public static const SIT_DOWN:String = "sitDown"; public static const STAND_UP:String = "standUp"; public static const SAIL_TO_THE_MOON:String = "sailToTheMoon"; public static const GO_TO_SLEEP:String = "goToSleep"; public static const GO_SLOWLY:String = "goSlowly"; public function CustomEvent(type:String) { super(type); } { initEvents(CustomEvent); } } </code></pre> <p>Now, each time it creates an event it only has to look up the event object and see if the type is in that object. It also means you don't have to manually add all the constants in the initializer.</p> http://stackoverflow.com/questions/842095/using-flash-runtime-as-platform-similar-to-jvm-clr/842353#842353 0 Answer by mweiss for Using Flash Runtime as Platform (similar to JVM / CLR) mweiss 2009-05-09T00:14:39Z 2009-05-09T00:14:39Z <p>You can look at OpenLaszlo, a flex alternative, which compiles down to the flash runtime:</p> <p><a href="http://www.openlaszlo.org/" rel="nofollow">www.openlaszlo.org/</a></p> http://stackoverflow.com/questions/841535/flex-chart-labels-dont-update-on-data-refresh-pic/841677#841677 1 Answer by mweiss for Flex Chart Labels don't update on data refresh? (pic) mweiss 2009-05-08T20:37:02Z 2009-05-08T20:37:02Z <p>What does your data look like in both cases? My guess is that you have series data whose value is 0, which may cause the label to render without any visible slice showing up on the pie chart. Try filtering out data with 0 values or using a custom label function to not display the label if the field value is 0.</p> <p>(Note this is just a guess)</p> http://stackoverflow.com/questions/785897/using-recursion-to-sum-numbers/785914#785914 7 Answer by mweiss for Using recursion to sum numbers mweiss 2009-04-24T13:44:04Z 2009-04-24T13:44:04Z <p>Your code executes as follows:</p> <pre><code>Sum --&gt; 5 Sum --&gt; 4 Sum --&gt; 3 Sum --&gt; 2 Sum --&gt; 1 Sum --&gt; 0 1 &lt;--- 2 &lt;--- 4 &lt;--- 7 &lt;--- 11 &lt;--- 16 &lt;--- </code></pre> <p>Check your base case.</p> http://stackoverflow.com/questions/645078/is-it-ever-a-good-idea-to-try-to-make-a-programming-language-do-something-it-wasn/645107#645107 1 Answer by mweiss for Is it ever a good idea to try to make a programming language do something it wasn't meant to? mweiss 2009-03-14T00:56:13Z 2009-03-14T00:56:13Z <p><a href="http://code.google.com/webtoolkit/" rel="nofollow">GWT</a> is something similar. It compiles Java code into javascript, although it's much more functional and has a lot more niceties like IDE support, a large community behind it, etc...</p> <p>Writing your own language which compiles to javascript sounds like a fun project. Personally, though, I would not want to develop in a language developed and maintained by one person and written without any justification other than syntactic sugar.</p> http://stackoverflow.com/questions/609092/is-there-a-way-to-map-a-tag-in-flex-to-components-in-multiple-directories 1 Is there a way to map a tag in flex to components in multiple directories? mweiss 2009-03-04T03:04:44Z 2009-03-04T21:35:02Z <p>Given a flex application or module, you can specify a custom xml namespace as follows:</p> <pre><code>&lt;mx:Module xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:custom="custom.namespace.*"&gt; </code></pre> <p>We can then refer to mxml components in the directory custom/namespace/ using the custom tag. For example, if I have the components Custom1 and Custom2 in the custom/namespace directory, I can refer to them like so:</p> <pre><code>&lt;custom:Custom1/&gt; &lt;custom:Custom2/&gt; </code></pre> <p>Is there a way to map multiple directories onto the same tag? That is, if I have components in a subdirectory of custom/namespace, like custom/namespace/sub with component SubCustom1, is there a way to modify the flex document so the custom tag can refer to SubCustom1?</p> <p>Note that one workaround I found was to add a new tag for each directory (e.g. xmlns:custom.sub="custom.namespace.sub.*", and then:</p> <pre><code>&lt;custom.sub:SubCustom1&gt; </code></pre> <p>This solution seems like a kludge, though.</p> http://stackoverflow.com/questions/609092/is-there-a-way-to-map-a-tag-in-flex-to-components-in-multiple-directories/612544#612544 1 Answer by mweiss for Is there a way to map a tag in flex to components in multiple directories? mweiss 2009-03-04T21:35:02Z 2009-03-04T21:35:02Z <p>To create a custom namespace in flex you need to</p> <p>1) Create a custom manifest file: e.g.</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8" ?&gt; &lt;componentPackage&gt; &lt;component id="Accordion" class="mx.containers.Accordion"/&gt; .... </code></pre> <p>2) Add something similar to the following to your flex-compiler.xml file:</p> <pre><code>&lt;compiler&gt; ... &lt;namespaces&gt; &lt;!-- Specify a URI to associate with a manifest of components for use as MXML --&gt; &lt;!-- elements. --&gt; &lt;namespace&gt; &lt;uri&gt;http://mycustomnamespace.com&lt;/uri&gt; &lt;manifest&gt;custom-manifest.xml&lt;/manifest&gt; &lt;/namespace&gt; &lt;/namespaces&gt; &lt;/compiler&gt; </code></pre> <p>You can read a more detailed explanation <a href="http://blog.flashgen.com/2007/07/04/manifests-namespaces-and-flex-builder-2/" rel="nofollow">here</a>.</p> <p>This question was also answered <a href="http://www.actionscript.org/forums/showthread.php3?t=199432" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/576336#576336 2 Answer by mweiss for Factorial Algorithms in different languages mweiss 2009-02-23T02:05:25Z 2009-02-23T02:05:25Z <h1>Logo</h1> <pre><code>? to factorial :n &gt; ifelse :n = 0 [output 1] [output :n * factorial :n - 1] &gt; end </code></pre> <p>And to invoke:</p> <pre><code>? print factorial 5 120 </code></pre> <p>This is using the UCBLogo dialect of logo.</p> http://stackoverflow.com/questions/549808/compare-objects-in-linkedlist-contains/549820#549820 1 Answer by mweiss for Compare objects in LinkedList.contains() mweiss 2009-02-14T21:17:01Z 2009-02-14T21:24:08Z <p>The documentation for the contains method is as follows:</p> <blockquote> <p>Returns true if this collection contains the specified element. More formally, returns true if and only if this collection contains at least one element e such that (o==null ? e==null : o.equals(e)).</p> </blockquote> <p>Therefore, you need to override the MyObject's equals(Object o) method. </p> <p>So for your example:</p> <pre><code>public class MyObject { String myVal; public boolean equals(Object o ) { return ((MyObject)o).myVal.equals(myVal); } } </code></pre> <p>You do not need to implement anything with the Comparable interface.</p> http://stackoverflow.com/questions/46586/goto-still-considered-harmful/549764#549764 2 Answer by mweiss for GOTO still considered harmful? mweiss 2009-02-14T20:40:59Z 2009-02-14T20:40:59Z <p>While I think it's best to avoid goto on almost any situation, there are exceptions. For example, one place I've seen where goto statements are the elegant solution compared to others much more convoluted ways is implementing tail call elimintation for an interpreter. </p> http://stackoverflow.com/questions/539758/how-is-a-stringbuffer-passing-data-through-voids-with-no-fields-in-the-class/539770#539770 1 Answer by mweiss for How is a StringBuffer passing data through voids with no fields in the Class? mweiss 2009-02-12T02:32:11Z 2009-02-12T02:38:28Z <p>If you meant why does the string buffer get modified, it's because you were passing a reference to the string buffer, which allows you to call the public method append which modifies the string buffer object.</p> http://stackoverflow.com/questions/506105/how-can-i-check-if-a-single-character-appears-in-a-string/506110#506110 1 Answer by mweiss for How can I check if a single character appears in a string? mweiss 2009-02-03T05:41:44Z 2009-02-03T05:41:44Z <p>To check if something does not exist in a string, you at least need to look at each character in a string. So even if you don't explicitly use a loop, it'll have the same efficiency. That being said, you can try using str.contains(""+char).</p> http://stackoverflow.com/questions/500519/do-programmers-inherently-love-mathematics/500536#500536 0 Answer by mweiss for Do programmers inherently love mathematics? mweiss 2009-02-01T10:10:21Z 2009-02-01T10:10:21Z <p>As a general statement, in my experience, people who think logically and analytically tend to be good programmers.</p> <p>That being said, I am a programmer and have an affinity towards math. A lot of programming problems like graphic rendering, database querying (to an extent), and, in general, algorithm design are aided by knowledge of linear algebra, set theory, and other branches of math. However, there's a large set of real world problems which most of the time can best be solved without any formal mathematics, like UI design, forms, a lot of business logic, etc..</p> <p>To be a GOOD programmer, well... you should be interested in new things. While you don't have to 'love' math, algorithms, and puzzles, you shouldn't be afraid of learning them.</p> http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/479007#479007 1 Answer by mweiss for What's your most controversial programming opinion? mweiss 2009-01-26T07:00:53Z 2009-01-26T07:00:53Z <p><strong>Programming is so easy a five year old can do it.</strong></p> <p>Programming in and of itself is not hard, it's common sense. You are just telling a computer what to do. You're not a genius, please get over yourself.</p> http://stackoverflow.com/questions/474610/how-do-i-learn-programming-without-books/474764#474764 1 Answer by mweiss for How do I learn programming without books? mweiss 2009-01-23T21:56:40Z 2009-01-23T21:56:40Z <p>If you want to develop something with value in C or another equivalent language, you can always watch <a href="http://wla.berkeley.edu/" rel="nofollow">video lectures</a>.</p> <p>If you want to program in something without a learning curve, please download <a href="http://scratch.mit.edu/" rel="nofollow">Scratch</a> or <a href="http://www.alice.org/" rel="nofollow">Alice</a>.</p> http://stackoverflow.com/questions/441410/how-much-time-it-saves-code-generators/441620#441620 1 Answer by mweiss for How much time it saves code generators? mweiss 2009-01-14T01:45:42Z 2009-01-14T01:45:42Z <p>I've used code generation (i.e. a program that spits out 2/3 or so of the code automatically and lets the programmer fill in the rest) in two situations, one time in a huge company with a giant product and another time using a tool I wrote myself. In both situations I found the results to be mixed. </p> <p>1) It saved us time developing what we needed to get done at the time. </p> <p>2) However, it locked us into our design, making the code a lot less flexible. It gave us a lot of duplicated logic that we couldn't easily modify.</p> <p>From what I can tell, although I'm sure there's exceptions, you'll lose time in the long run if you use a code generation tool which that outputs code that a human will have to modify later on. Essentially, if it doesn't act like a compiler and doesn't allow you to refactor easily, it's probably going to have the trade off mentioned above.</p> http://stackoverflow.com/questions/415673/what-first-game-did-you-program-and-did-it-make-you-a-better-developer/418738#418738 0 Answer by mweiss for What first game did you program, and did it make you a better developer? mweiss 2009-01-07T00:21:11Z 2009-01-07T00:21:11Z <p>Madlibs for the Apple IIe in BASIC. It asked a bunch of questions to get the values for required variables, then outputted the final story once everything was collected. Probably didn't make me a better developer considering I was six years old, but made me pretty proud of myself at the time. I guess if it taught me anything, it taught me the awesomeness of being able to put in a disk, hit one key (I think 5 or F5), and start programming.</p> http://stackoverflow.com/questions/393948/object-persistence-strategy-for-desktop-application/394152#394152 0 Answer by mweiss for Object persistence strategy for desktop application mweiss 2008-12-26T19:23:33Z 2008-12-26T19:23:33Z <p>You can try using an embedded database like Berkeley DB Java Edition (<a href="http://www.oracle.com/database/berkeley-db/je/index.html" rel="nofollow">http://www.oracle.com/database/berkeley-db/je/index.html</a>). Their direct persistent layer API will most likely suit your needs. The database contents are synced to files on disk. From just looking at the files directly, it's not easy to figure out the object model from the data. I've had good experiences with it, it's lightning fast and works well with desktop applications.</p> http://stackoverflow.com/questions/319898/how-do-i-make-a-php-script-talk/319994#319994 0 Answer by mweiss for How do I make a PHP script talk? mweiss 2008-11-26T07:40:31Z 2008-11-26T07:40:31Z <p>If you want to avoid Flash, a cool but somewhat new plugin that has a service for local text to speech is Yahoo's BrowserPlus. The specific service you want to look at is the TextToSpeech service (<a href="http://browserplus.yahoo.com/developer/services/" rel="nofollow">http://browserplus.yahoo.com/developer/services/</a> , scroll down to TextToSpeech). To implement, it requires a javascript call and for your user to install the BrowserPlus plugin.</p> http://stackoverflow.com/questions/310282/explaining-race-conditions-to-a-non-technical-audience/310350#310350 2 Answer by mweiss for Explaining race conditions to a non-technical audience mweiss 2008-11-21T21:57:59Z 2008-11-21T21:57:59Z <p>If you are writing to a non technical audience, you'll want to simplify your explanations and relate it to something they can understand. One explanation taken from the paper Analogies for teaching parallel computing to inexperienced programmers (<a href="http://portal.acm.org/citation.cfm?doid=1189136.1189172" rel="nofollow">http://portal.acm.org/citation.cfm?doid=1189136.1189172</a>) explains it in terms of a pen game:</p> <blockquote> <p>We’re going to play a game called the Pen Game. The rules are simple: I’m going to hold a pen in my hand, and then I’ll say “One, two, three, go.” When I say “go,” take the pen from my hand. Whoever gets the pen wins. Ready? One, two, three, go.</p> </blockquote> <p>You then ask if the outcome of this game can be predicted in advance. If it can't be predicted, can we guarantee a correct outcome? This should lead to the realization that it's possible to get incorrect results for simultaneous writes to the same piece of memory. </p> http://stackoverflow.com/questions/1020536/is-there-a-way-to-export-a-displayobjects-vector-data/1034936#1034936 Comment by mweiss on Is there a way to export a DisplayObject's vector data? mweiss 2009-06-24T17:07:06Z 2009-06-24T17:07:06Z That's a cool method! It still doesn't help me do what I need to do, since it transfers between graphics opjects and doesn't allow you to export that data into a format non graphics objects can understand (like svg or some other standard vector format). http://stackoverflow.com/questions/899370/can-you-require-a-function-parameter-to-be-a-static-constant-of-the-functions-cl/900276#900276 Comment by mweiss on Can you require a function parameter to be a static constant of the function's Class? mweiss 2009-05-22T22:59:15Z 2009-05-22T22:59:15Z To play devil's advocate, what if CustomEvent.TYPE_WHICH_DOES_NOT_EXIST is instead replaced by a variable that's determined in a less simple way? http://stackoverflow.com/questions/899370/can-you-require-a-function-parameter-to-be-a-static-constant-of-the-functions-cl/899920#899920 Comment by mweiss on Can you require a function parameter to be a static constant of the function's Class? mweiss 2009-05-22T21:44:56Z 2009-05-22T21:44:56Z I think he's asking the question of whether you have to check EACH one O(N), as opposed to checking a hash O(1). http://stackoverflow.com/questions/607902/printing-a-flex-datagrid-of-variable-height/608314#608314 Comment by mweiss on Printing a Flex DataGrid of variable height. mweiss 2009-03-04T09:15:02Z 2009-03-04T09:15:02Z Printing in flex (and html in the browser) is a whole can of worms that should be avoided at all cost. If you're going to take a route other than flex, you'll have more consistent results with a pdf. Try taking a look at a library like iText if you're going to make a webservice. http://stackoverflow.com/questions/609092/is-there-a-way-to-map-a-tag-in-flex-to-components-in-multiple-directories/609325#609325 Comment by mweiss on Is there a way to map a tag in flex to components in multiple directories? mweiss 2009-03-04T09:03:39Z 2009-03-04T09:03:39Z Thank you for your response, but I'm asking if there's a way to map components from both directories, or two different directories (not necessarily nested), not if there's a way to change from one to the other. http://stackoverflow.com/questions/500312/why-did-these-two-program-behave-differently-in-ansi-c Comment by mweiss on Why did these two program behave differently in ANSI C? mweiss 2009-02-01T09:56:53Z 2009-02-01T09:56:53Z In your second code example, do you mean &quot;array&quot; instead of &quot;arrary&quot;? http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/407014#407014 Comment by mweiss on What's your most controversial programming opinion? mweiss 2009-01-02T22:09:33Z 2009-01-02T22:09:33Z I'd go so far as to say all programmers are bad developers on some days, so they're there to minimize the damage you can do to yourself. I agree with you about Unit Tests, in a lot of situations the cost of maintaining Unit Tests gets really high compared to the benefits. http://stackoverflow.com/questions/403865/algorithm-to-sum-up-a-list-of-numbers-for-all-combinations/403908#403908 Comment by mweiss on algorithm to sum up a list of numbers for all combinations mweiss 2008-12-31T22:27:51Z 2008-12-31T22:27:51Z I think the he wants to output every sum. If this is the case, the problem is definitively non polynomial since the output is exponential in relation to the input, and so it doesn't fall into P=NP. http://stackoverflow.com/questions/310282/explaining-race-conditions-to-a-non-technical-audience/310350#310350 Comment by mweiss on Explaining race conditions to a non-technical audience mweiss 2008-11-21T22:26:10Z 2008-11-21T22:26:10Z The idea is to show that things don't happen in a way you can expect, and even a business person should be able to understand why that would be bad for an application