User Matt Dillard - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T07:33:05Zhttp://stackoverflow.com/feeds/user/863http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1876805/recommendation-for-a-2d-screen-ruler2Recommendation for a 2D screen rulerMatt Dillard2009-12-09T20:52:38Z2009-12-10T18:11:18Z
<p>I am developing on a large monitor and would like to see, at a glance, how different parts of my application look at different screen resolutions. </p>
<p>I'm not interested in a utility which resizes my application or windows inside my application; I'm more interested in some sort of 2D screen overlay that can be set to different dimensions, and which I can move around the screen.</p>
<p>I have seen plenty of screen rulers, but I'd rather not have the hassle of measuring horizontally, then flipping the ruler, then measuring vertically. I'd just like a transparent, floating "box" that I can move around the screen so that I can tell, for example, if my dialogs are getting too tall.</p>
http://stackoverflow.com/questions/1835621/flashvars-in-flex-getting-error/1835834#18358342Answer by Matt Dillard for FlashVars in Flex, getting error?Matt Dillard2009-12-02T21:09:11Z2009-12-02T21:09:11Z<p>I'll bet it's because this is a static variable - the assignment is probably happening before the app is initialized.</p>
<p>Try assigning the value to _PID inside of a <code>creationComplete</code> handler instead; then the application is guaranteed to be initialized.</p>
http://stackoverflow.com/questions/15163/prevent-a-treeview-from-firing-events-in-vb60Prevent a TreeView from firing events in VB6?Matt Dillard2008-08-18T20:11:22Z2009-11-28T19:32:36Z
<p>In some VB6 code, I have a handler for a TreeView's Collapse event:</p>
<pre><code>Private Sub MyTree_Collapse(ByVal Node as MSComCtlLib.Node)
</code></pre>
<p>This is called whenever a node in the tree is collapsed, whether by the user or programmatically. As it turns out, through some roundabout execution, it may happen that this handler will wind up telling a node to collapse, leading to infinite recursion.</p>
<p>I can think of multiple ways to skin this cat, but what seems simplest to me is to tell the TreeView not to raise events for some period of time. I can't find a simple call to let me do this, though. Has anyone successfully done this, or do I need to keep track of state in some other manner so I can respond appropriately when recursive events come along?</p>
http://stackoverflow.com/questions/6578/understanding-reference-counting-with-cocoa-objective-c/6614#661441Answer by Matt Dillard for Understanding reference counting with Cocoa / Objective CMatt Dillard2008-08-09T04:40:49Z2009-11-09T21:49:49Z<p>Let's start with <code>retain</code> and <code>release</code>; <code>autorelease</code> is really just a special case once you understand the basic concepts. </p>
<p>In Cocoa, each object keeps track of how many times it is being referenced (specifically, the <code>NSObject</code> base class implements this). By calling <code>retain</code> on an object, you are telling it that you want to up its reference count by one. By calling <code>release</code>, you tell the object you are letting go of it, and its reference count is decremented. If, after calling <code>release</code>, the reference count is now zero, then that object's memory is freed by the system.</p>
<p>The basic way this differs from <code>malloc</code> and <code>free</code> is that any given object doesn't need to worry about other parts of the system crashing because you've freed memory they were using. Assuming everyone is playing along and retaining/releasing according to the rules, when one piece of code retains and then releases the object, any other piece of code also referencing the object will be unaffected.</p>
<p>What can sometimes be confusing is knowing the circumstances under which you should call <code>retain</code> and <code>release</code>. My general rule of thumb is that if I want to hang on to an object for some length of time (if it's a member variable in a class, for instance), then I need to make sure the object's reference count knows about me. As described above, an object's reference count is incremented by calling <code>retain</code>. By convention, it is also incremented (set to 1, really) when the object is created with an "init" method. In either of these cases, it is my responsibility to call <code>release</code> on the object when I'm done with it. If I don't, there will be a memory leak.</p>
<p>Example of object creation:</p>
<pre><code>NSString* s = [[NSString alloc] init]; // Ref count is 1
[s retain]; // Ref count is 2 - silly
// to do this after init
[s release]; // Ref count is back to 1
[s release]; // Ref count is 0, object is freed
</code></pre>
<p>Now for <code>autorelease</code>. Autorelease is used as a convenient (and sometimes necessary) way to tell the system to free this object up after a little while. From a plumbing perspective, when <code>autorelease</code> is called, the current thread's <code>NSAutoreleasePool</code> is alerted of the call. The <code>NSAutoreleasePool</code> now knows that once it gets an opportunity (after the current iteration of the event loop), it can call <code>release</code> on the object. From our perspective as programmers, it takes care of calling <code>release</code> for us, so we don't have to (and in fact, we shouldn't).</p>
<p>What's important to note is that (again, by convention) all object creation <em>class</em> methods return an autoreleased object. For example, in the following example, the variable "s" has a reference count of 1, but after the event loop completes, it will be destroyed.</p>
<pre><code>NSString* s = [NSString stringWithString:@"Hello World"];
</code></pre>
<p>If you want to hang onto that string, you'd need to call <code>retain</code> explicitly, and then explicitly <code>release</code> it when you're done.</p>
<p>Consider the following (very contrived) bit of code, and you'll see a situation where <code>autorelease</code> is required:</p>
<pre><code>- (NSString*)createHelloWorldString
{
NSString* s = [[NSString alloc] initWithString:@"Hello World"];
// Now what? We want to return s, but we've upped its reference count.
// The caller shouldn't be responsible for releasing it, since we're the
// ones that created it. If we call release, however, the reference
// count will hit zero and bad memory will be returned to the caller.
// The answer is to call autorelease before returning the string. By
// explicitly calling autorelease, we pass the responsibility for
// releasing the string on to the thread's NSAutoreleasePool, which will
// happen at some later. The consequence is that the returned string
// will still be valid for the caller of this function.
return [s autorelease];
}
</code></pre>
<p>I realize all of this is a bit confusing - at some point, though, it will click. Here are a few references to get you going:</p>
<ul>
<li><a href="http://developer.apple.com/documentation/Cocoa/Conceptual/MemoryMgmt/MemoryMgmt.html" rel="nofollow" title="Apple's introduction to Cocoa's memory management">Apple's introduction</a> to memory management.</li>
<li><a href="http://rads.stackoverflow.com/amzn/click/0321503619" rel="nofollow">Cocoa Programming for Mac OS X (3rd Edition)</a>, by Aaron Hillegas - a very well written book will lots of great examples. It reads like a tutorial.</li>
<li>If you're truly diving in, you could head to <a href="http://www.bignerdranch.com/" rel="nofollow" title="Big Nerd Ranch">Big Nerd Ranch</a>. This is a training facility run by Aaron Hillegas - the author of the book mentioned above. I attended the Intro to Cocoa course there several years ago, and it was a great way to learn.</li>
</ul>
http://stackoverflow.com/questions/1703943/what-does-the-retain-message-mean/1703955#17039553Answer by Matt Dillard for What does the retain message mean?Matt Dillard2009-11-09T21:27:46Z2009-11-09T21:27:46Z<p>It ups the reference count on the object in question. </p>
<p>See <a href="http://stackoverflow.com/questions/6578/understanding-reference-counting-with-cocoa-objective-c">this post</a> for more details about reference counting in Objective C.</p>
http://stackoverflow.com/questions/1688996/flex-list-displaying-wrong-until-scrolled/1689114#16891140Answer by Matt Dillard for Flex: List displaying wrong until scrolled.Matt Dillard2009-11-06T17:33:39Z2009-11-06T17:33:39Z<p>You might try calling:</p>
<pre><code>list.validateNow();
</code></pre>
<p>This causes an inline, synchronous control refresh. The <code>invalidateDisplayList()</code> call just tells the control that <em>the next time it's drawn</em>, it should re-compute the display list. It doesn't force the refresh immediately.</p>
http://stackoverflow.com/questions/1634692/add-remove-from-xmllist-while-in-a-loop/1634715#16347150Answer by Matt Dillard for Add / Remove from XMLList while in a loop.Matt Dillard2009-10-28T01:35:03Z2009-10-28T01:52:09Z<p>You have declared <code>episodeNewT</code> and <code>episodeWatchedT</code>, but you haven't instantiated them yet. I would also suggest you use <code>XMLListCollection</code> instead of <code>XMLList</code>, since it's easier to modify at runtime.</p>
<p>Try this:</p>
<pre><code>var episodeNewT:XMLListCollection = new XMLListCollection();
var episodeWatchedT:XMLListCollection = new XMLListCollection();
if (!result.data) {
episodeNewT.addItem(currentEpisode);
} else {
episodeWatchedT.addItem(currentEpisode);
}
Application.application.ManagePage.episodeNew = episodeNewT.copy();
Application.application.ManagePage.episodeWatched = episodeWatchedT.copy();
</code></pre>
<p>Now your variables won't be null, and you can append to them. Note that you'll be converting the <code>XMLListCollection</code> back to an <code>XMLList</code> at the end of it all by using <code>copy()</code>.</p>
http://stackoverflow.com/questions/1566145/how-to-find-an-arraycollection-item-with-a-specific-property-value/1566320#15663202Answer by Matt Dillard for How to find an ArrayCollection item with a specific property value?Matt Dillard2009-10-14T13:43:57Z2009-10-14T13:43:57Z<p>If you look at the docs for the <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/Array.html" rel="nofollow">Array</a> class, you'll find several routines that aid in this, but none as concise as the e4x syntax used by the built-in XML data type. The <code>filter()</code> method in particular sounds like it might be the best fit for your example.</p>
<p>Here's a sample for how you might do this, given your setup.</p>
<pre><code>var matches : Array = cmenu.source.filter( findId2 );
var stuff : Object = ( matches.length > 0 ? matches[0] : null );
</code></pre>
<p>...and the callback function <code>findId2</code>:</p>
<pre><code>function findId2( element : *, index : int, array : Array ) : Boolean
{
return element.id == 2;
}
</code></pre>
http://stackoverflow.com/questions/1562010/how-to-find-the-length-of-an-lpcstr/1562037#15620372Answer by Matt Dillard for How to find the length of an LPCSTRMatt Dillard2009-10-13T18:19:32Z2009-10-13T18:19:32Z<p>The <a href="http://msdn.microsoft.com/en-us/library/78zh94ax%28VS.71%29.aspx" rel="nofollow">strlen()</a> function is what you're looking for.</p>
<p>Sample usage:</p>
<pre><code>size_t len = strlen( szNumber );
</code></pre>
http://stackoverflow.com/questions/1267685/does-dispatching-an-event-interrupt-a-function/1267837#12678372Answer by Matt Dillard for Does dispatching an event interrupt a function?Matt Dillard2009-08-12T18:20:46Z2009-08-12T18:20:46Z<p>No, <code>foo()</code> will not be interrupted.</p>
<p>Flex is single-threaded, so <code>foo()</code> will continue running. Once foo() finishes and control is returned to the event loop, then the first event in the event queue will be processed.</p>
http://stackoverflow.com/questions/74879/any-tools-to-generate-an-xsd-schema-from-an-xml-instance-document6Any tools to generate an XSD schema from an XML instance document?Matt Dillard2008-09-16T17:36:26Z2009-08-06T02:09:33Z
<p>I am looking for a tool which will take an XML instance document and output a corresponding XSD schema.</p>
<p>I certainly recognize that the generated XSD schema will be limited when compared to creating a schema by hand (it probably won't handle optional or repeating elements, or data constraints), but it could at least serve as a quick starting point.</p>
http://stackoverflow.com/questions/12551/any-recommendations-for-in-depth-flex-training2Any recommendations for in-depth Flex training?Matt Dillard2008-08-15T17:56:24Z2009-07-30T06:09:32Z
<p>I have several months experience creating Flex applications, but I'm interested in diving in a little deeper. My projects so far have involved web services and graphing work to create <a href="http://en.wikipedia.org/wiki/Rich_internet_application" rel="nofollow">RIAs</a>. In particular, I'm probably most interested in training related to:</p>
<ul>
<li>BlazeDS & LiveCycle Data Services</li>
<li>Custom (visual) components / graphing</li>
</ul>
<p>I'm wondering if anyone has any <strong>personal experience</strong> with any sort of Flex training. I'm aware of several "boilerplate" classes that are offered by Adobe's partners, and I'm wondering how valuable any of those have turned out to be. I'm open to other possibilities, too.</p>
http://stackoverflow.com/questions/1183717/subversion-how-do-i-commit-i-updated-one-of-my-project-directories-to-a-previo/1183730#11837305Answer by Matt Dillard for Subversion - How do I commit? I updated one of my project directories to a previous revisionMatt Dillard2009-07-26T04:25:35Z2009-07-26T04:25:35Z<p>What you want to do is called a "reverse merge". Update your working copy to head, then perform a reverse merge to the revision you desire. There is a section in the SVN book about it <a href="http://svnbook.red-bean.com/en/1.0/ch04s04.html" rel="nofollow">here</a>, under the "Undoing Changes" section.</p>
<p>For example, if you are at revision 412, but you want to back up to the contents of revision 410, use something like the following:</p>
<pre><code>svn merge -r 412:410 http://yourrepository/trunk
</code></pre>
<p>This will get your working copy to reflect the state at 410, and then you can do a commit.</p>
http://stackoverflow.com/questions/30354/when-must-i-set-a-variable-to-nothing-in-vb61When must I set a variable to "Nothing" in VB6?Matt Dillard2008-08-27T14:54:52Z2009-07-22T06:47:54Z
<p>In one of my VB6 forms, I create several other Form objects and store them in member variables.</p>
<pre><code>Private m_frm1 as MyForm
Private m_frm2 as MyForm
// Later...
Set m_frm1 = New MyForm
Set m_frm2 = New MyForm
</code></pre>
<p>I notice that I'm leaking memory whenever this (parent) form is created and destroyed. Is it necessary for me to assign these member variables to <code>Nothing</code> in <code>Form_Unload()</code>?</p>
<p>In general, when is that required?</p>
<p>SOLVED: This particular memory leak was fixed when I did an <code>Unload</code> on the forms in question, not when I set the form to <code>Nothing</code>. I managed to remove a few other memory leaks by explicitly setting some instances of Class Modules to <code>Nothing</code>, as well.</p>
http://stackoverflow.com/questions/987825/how-do-i-improve-windows-subversion-client-update-performance/988477#9884771Answer by Matt Dillard for How do I improve Windows Subversion client update performance?Matt Dillard2009-06-12T19:08:42Z2009-06-12T19:08:42Z<p>Do you need every bit of the repository on your working copy? If you truly only care about particular portions of the tree, look into Subversion's <a href="http://svnbook.red-bean.com/nightly/en/svn.advanced.sparsedirs.html" rel="nofollow"><strong>Sparse Directories</strong></a> (a.k.a. "Sparse Checkouts") feature. It allows you to manipulate your working copy so it only contains those directories of interest.</p>
<p>Just as an example, you might use this to prune documentation, installer-related files, etc. Depending on what you truly need on your local machine, embracing this approach could make a serious dent in your wait times.</p>
http://stackoverflow.com/questions/898789/is-there-any-specific-case-where-pass-by-value-is-preferred-over-pass-by-const-re/898846#8988462Answer by Matt Dillard for is there any specific case where pass-by-value is preferred over pass-by-const-reference in C++?Matt Dillard2009-05-22T16:48:14Z2009-05-22T16:48:14Z<p>If the object being passed is a smart pointer (i.e. it does its own reference counting) then passing by value might be more reasonable.</p>
<p>I realize that's sort of a sideways answer to your question - the object wrapped by the smart pointer is not copied when passed by value, so it's more similar to passing by reference in that case. Nevertheless, you don't need "by reference" semantics in this case.</p>
<p>There is a problem with my line of reasoning so far, though - you'll lose the "const-ness" of the argument by passing by value. Perhaps you should just use the "by reference" semantics after all...</p>
http://stackoverflow.com/questions/853007/how-do-i-find-the-elements-of-an-array-in-c-which-sum-to-a-value-greater-than-o/853021#8530216Answer by Matt Dillard for How do I find the elements of an array in C++ which sum to a value greater than or equal to a specific number?Matt Dillard2009-05-12T14:18:24Z2009-05-12T14:18:24Z<p>I'm assuming you just want the first X elements in the array, up until their sum meets or exceeds a threshold (the question was a little vague there). </p>
<p>If so, I don't know how to do that without your own loop:</p>
<pre><code>int sum = 0;
int i = 0;
for( ; i < len; ++i ) {
sum += array[i];
if( sum >= 6 ) {
break;
}
}
</code></pre>
<p>Now "i" contains the index at which the sum met or exceeded your threshold.</p>
http://stackoverflow.com/questions/781129/svn-changelists-how-to-limit-operations-to-default-changelist/783299#7832990Answer by Matt Dillard for svn changelists: how to limit operations to "default" changelist?Matt Dillard2009-04-23T20:00:31Z2009-04-23T20:00:31Z<p>If you're interested in doing this in a graphical environment, <a href="http://www.syntevo.com/smartsvn/index.html" rel="nofollow">SmartSVN</a> (cross-platform) can do this for you. Their free version is quite full-featured, too.</p>
http://stackoverflow.com/questions/752181/how-can-i-tell-if-e4x-expression-has-a-match-or-not/756096#7560961Answer by Matt Dillard for How can I tell if E4X expression has a match or not?Matt Dillard2009-04-16T13:24:24Z2009-04-16T13:24:24Z<p>In my experience, the simplest way to check for results is to grab the 0th element of the list and see if it's <code>null</code>.</p>
<p>Here is your code sample with a few tweaks. Notice that I've changed the type of <code>defaultItem</code> from <code>XMLList</code> to <code>XML</code>, and I'm assigning it to the 0th element of the list.</p>
<pre><code>var defaultItem:XML =
DataModel.instance.masonicXML.item.(@style_number == styleNum)[0];
if( defaultItem != null )
{
DataModel.instance.selectedItem = defaultItem;
}
</code></pre>
http://stackoverflow.com/questions/706583/flex-linechart-advanced-horiztonal-axis/710691#7106910Answer by Matt Dillard for Flex LineChart advanced horiztonal axis?Matt Dillard2009-04-02T17:13:48Z2009-04-02T17:13:48Z<p>I would suggest using a <a href="http://livedocs.adobe.com/flex/3/langref/mx/charts/DateTimeAxis.html" rel="nofollow"><code>DateTimeAxis</code></a>, and setting the <code>labelUnits</code> property to "days" or "months" as appropriate. The axis will then do all the hard work of grouping your data accordingly.</p>
<p>In your particular case, when the user makes a choice from the combo box, you should have a handler that computes how granular to make the x-axis based on the user's date selections.</p>
http://stackoverflow.com/questions/587848/flex-programmatically-remove-alert/588031#5880311Answer by Matt Dillard for FLEX: Programmatically remove Alert?Matt Dillard2009-02-25T21:43:09Z2009-02-25T21:43:09Z<p>You can do this by keeping the <code>Alert</code> object as member data, and then setting its <code>visible</code> property to false when you're done with it. Next time you need to show an Alert, don't create a new one - grab the one you've already created and set its properties, then set <code>visible</code> to true again.</p>
<pre><code>private var myAlert : Alert;
public void showAlert( message: String, title : String ) : void
{
hideAlert();
myAlert = Alert.show( message, title, Alert.OK | Alert.NONMODAL );
}
public void hideAlert() : void
{
if( myAlert != null && myAlert.visible ) {
myAlert.visible = false;
}
}
</code></pre>
http://stackoverflow.com/questions/587349/desktop-flash-log-viewer-for-windows/587396#5873961Answer by Matt Dillard for Desktop flash log viewer for windows?Matt Dillard2009-02-25T19:14:38Z2009-02-25T19:14:38Z<p>I use the free <a href="http://www.baremetalsoft.com/baretail/" rel="nofollow">BareTail</a> application to monitor log files. You could point it at flashlog.txt and watch it go.</p>
<p>Be sure to check out the "highlight" feature - it automatically highlights lines that match customizable patterns, which makes it quite easy to locate those lines of interest in the log file.</p>
http://stackoverflow.com/questions/566137/how-do-i-add-properties-named-by-runtime-arguments-to-an-actionscript-object/567276#5672762Answer by Matt Dillard for how do I add properties named by runtime arguments to an actionscript object?Matt Dillard2009-02-19T21:33:49Z2009-02-19T21:48:49Z<p>An <code>Object</code> can be treated like a map (or associative array) with strings for keys - I believe that's what you want to do. You can read up on associative arrays in Flex in <a href="http://livedocs.adobe.com/flex/3/html/help.html?content=10_Lists_of_data_4.html" rel="nofollow">Adobe's documentation</a>.</p>
<pre><code>private function makeObject( keys : Array, values : Array ) : Object
{
var obj : Object = new Object();
for( var i : int = 0; i < keys.length; ++i )
{
obj[ String(keys[i]) ] = values[i];
}
return obj;
}
</code></pre>
<p>This will create a new <code>Object</code> with keys equal to the values in the first array, and values equal to the items in the second array.</p>
http://stackoverflow.com/questions/563747/asynchronous-function-call-in-flex/563982#5639823Answer by Matt Dillard for Asynchronous function call in FlexMatt Dillard2009-02-19T04:48:48Z2009-02-19T04:48:48Z<p>The simplest answer is to use the <code>callLater</code> routine - see some documentation <a href="http://livedocs.adobe.com/flex/3/html/help.html?content=layoutperformance_12.html" rel="nofollow">here</a>.</p>
<pre><code>callLater( parseFile, [filename] );
...
public function parseFile( filename : String ) : void
{
// parse the file
}
</code></pre>
<p>Another approach is to use the <a href="http://livedocs.adobe.com/flex/3/langref/flash/utils/package.html#setTimeout()" rel="nofollow"><code>setTimeout</code></a> call, defined in the <code>flash.utils</code> package. This one lets you call a routine after a specified amount of time has passed. Using this routine, you could set up your <code>parseFile</code> function to call itself repeatedly, giving you the regular intervals you were looking for:</p>
<pre><code>parseFile( filename );
...
public function parseFile( filename : String ) : void
{
// parse the file
// call this function again in 5 seconds
setTimeout( parseFile, 5000, filename );
}
</code></pre>
http://stackoverflow.com/questions/471056/removing-sourcesafe-integration-from-visual-studio-6/471116#4711161Answer by Matt Dillard for Removing SourceSafe Integration from Visual Studio 6Matt Dillard2009-01-22T22:32:51Z2009-01-22T22:32:51Z<p>There is a Microsoft Knowledge Base <a href="http://support.microsoft.com/kb/180945" rel="nofollow">article</a> about how to do exactly this.</p>
<p>The gist of it is that you must manually edit the .dsw and .dsp files in a text editor, and remove a few other files lying around. See the article for more details.</p>
http://stackoverflow.com/questions/445313/can-i-bind-a-flex-component-property-to-a-function/445400#4454001Answer by Matt Dillard for Can I bind a Flex component property to a function?Matt Dillard2009-01-15T02:08:01Z2009-01-15T02:08:01Z<p>Here's what I've done a few times in similar circumstances:</p>
<pre><code><mx:Script>
<![CDATA[
[Bindable] var _username : String;
private function isUserAllowed (userName:Boolean):Boolean {
if (userName == 'Tom')
return true;
if (userName == 'Bill')
return false;
}
]]>
</mx:Script>
<mx:Button label="Create PO"
id="createPOButton"
enabled="{isUserAllowed(_username)}"
click="createPOButton_Click()" />
</code></pre>
<p>This way, when the Bindable <code>_username</code> changes, it will fire a change notification. Since the label is listening to <code>_username</code> changes (even if it is simply a parameter to another function), the <code>enabled</code> property will be re-evaluated.</p>
http://stackoverflow.com/questions/435680/which-event-in-the-apps-startup-sequence-is-appropriate-to-trigger-loading-a-con/436187#4361875Answer by Matt Dillard for Which event in the app's startup sequence is appropriate to trigger loading a config file in AIR/Flex?Matt Dillard2009-01-12T17:21:43Z2009-01-12T17:21:43Z<p>If your handler needs to access UI components directly, you should wait for <code>creationComplete</code>; otherwise you'll get NULL references.</p>
<p>If you simply want to set properties on the root <code>Application</code> object, <code>initialize</code> seems the best place to do this. If you wait until <code>creationComplete</code>, and if the properties that you set are bound to your controls, then you might get a run-time resize or flicker as those components are updated.</p>
http://stackoverflow.com/questions/375317/time-of-day-best-code-is-written/375329#3753290Answer by Matt Dillard for Time of day best code is writtenMatt Dillard2008-12-17T17:28:17Z2008-12-17T17:28:17Z<p>Early in the workday, and 3-5 in the afternoon.</p>
http://stackoverflow.com/questions/335073/what-is-the-easiest-best-way-to-get-an-array-of-values-from-an-array-collection/336302#3363022Answer by Matt Dillard for What is the Easiest/Best Way to Get an Array of Values from an Array Collection?Matt Dillard2008-12-03T05:36:05Z2008-12-03T05:36:05Z<p>Once you get the underlying <code>Array</code> object from the <code>ArrayCollection</code> using the <code>source</code> property, you can make use of the <a href="http://livedocs.adobe.com/flex/2/langref/Array.html#map()" rel="nofollow"><code>map</code></a> method on the <code>Array</code>.</p>
<p>Your code will look something like this:</p>
<pre><code>private function getElementIdArray():Array
{
var arr:Array = myArrayCollection.source;
var ids:Array = arr.map(getElementId);
return ids;
}
private function getElementId(element:*, index:int, arr:Array):int
{
return element.id;
}
</code></pre>
http://stackoverflow.com/questions/322003/what-is-the-best-way-to-test-whether-a-file-exists-on-windows/322009#3220091Answer by Matt Dillard for What is the best way to test whether a file exists on Windows?Matt Dillard2008-11-26T20:21:04Z2008-11-26T20:21:04Z<p>I use the <a href="http://msdn.microsoft.com/en-us/library/aa364418(VS.85).aspx" rel="nofollow">FindFirstFile</a> / <a href="http://msdn.microsoft.com/en-us/library/aa364428(VS.85).aspx" rel="nofollow">FindNextFile</a> API functions for this purpose.</p>
http://stackoverflow.com/questions/50384/wscript-shell-and-blocking-execution/50395#50395Comment by Matt Dillard on WScript.Shell and blocking execution?Matt Dillard2009-12-15T19:24:22Z2009-12-15T19:24:22ZAn advantage of using Exec() instead of Run() is that you can access StdOut & StdErr as well. If you don't care about that, though, Run() is simpler.http://stackoverflow.com/questions/1876805/recommendation-for-a-2d-screen-ruler/1882913#1882913Comment by Matt Dillard on Recommendation for a 2D screen rulerMatt Dillard2009-12-11T17:20:54Z2009-12-11T17:20:54ZThat's a clever solution. That would work for me in some cases, but I'm working on an application with MDI child windows, and I need to measure their size, too. They can't break out of the app's frame, so I wouldn't be able to drag them over the desktop. A great idea, however.http://stackoverflow.com/questions/1876805/recommendation-for-a-2d-screen-ruler/1882915#1882915Comment by Matt Dillard on Recommendation for a 2D screen rulerMatt Dillard2009-12-10T22:03:39Z2009-12-10T22:03:39ZThat's nice, thanks. Ideally I wouldn't have to install Opera, but it does seem to work pretty well.http://stackoverflow.com/questions/1634692/add-remove-from-xmllist-while-in-a-loop/1634715#1634715Comment by Matt Dillard on Add / Remove from XMLList while in a loop.Matt Dillard2009-10-28T01:54:29Z2009-10-28T01:54:29ZYou're right. If you look at the Flex docs for XMLList, you'll notice there is no appendChild() method. The XML datatype DOES have an appendChild() method, however. What's happening here is that Flex is trying to help you out - the compiler will let you make calls against an XMLList as though you were talking to just a single XML element, but that only works at runtime if there is indeed just one element in the list.
Instead, just use an XMLListCollection, which provides better support anyway.http://stackoverflow.com/questions/1566145/how-to-find-an-arraycollection-item-with-a-specific-property-value/1566984#1566984Comment by Matt Dillard on How to find an ArrayCollection item with a specific property value?Matt Dillard2009-10-14T21:25:34Z2009-10-14T21:25:34ZWow, neat use of that function factory. I've always felt there must be a way to customize the callback routine; this is really elegant.http://stackoverflow.com/questions/24680/using-subversion-with-vb6/24762#24762Comment by Matt Dillard on Using Subversion with VB6Matt Dillard2009-10-07T13:53:57Z2009-10-07T13:53:57ZUnfortunately, the svn:needs-lock property must be set on each .frx file individually. With a little script work, I'm sure a pre-commit hook could be written that automatically sets that property on all .frx files, but I haven't gone that far.http://stackoverflow.com/questions/1267685/does-dispatching-an-event-interrupt-a-function/1267837#1267837Comment by Matt Dillard on Does dispatching an event interrupt a function?Matt Dillard2009-08-13T19:28:46Z2009-08-13T19:28:46ZFor what it's worth, after some experimentation, a button press event will not interrupt another running function. All of the button clicks are queued up and handled <i>after</i> the running function finishes running.http://stackoverflow.com/questions/1267685/does-dispatching-an-event-interrupt-a-function/1267837#1267837Comment by Matt Dillard on Does dispatching an event interrupt a function?Matt Dillard2009-08-13T18:49:03Z2009-08-13T18:49:03ZYour example is correct - my comment did not fully communicate my assertion. If some <i>external</i> event is fired (as described by the original question), then I do not believe that event will be processed until the current routine completes. If foo() itself fires an event, then flow proceeds exactly as you describe it - the event is handled immediately on the single (main) thread.
I'll admit that this is worth verifying. It would be pretty simple to create a sample app to try it out; if I have time later today, I'll do that.http://stackoverflow.com/questions/1267685/does-dispatching-an-event-interrupt-a-function/1267837#1267837Comment by Matt Dillard on Does dispatching an event interrupt a function?Matt Dillard2009-08-13T15:21:14Z2009-08-13T15:21:14ZBe that as it may, the answer to the user's particular question is still "No, it will not be interrupted". The user's event handler for the brand new event will still not be executed until foo() completes.http://stackoverflow.com/questions/757594/what-is-the-best-choice-for-a-corprate-wiki-blog-software-tool/757606#757606Comment by Matt Dillard on What is the best choice for a corprate wiki/blog software toolMatt Dillard2009-04-16T19:29:58Z2009-04-16T19:29:58ZI would vote against MediaWiki for general corporate use. In our company, the editing syntax and non-intuitive method of creating new pages has proven to be a significant barrier to adoption among the non-developers.http://stackoverflow.com/questions/292826/flex-prevent-scrollbar-from-covering-content-when-automatically-displayed/292846#292846Comment by Matt Dillard on Flex: Prevent scrollbar from covering content when automatically displayed.Matt Dillard2009-03-31T20:16:27Z2009-03-31T20:16:27ZWonderful. I've struggled with this for ages - thanks for the pointer.http://stackoverflow.com/questions/620045/how-to-refactor-code-inside-curly-braces-in-flexComment by Matt Dillard on how to refactor code inside curly braces in flexMatt Dillard2009-03-06T20:19:06Z2009-03-06T20:19:06ZWhat is the data type for "person"?http://stackoverflow.com/questions/566137/how-do-i-add-properties-named-by-runtime-arguments-to-an-actionscript-object/567276#567276Comment by Matt Dillard on how do I add properties named by runtime arguments to an actionscript object?Matt Dillard2009-02-19T21:59:27Z2009-02-19T21:59:27ZIt should be, unless I'm overlooking a mistake in my code (which is certainly possible...). An object's properties can be accessed in multiple ways; both the associative array syntax and the Object.Property syntax resolve to the same thing, if that's what you're asking.http://stackoverflow.com/questions/566137/how-do-i-add-properties-named-by-runtime-arguments-to-an-actionscript-object/566756#566756Comment by Matt Dillard on how do I add properties named by runtime arguments to an actionscript object?Matt Dillard2009-02-19T21:35:12Z2009-02-19T21:35:12ZI believe the poster wants a way to create an object with keys that are unknown at compile time, so the syntax you're describing won't work in this case. The key names are simply strings passed into a function.http://stackoverflow.com/questions/445313/can-i-bind-a-flex-component-property-to-a-function/447125#447125Comment by Matt Dillard on Can I bind a Flex component property to a function?Matt Dillard2009-01-16T02:04:00Z2009-01-16T02:04:00ZIf the parameter isn't mentioned on the "enabled" line, then the binding won't trigger when the value changes - the button would have no way of knowing that it should re-evaluate the "enabled" condition.