User onekidney - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T21:50:05Zhttp://stackoverflow.com/feeds/user/3435http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1903425/c-open-a-browser-and-post-to-a-url-from-a-windows-desktop-app1C#: Open a browser and POST to a url from a windows desktop app....onekidney2009-12-14T20:55:42Z2009-12-14T23:29:00Z
<p>I have a small WPF app (although I guess it doesn't really matter whether it's a wpf form or a webform app?) that I want to have launch a new browser window and POST to a specific url. I've been messing around with:</p>
<pre><code>System.Diagnostics.Process.Start("http://myurl.com");
</code></pre>
<p>to launch the window but I don't think I can use the same process to actually post to a url...I've also experimented with HttpWebRequest but I would like the user to be able to use the app after I have posted to this url, not just show them the results...What can I look at to able to do something like this?</p>
http://stackoverflow.com/questions/1876060/linq-to-xml-how-do-you-determine-if-something-of-type-var-is-null-or-empty0Linq to XML: How do you determine if something of type "var" is null or empty?onekidney2009-12-09T18:59:22Z2009-12-09T19:57:10Z
<p>So, I've got a small chunk of stabby, pointy xml that looks like this:</p>
<pre><code><Groups UseGroup='True'>
<Group>1264,182,1979</Group>
</Groups>
</code></pre>
<p>And I've got a small chunk of linq that gets the value from that looks like this:</p>
<pre><code>var group = from a in xml.Descendants("Groups")
select a.Element("Group").Value;
</code></pre>
<p>It's all fine and dandy but I don't know how to handle a null response? If I use:</p>
<pre><code>if(group != null)
</code></pre>
<p>It will always evaluate <code>true</code> because there is something there. If I use:</p>
<pre><code>if(group.ToString() == "")
</code></pre>
<p>It will always evaluate true because ToString() called on that object returns System.Linq.Enumerable+WhereSelectEnumerableIterator`2[System.Xml.Linq.XElement,System.String] For some reason, I'm having a hard time casting my result from my linq query to a string so I'm using var because that seems to be the only way I can get it to work...</p>
<p>So the question is, am I using the correct linq syntax and if so, how do i tell if it returned anything or not?</p>
http://stackoverflow.com/questions/1849554/linq-to-xml-handling-nodes-that-do-not-exist0LINQ to XML: handling nodes that do not exist?onekidney2009-12-04T20:45:06Z2009-12-04T21:00:57Z
<p>This may be a simple fix (well, it probably is) but for some reason I just can't figure it out.</p>
<p>So, I have some xml that looks something like this:</p>
<pre><code>XElement xml = XElement.Parse (
@"<Alphabet>
<a name="A" />
<b name="B" />
<d name="D" />
<e name="E" />
</Alphabet>");
</code></pre>
<p>So later in my code, I reference a node that may or may not exist in there like so:</p>
<pre><code>var name = (from b in xml.Descendants("c")
select b.Attribute("name")).FirstOrDefault().Value;
</code></pre>
<p>But when it doesn't exist, instead of returning null or "" it throws a NullReferenceException: Object reference not set to an instance of an object.</p>
<p>What's the best way to check and see if a node actually exists in my linq query? Or do I need to check if it exists some other way?</p>
http://stackoverflow.com/questions/1847580/how-do-i-loop-through-a-date-range3How do I loop through a date range?onekidney2009-12-04T15:13:17Z2009-12-04T16:28:59Z
<p>I'm not even sure how to do this without using some horrible for loop/counter type solution. Here's the problem:</p>
<p>I'm given two dates, a start date and an end date and on a specified interval I need to take some action. For example: for every date between 3/10/2009 on every third day until 3/26/2009 I need to create an entry in a List. So my inputs would be:</p>
<pre><code>DateTime StartDate = "3/10/2009";
DateTime EndDate = "3/26/2009";
int DayInterval = 3;
</code></pre>
<p>and my output would be a list that has the following dates:</p>
<p>3/13/2009
3/16/2009
3/19/2009
3/22/2009
3/25/2009</p>
<p>So how the heck would I do something like this? I thought about using a for loop that would iterate between every day in the range with a separate counter like so:</p>
<pre><code>int count = 0;
for(int i = 0; i < n; i++)
{
count++;
if(count >= DayInterval)
{
//take action
count = 0;
}
}
</code></pre>
<p>But it seems like there could be a better way?</p>
http://stackoverflow.com/questions/1834181/asp-net-mvc-controlling-naming-conventions-of-controllers-views/1834200#18342005Answer by onekidney for ASP.NET MVC: Controlling naming conventions of controllers / views?onekidney2009-12-02T16:43:30Z2009-12-02T16:43:30Z<p>You could just create a new route in that same file like so:</p>
<pre><code>routes.MapRoute(
"Reserva", // Route name
"Reserva/{action}/{id}", // URL with parameters
new { controller = "Reservation", action = "Index", id = "" } // Parameter defaults
);
</code></pre>
<p>and put it in your file above the default route.</p>
http://stackoverflow.com/questions/1747195/how-to-load-a-big-picture-or-swf-file-by-calling-loader-load-in-flex-and-make/1773515#17735150Answer by onekidney for how to load a big picture or swf file by calling Loader.load() in Flex, and make the container adjust the size of the loading content?onekidney2009-11-20T21:59:25Z2009-11-20T21:59:25Z<p>Since you're using Flex, is there any reason why you wouldn't just load it directly into an mx:Image or mx:SWFLoader? Since you're loading it and using addChild it's not being wrangled into the Flex framework where you could control it...</p>
<pre><code><mx:Image source="File://C:/1.swf" width="100" height="100" />
</code></pre>
http://stackoverflow.com/questions/1764824/2d-game-engine-for-race-game-built-to-web-page/1773476#17734760Answer by onekidney for 2d game engine for race game built to web-page.onekidney2009-11-20T21:53:18Z2009-11-20T21:53:18Z<p>You could try the <a href="http://pushbuttonengine.com/" rel="nofollow">pushbutton engine</a>. It has a fair amount of nice features and should get you up and running faster than starting from scratch...</p>
<p>I would definitely recommend sticking with Flash and not using Flex for this one...too much overhead for features you probably wouldn't need...</p>
http://stackoverflow.com/questions/1766391/dtd-flash-open-source-engine/1773463#17734630Answer by onekidney for DTD flash open source engine?onekidney2009-11-20T21:50:35Z2009-11-20T21:50:35Z<p>I don't know of a framework for specifically writing a DTD game but you could look into using the <a href="http://pushbuttonengine.com" rel="nofollow">pushbutton engine</a>. It has a fair amount of nice features and should get you up and running faster than starting from scratch...</p>
<p><a href="http://pushbuttonengine.com/download/" rel="nofollow">Download</a></p>
<p><a href="http://pushbuttonengine.com/docs/" rel="nofollow">Docs</a></p>
<p>Hope this helps - you should update this question for the url of your game when you get it built!</p>
http://stackoverflow.com/questions/1766197/cant-make-navigable-rendered-component/1766313#17663130Answer by onekidney for Can't make navigable rendered componentonekidney2009-11-19T20:32:37Z2009-11-19T20:32:37Z<p>I may be wrong but do you have a click event already registered with the datagrid? If so then the event from the child will be canceled out...</p>
http://stackoverflow.com/questions/1753767/how-to-load-xml-item-one-at-a-time-as3/1758918#17589181Answer by onekidney for How to load xml item one at a time as3onekidney2009-11-18T20:40:23Z2009-11-18T20:40:23Z<p>It seems like you'd want to lazy load your xml files - you'd need to construct a loop that runs based on an array of the items you want to load - here is an example of how you could do that:</p>
<pre><code>private var Array:list;
private var int:count = 0;
private function init()void
{
list = {"one.xml","two.xml","three.xml"};
loadXML();
}
private function loadXML():void
{
//create and init your loader
var loader:URLLoader = new URLLoader(new URLRequest(list[count]));
loader.addEventListener(Event.COMPLETE, completeHandler);
loader.addEventListener(IOErrorEvent.IO_ERROR, ioErrorHandler);
loader.load();
}
private function completeHandler(e:Event):void
{
//Logic here to handle the loaded xml
continueLoad();
}
private function ioErrorHandler(e:IOErrorEvent):void
{
//Logic here to handle the error
continueLoad();
}
private function continueLoad():void
{
if(count < list.length){
count++;
loadXML();
}else{
//Some logic here to do something else after all of your files have been loaded
}
}
</code></pre>
<p>I just this threw this together here so you may need to fix a thing or two but you see the gist - it's a loop that executes only after each individual file has been loaded as opposed to just throwing it all in a for loop and having it execute and subsequently grind and then crash.</p>
<p>Hope this helps!</p>
http://stackoverflow.com/questions/1716556/asp-net-mvc-best-practices-for-dbml-files4ASP.Net MVC: Best Practices for dbml files...onekidney2009-11-11T16:52:53Z2009-11-11T17:23:55Z
<p>This may just be a yes or no type of question but here goes anyway...</p>
<p>From all (well most) of the examples that I've seen for using mvc, it appears that method for creating the dbml file is just drop the entire schema of the database into it and let it autogenerate all of the linq to sql goodness. It appears that you just need one of these (as you can't have duplicate tables in separate dbml files in the same project) but for some reason it would seem like there's a better way to do this...especially when dealing with a large project that has a fair number of tables.</p>
<p>So is this the proper way to go about creating a dbml file to use in a mvc project, just drop the entire table structure into and go to town? If not, how do you do it?</p>
http://stackoverflow.com/questions/1701625/asp-net-mvc-how-should-it-work-with-subversion2ASP.NET MVC: How should it work with subversion?onekidney2009-11-09T15:09:28Z2009-11-10T17:51:24Z
<p>So, I have an asp.net mvc app that is being worked on by multiple developers in differing capacities. This is our first time working on a mvc app and my first time working with .NET. Our app does not have a lot of unit tests in it...</p>
<p>The problem we are having is trying to keep each other from overwriting each others changes. For example:</p>
<ol>
<li><p>Two developers are both working on the app and Jon (not his real name) makes a change to a controller, compiles a new dll, and checks in his stuff (both the controller and the dll.) Our svn system automatically updates our DEV server with the changes that Jon just made.</p></li>
<li><p>Clyde (also not a real name) also makes a change right about the same time but did not update the code with Jon's change and commits a new dll thereby "forgetting" about Jon's change.</p></li>
</ol>
<p>This happens <em>a lot</em>. The question I'm asking is more of a workflow question - how do we solve this issue? Is it just a matter of Clyde needing to be more careful? Can anybody recommend a decent process for us to use?</p>
http://stackoverflow.com/questions/1708380/asp-net-strategy-for-handling-really-large-reports1ASP.NET: Strategy for handling really large reports...onekidney2009-11-10T14:30:42Z2009-11-10T15:02:55Z
<p>Maybe not specific to reports but still...</p>
<p>In my asp.net mvc web application there's a section for reports that show 5 columns of data that map almost directly to a table in the db.</p>
<p>The problem is, in some cases, the length of that report may exceed 40,000 records (I know, nobody can really process 40,000 records of data but the report is what it is) and as you can expect, it times out and throws an error.</p>
<p>The question is, what's a good way to process and deliver a report of that size? I thought about creating a small little console app that would build the report outside of the webserver but I'm kind of at a loss as to what direction to look into?</p>
http://stackoverflow.com/questions/1699033/i-need-to-position-my-movie-over-my-flash-website/1702236#17022360Answer by onekidney for I need to position my movie over my Flash website.onekidney2009-11-09T16:42:55Z2009-11-09T16:42:55Z<p>Are you talking about alpha encoding the video? You can use the Flash Media Encoder to turn that white background into a transparent background and then load that video (I'm assuming you have a video of yourself walking onto a white background?) over your swf to get the effect you're looking for.</p>
<p>The encoder should come with your install of Flash 8. </p>
http://stackoverflow.com/questions/33768/any-advice-for-speeding-up-the-compile-time-in-flex-builder-35Any advice for speeding up the compile time in Flex Builder 3?onekidney2008-08-29T01:34:14Z2009-11-03T23:29:09Z
<p>I run Flex Builder 3 on a mac and as my project grows - the compile time gets longer and longer and longer. I am using some SWC's and there is a fair amount of code but it shouldn't take minutes to build and crash daily should it?</p>
http://stackoverflow.com/questions/1570283/possible-use-flex-air-to-build-a-chromeless-cd-autorun-app/1574140#15741401Answer by onekidney for Possible: use Flex/Air to build a chromeless CD autorun apponekidney2009-10-15T18:17:18Z2009-10-15T18:17:18Z<p>I had the same requirements and ended up using <a href="http://www.multidmedia.com/software/zinc/" rel="nofollow">zinc</a>. You can't get an AIR app to launch without installing it (much assuming that the user has the runtime in the first place) but zinc allows you to do so AND deploy to multiple environments like AIR with custom chrome if need be...Good Luck!</p>
http://stackoverflow.com/questions/1230090/create-a-new-image-on-the-file-system-from-system-drawing-image0Create a new image on the file system from System.Drawing.Image?onekidney2009-08-04T21:48:04Z2009-09-18T03:31:04Z
<p>Ok, I'm sorry, this is probably a noob question but I'm kinda stuck.</p>
<p>So what I'm doing (on my asp.net application) is loading an image from the file system:</p>
<pre><code>System.Drawing.Image tempImage;
tempImage = System.Drawing.Image.FromFile(HttpContext.Server.MapPath(originalPath));
</code></pre>
<p>Then I do some resizing:</p>
<pre><code>tempImage = my awesomeResizingFunction(tempImage, newSize);
</code></pre>
<p>and intend to save it to the file system in another location using this:</p>
<pre><code>string newPath = "/myAwesomePath/newImageName.jpg";
tempImage.Save(newPath);
</code></pre>
<p>and what I get is this error:</p>
<pre><code>"A generic error occurred in GDI+."
</code></pre>
<p>I know the image is "ok" because I can write it out to the browser and see the resized image, I only get the error when I try to save it. I'm kinda new and stuck, am I doing this totally wrong? (Well, i guess that's obvious but you know what I mean...)</p>
http://stackoverflow.com/questions/1075526/fade-in-of-added-component-with-actionscript/1075829#10758293Answer by onekidney for fade in of added component with Actionscriptonekidney2009-07-02T18:01:58Z2009-07-02T18:08:18Z<p>The showEffect is only triggered when you change the .visible property of the component - you need to trigger that somewhere to experience the awesomeness of the fade.</p>
<p>I threw this together real quick so you can see what I mean (also notice I used a string to define the fade rather than an object - it always seems easier that way...hope it helps!)</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
layout="absolute"
creationComplete="init()">
<mx:Script>
<![CDATA[
import mx.events.FlexEvent;
import mx.controls.DateField;
private function init():void{
var df:DateField = new DateField();
df.visible = false;
df.setStyle("showEffect","Fade");
this.addChild(df);
df.addEventListener(FlexEvent.CREATION_COMPLETE,triggerFade);
}
private function triggerFade(event:FlexEvent):void{
var df:DateField = event.currentTarget as DateField;
df.visible = true;
}
]]>
</mx:Script>
</mx:Application>
</code></pre>
http://stackoverflow.com/questions/389487/im-new-to-net-what-should-i-concentrate-on-and-what-should-i-ignore14I'm new to .NET - what should I concentrate on and what should I ignore?onekidney2008-12-23T17:17:51Z2009-06-26T04:41:23Z
<p>So, I've had a fair amount of experience programming database driven web apps using php and coldfusion (not together, at different times) and I'm starting to look into the asp.net world (I have a project coming up at work that is all asp.net/c#.)</p>
<p>My question is: there seems to be <em>a lot</em> of stuff to get mired in and if I'm just making web-based applications (mostly CRUD-type stuff - no mind-bending logic) what are the topics I should be focusing on? I just don't want to go down the rabbit trail of something to find out later that it's not really used too much by the development community. In reading some books (ASP.net 3.5 step by step and ASP.net 3.5 unleashed) I'm finding some area's where a topic will be explained but at the end of the chapter it'll say "this stuff is cool but not for use in multi-tiered applications..."</p>
<p>The topics I've looked at so far (that seem to differ greatly from the applications I'm used to building) are:</p>
<ul>
<li>Master pages </li>
<li>DataBinding</li>
<li>Linq to SQL</li>
<li>ASP.NET MVC</li>
<li>Templates and databinding expressions</li>
<li>asp.net controls</li>
</ul>
<p>I know this may be a broad question - but this seems to be a broad topic.</p>
http://stackoverflow.com/questions/266123/flex-is-there-a-way-to-specify-what-direction-a-combobox-will-open0Flex - Is there a way to specify what direction a ComboBox will open?onekidney2008-11-05T18:22:03Z2009-05-26T13:51:50Z
<p>Maybe I should further qualify this - Is there a way to specify which direction a ComboBox will open without copying and pasting the entire ComboBox class and ripping out the code where it determines which direction it will open in...</p>
<p>I'm my specific case - I need it to open upwards - always.</p>
<p>UPDATE: You can't fix this by subclassing it because the function that handles the direction of the opening is:</p>
<pre><code>private function displayDropdown(show:Boolean, trigger:Event = null):void
</code></pre>
<p>And that bad boy uses a fair amount of private variables which my subclass wouldn't have access to...</p>
http://stackoverflow.com/questions/870356/how-do-i-remove-http-from-a-string-in-actionscript0How do I remove "http://" from a string in actionscript?onekidney2009-05-15T19:12:29Z2009-05-26T02:24:03Z
<p>This one may seem basic but I don't know how to do it - anybody else?</p>
<p>I have a string that looks like this:</p>
<pre><code>private var url:String = "http://subdomain";
</code></pre>
<p>What regex do I need so I can do this:</p>
<pre><code>url.replace(regex,"");
</code></pre>
<p>and wind up with this?</p>
<pre><code>trace(url); // subdomain
</code></pre>
<p>Or is there an even better way to do it?</p>
http://stackoverflow.com/questions/794750/in-flash-gotoandstop-and-nested-movieclip-issues1In Flash: gotoAndStop and nested MovieClip issuesonekidney2009-04-27T18:42:01Z2009-04-28T18:25:22Z
<p>This is kind of an odd question, I hope this enough information to go on:</p>
<p>In the flash IDE, I have a MovieClip that has 3 frames. In each frame, I have a series of TextFields. It's a poor mans viewstack basically - so here's the issue - in FP10 I can write the following code with no problem:</p>
<pre><code>public function showMenu():void{
gotoAndStop(2);
textItem.text = "This worked."
}
</code></pre>
<p>where "this" is a MovieClip and textItem is a TextField that is only on the second frame of the movieClip. If I target FP9 and run the same code, I get a 1009 Error about trying to reference a property on an object that is null. </p>
<p>I understand that it is trying to access that property before it was completely instantiated, what I don't understand is why it works in FP10 and not FP9? What could have changed in the flash player to allow this?</p>
<p>UPDATE:</p>
<p>Looks like some weirdness in FP9 - a workaround can be found here:</p>
<p><a href="http://www.scottgmorgan.com/blog/index.php/2008/03/06/accessing-displayobjects-on-the-timeline-after-a-gotoandstop-or-gotoandplay/" rel="nofollow">http://www.scottgmorgan.com/blog/index.php/2008/03/06/accessing-displayobjects-on-the-timeline-after-a-gotoandstop-or-gotoandplay/</a></p>
http://stackoverflow.com/questions/742572/what-ides-tools-do-web-programmers-use/742587#7425870Answer by onekidney for What IDEs/tools do web programmers use?onekidney2009-04-12T23:01:35Z2009-04-12T23:01:35Z<p>For php, I really like <a href="http://www.netbeans.org/features/php/" rel="nofollow">Netbeans</a>.</p>
http://stackoverflow.com/questions/727354/flex-builder-how-do-you-run-multiple-export-release-build1Flex Builder: How do you run multiple "Export Release Build..."onekidney2009-04-07T20:01:57Z2009-04-08T00:01:14Z
<p>So, what I have is a Flex application that is comprised of about 20 modules that are loaded at runtime. Each module is it's own project in Flex Builder and what I'd like to do is have some way to create a release build of all of them without having to go to each project and selecting Project->Export Release Build...</p>
<p>How can I do such a thing?</p>
http://stackoverflow.com/questions/682197/best-way-to-branch-flex-projects-using-subversion1Best way to branch Flex projects using subversiononekidney2009-03-25T15:50:43Z2009-03-31T13:56:42Z
<p>Here's our problem, we are a Flex shop that uses .NET for the server side logic. We use subversion for our source control and subeclipse in Flex Builder but are still quite new to using source control let alone subversion. Branching and merging seems to work very well on the .NET side but we are running into issues on the Flex side because of the final swf being built on our local machine. </p>
<p>The question is, what does a usual workflow look like for working with Flex and SVN? Particularly, how do you branch and where do you build?</p>
http://stackoverflow.com/questions/149825/what-the-heck-does-loader-loadnewsource-is-urlrequest-newsourcenew-urlreques0What the heck does loader.load((newSource is URLRequest)? newSource:new URLRequest(newSource)); do?onekidney2008-09-29T17:42:55Z2009-03-26T23:17:14Z
<p>I ran across the following code in <a href="http://www.quietlyscheming.com/blog/" rel="nofollow">Ely Greenfield's</a> SuperImage from his Book component - I understand loader.load() but what does the rest of do?</p>
<pre><code>loader.load((newSource is URLRequest)? newSource:new URLRequest(newSource));
</code></pre>
<p>It looks like some kind of crazy inline if statement but still, I'm a little preplexed. And if it is an if statement - is this way better than a regular if statement?</p>
http://stackoverflow.com/questions/679942/can-flash-or-silverlight-be-used-for-kiosk-applications-how/679967#6799672Answer by onekidney for Can Flash or Silverlight be used for kiosk applications? How?onekidney2009-03-25T02:04:35Z2009-03-25T02:04:35Z<p>Well, I've never had to run a swf for 9 hours straight but I would say that flash has come a long way in the last few years (especially in performance and memory management). There are some great runtimes out now you can look at to see what options you have for RIA on the desktop:</p>
<p><a href="http://www.adobe.com/products/air/" rel="nofollow">Adobe AIR</a></p>
<p><a href="http://www.multidmedia.com/software/zinc/" rel="nofollow">Zinc</a></p>
<p><a href="http://titaniumapp.com/" rel="nofollow">Titanium</a> (my current favorite)</p>
<p>I couldn't comment too much more without knowing what kind of app you would be building. Same thing with the silverlight/Flash-Flex decision, depends on if you're building an app or some slick animated presentation...</p>
<p>Hope this helps, good luck!</p>
http://stackoverflow.com/questions/634293/flash-app-depends-on-flex-are-there-any-swf-bytecode-size-optimizers/643354#6433540Answer by onekidney for Flash app depends on Flex. Are there any SWF bytecode size optimizers?onekidney2009-03-13T15:49:20Z2009-03-13T15:49:20Z<p>Well - is this a case of choosing the right tool? If you need to create an application - I wouldn't think the overhead to be too detrimental. If you are creating a website, I can see where you might want a smaller filesize - you might need to use pure actionscript without the overhead of the flex framework.</p>
<p>You did say that you didn't want to avoid flex - do you mean flex builder or the flex framework? You can still use flex builder to create actionscript only projects and it's a dream compared to the actions panel in CS4...</p>
http://stackoverflow.com/questions/622178/how-can-i-drag-and-drop-canvases-within-a-vbox-to-re-order/636121#6361210Answer by onekidney for How can I drag and drop canvases within a Vbox to re-order?onekidney2009-03-11T20:04:31Z2009-03-11T20:04:31Z<p>Have you tried using a mx:List - drag and drop support is already built in and very easy to use - i threw together a sample for you using the dimensions you mentioned:</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="init()">
<mx:Script>
<![CDATA[
import mx.controls.Alert;
import mx.events.DragEvent;
import mx.collections.ArrayCollection;
[Bindable]
private var _source:ArrayCollection = new ArrayCollection();
private function init():void{
var n:int = 10;
for(var i:int = 0; i < n; i++){ _source.addItem({value:Math.random()}); }
}
private function handleReorder(event:DragEvent):void{
Alert.show("A change was made!");
}
]]>
</mx:Script>
<mx:List dataProvider="{_source}" width="250" height="500" dragMoveEnabled="true"
dragEnabled="true" dropEnabled="true" dragDrop="handleReorder(event)">
<mx:itemRenderer>
<mx:Component>
<mx:Canvas width="100%" height="35">
<mx:Text text="{data.value}" width="100%" height="100%" selectable="false" />
</mx:Canvas>
</mx:Component>
</mx:itemRenderer>
</mx:List>
</mx:Application>
</code></pre>
<p>And there is of course more info here: <a href="http://livedocs.adobe.com/flex/3/langref/mx/controls/List.html" rel="nofollow">http://livedocs.adobe.com/flex/3/langref/mx/controls/List.html</a></p>
<p>good luck!</p>
http://stackoverflow.com/questions/611243/how-to-make-a-movie-with-transparent-background-in-a-flash-with-transparent-backg/611543#6115431Answer by onekidney for How to make a movie with transparent background in a flash with transparent backgroundonekidney2009-03-04T17:08:40Z2009-03-09T17:28:01Z<p>I'm not sure what you're asking but it looks like the lady on the linked site is just a alpha channel flv (very much like <a href="http://www.adobe.com/devnet/flash/articles/talking%5Fhead%5Fvideo%5F05.html" rel="nofollow">this</a>.) That's accomplished in the encoding process for the video and not in actionscript...are you looking for a programmatic way to do that?</p>
http://stackoverflow.com/questions/1903425/c-open-a-browser-and-post-to-a-url-from-a-windows-desktop-app/1904276#1904276Comment by onekidney on C#: Open a browser and POST to a url from a windows desktop app....onekidney2009-12-15T20:56:17Z2009-12-15T20:56:17ZAwesome, thanks for all the info - I'm trying out #1...http://stackoverflow.com/questions/1903425/c-open-a-browser-and-post-to-a-url-from-a-windows-desktop-appComment by onekidney on C#: Open a browser and POST to a url from a windows desktop app....onekidney2009-12-14T21:03:39Z2009-12-14T21:03:39Zah, sorry, just used to putting there most of the time, removed it.http://stackoverflow.com/questions/1876060/linq-to-xml-how-do-you-determine-if-something-of-type-var-is-null-or-empty/1876412#1876412Comment by onekidney on Linq to XML: How do you determine if something of type "var" is null or empty?onekidney2009-12-09T21:42:45Z2009-12-09T21:42:45Zah, that makes a lot of sense - thanks so much!http://stackoverflow.com/questions/1876060/linq-to-xml-how-do-you-determine-if-something-of-type-var-is-null-or-emptyComment by onekidney on Linq to XML: How do you determine if something of type "var" is null or empty?onekidney2009-12-09T21:42:11Z2009-12-09T21:42:11ZAh, thanks Eric, that helps a lot - I appreciate the explanation!http://stackoverflow.com/questions/1847580/how-do-i-loop-through-a-date-range/1848089#1848089Comment by onekidney on How do I loop through a date range?onekidney2009-12-04T21:55:22Z2009-12-04T21:55:22ZGreat info - thanks!http://stackoverflow.com/questions/1849554/linq-to-xml-handling-nodes-that-do-not-existComment by onekidney on LINQ to XML: handling nodes that do not exist?onekidney2009-12-04T21:02:15Z2009-12-04T21:02:15ZIt looks like it was my use of FirstOrDefault() that was messing this up. Thanks for the answers though - All very helpful!http://stackoverflow.com/questions/1849554/linq-to-xml-handling-nodes-that-do-not-exist/1849575#1849575Comment by onekidney on LINQ to XML: handling nodes that do not exist?onekidney2009-12-04T20:54:02Z2009-12-04T20:54:02ZThanks for the answer - No, I don't need to able to tell the difference so this will work great.
I'm interested in you saying "query expression syntax wasn't actually buying you anything" - I always assumed that choosing one syntax over the other was based on preference - is there actually a performance reason to dot notation over query expression? Or maybe that's a whole different subject. Google here I come!http://stackoverflow.com/questions/1847580/how-do-i-loop-through-a-date-range/1847621#1847621Comment by onekidney on How do I loop through a date range?onekidney2009-12-04T15:39:41Z2009-12-04T15:39:41ZWow - what a great resource MiscUtil is - thanks for your answer!http://stackoverflow.com/questions/1847580/how-do-i-loop-through-a-date-range/1847601#1847601Comment by onekidney on How do I loop through a date range?onekidney2009-12-04T15:26:45Z2009-12-04T15:26:45Zyou sir, are my hero!http://stackoverflow.com/questions/1834181/asp-net-mvc-controlling-naming-conventions-of-controllers-views/1834200#1834200Comment by onekidney on ASP.NET MVC: Controlling naming conventions of controllers / views?onekidney2009-12-02T17:03:14Z2009-12-02T17:03:14ZActions could get tricky if you're trying to do the same thing...you could wind up with a whole mess of routes to handle each action - if too many routes are a concern (which makes sense - you wouldn't want a route to correspond to each and every action - sheesh) then you'd probably need to look into one of the more robust solutions offered by the people with WAY more rep than I have... ;)http://stackoverflow.com/questions/1761768/action-script-3-code-design-question/1762497#1762497Comment by onekidney on Action Script 3 code design questiononekidney2009-11-20T21:55:16Z2009-11-20T21:55:16ZGotta give you an upvote just for being so thorough!!http://stackoverflow.com/questions/1772313/php-flash-adviceComment by onekidney on PHP/Flash adviceonekidney2009-11-20T18:37:54Z2009-11-20T18:37:54ZWould you be using actionscrip 2 or 3? Better yet, what version of Flash would you be targeting? Version 8 or less (actionscript 2) or 9 and higher(actionscript 3)?http://stackoverflow.com/questions/1716556/asp-net-mvc-best-practices-for-dbml-files/1716594#1716594Comment by onekidney on ASP.Net MVC: Best Practices for dbml files...onekidney2009-11-11T18:01:16Z2009-11-11T18:01:16ZThat's really helpful, didn't even know SQLMetal existed! How does a product with such a cool name go so unnoticed? http://stackoverflow.com/questions/1716556/asp-net-mvc-best-practices-for-dbml-files/1716745#1716745Comment by onekidney on ASP.Net MVC: Best Practices for dbml files...onekidney2009-11-11T18:00:10Z2009-11-11T18:00:10Zyeah - that's the way we started out writing everything (using separate dbml for different logical models) but ran into too many problems with overlapping relationships.
Glad to know someone else is dealing with the same thing. :)http://stackoverflow.com/questions/1708380/asp-net-strategy-for-handling-really-large-reports/1708613#1708613Comment by onekidney on ASP.NET: Strategy for handling really large reports...onekidney2009-11-10T17:10:08Z2009-11-10T17:10:08ZWell, in our situation the users want a full report..we do have a paginated option but it's not giving us trouble like these ones that have all of the records in them...