User davr - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T02:21:42Zhttp://stackoverflow.com/feeds/user/14569http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1146314/custom-preloader-in-flex-40Custom Preloader in Flex 4?davr2009-07-18T00:39:57Z2009-11-24T19:40:56Z
<p>Has anyone successfully implemented a custom preloader in Flex 4? In my experience, when I specify a custom preloader using the preloader="com.foo.MyPreloader" in the Application tag, the preloader does not display until the SWF is completely downloaded, defeating the purpose of the preloader! Perhaps this is a bug in the still-beta Flex 4 framework?</p>
http://stackoverflow.com/questions/1499748/disable-flex-css-type-selector-warning3Disable Flex CSS type selector warning?davr2009-09-30T18:06:07Z2009-11-13T13:02:21Z
<p>I'm building a somewhat large Flex project that includes several modules (a single Flex project that produces multiple SWFs)</p>
<p>Right now, I have a single css file, being loaded in the main SWF tag:</p>
<pre><code><s:Application ... >
<fx:Style source="css/main.css" />
...
</s:Application>
</code></pre>
<p>In the CSS file:</p>
<pre><code>/* CSS file */
@namespace s "library://ns.adobe.com/flex/spark";
s|Panel {
skinClass: ClassReference("com.skins.DefaultPanelSkin");
}
s|Button {
skinClass: ClassReference("com.skins.DefaultButtonSkin");
}
</code></pre>
<p>The CSS file is not referenced anywhere else.</p>
<p>I have currently 6 modules (plus the main SWF, a total of 7 SWFs). I've noticed that the number of warnings is correlated to the number of modules...every time I add a module, I get more warnings. Right now, I get 6 warnings for every entry in the CSS file, so:</p>
<pre><code>CSS type selectors are not supported in components: 'Panel'
CSS type selectors are not supported in components: 'Panel'
CSS type selectors are not supported in components: 'Panel'
CSS type selectors are not supported in components: 'Panel'
CSS type selectors are not supported in components: 'Panel'
CSS type selectors are not supported in components: 'Panel'
</code></pre>
<p>And repeat for Button, TextArea, etc etc. I have so many useless warnings, it is impossible to see if there are any valid ones.</p>
<p>Is this warning caused by something I'm doing wrong? The styles are all being applied correctly and appears to work just the way I want at runtime. If I'm doing nothing wrong, can I tell the compiler to ignore this warning?</p>
<p>NOTE: I've tried the <code>-show-unused-type-selector-warnings=false</code> compiler flag, and it does not work...that's for a similar but different warning.</p>
http://stackoverflow.com/questions/1557332/optimizing-as3-swf-files-for-size0Optimizing AS3 SWF files for size?davr2009-10-12T22:40:09Z2009-11-04T17:50:34Z
<p>Are there any tips / best practices / secrets for optimizing the size of AS3 SWF files? In particular, any way to get a breakdown of what is taking up space inside the SWF, like you used to be able to in the old Flash 7/8 days? I'm not using the Flash IDE any more, but now I'm using either Flex Builder or FlashDevelop, so it needs to be something that I can do without the Flash IDE.</p>
http://stackoverflow.com/questions/1664455/a-road-map-to-learning-flex-for-dummies/1664673#16646731Answer by davr for A road map to learning Flex for dummies.davr2009-11-03T01:18:31Z2009-11-03T01:18:31Z<p><a href="http://www.flashdevelop.org/wikidocs/index.php?title=Features%3AInterface" rel="nofollow">FlashDevelop</a> is a decent free IDE which works with the free Flex SDK (free commandline compiler from Adobe)</p>
http://stackoverflow.com/questions/715738/creating-a-custom-trace-class-in-as3/1664554#16645540Answer by davr for Creating a custom trace() class in AS3davr2009-11-03T00:25:35Z2009-11-03T00:25:35Z<p>You can't override <code>trace</code> itself, but for ease of typing I like to create a global function called 'tr'. It's a little known fact that you can create global functions in AS3, but it's easy.</p>
<p>Create a file called <code>tr.as</code> inside you main source directory (not in a subdirectory or package), with the contents:</p>
<pre><code>package {
public function tr(msg:String, ...):void {
// add custom trace logic here
trace("tr message: "+msg);
}
}
</code></pre>
<p>If you need to have a lot of logic or static storage variables etc, it might be better to make a separate static class, and have the global tr function call out to that, such as:</p>
<pre><code>package {
import org.code.MyTracer;
public function tr(msg:String, ...):void {
MyTracer.tr(msg); // all the tracing logic is inside the MyTracer class
}
}
</code></pre>
http://stackoverflow.com/questions/1518118/as3-typeerror-1009-any-easy-way-to-find-out-which-object-reference-is-null/1664259#16642591Answer by davr for AS3 -TypeError #1009 - any easy way to find out *which* object reference is null?davr2009-11-02T22:55:24Z2009-11-02T22:55:24Z<p>The obvious solution is to stop using such generic error-prone code in the first place. You should never use '*' type, and almost never should use 'Object' type.</p>
<p>To catch it at runtime, you could always say:</p>
<pre><code>if(obj == null)
throw new Error("null obj passed in!!");
if(obj.nonExistentProperty == null)
throw new Error("obj doesn't have the prop!! the obj was: "+obj);
</code></pre>
http://stackoverflow.com/questions/255162/customer-support-system-with-easy-integration1Customer support system with easy integration?davr2008-10-31T22:40:20Z2009-10-27T01:50:56Z
<p>I'm one of the main developers on a complex web application. As we start to gain more users, we need a better method of managing customer support. Currently, we just have a support email box that someone goes through and answers questions, or forwards them off to other team members who can help. But it's getting too big to manage.</p>
<p>Ideally, we'd like some kind of system that still allows users to get help via email if they want, but on our end we should have some kind of web app to manage it all. Another thing which would be nice is if it were easy for us to integrate with our existing website and user system.</p>
<p>Does anyone have any experience / suggestions on a system of this type?</p>
http://stackoverflow.com/questions/155241/cheapest-java-code-signing-certificate-not-self-signed12Cheapest Java Code Signing Certificate? (not self-signed)davr2008-09-30T21:48:15Z2009-10-23T11:21:55Z
<p>Does anyone know where I can get an inexpensive Java code signing certificate? Everywhere I look wants $200 to $300 per year! Unfortunately I cannot use a self-signed one, I'm trying to get rid of the scary warnings so that users will be more likely to accept my application. And as far as I know (per <a href="http://stackoverflow.com/questions/78869/java-code-signing-certificatessame-as-ssl-certificate">this question</a>), it has to be a code signing certificate, it cannot be a SSL certificate.</p>
http://stackoverflow.com/questions/1591721/possible-to-programmatically-enable-show-redraw-regions-in-flash-debug-player/1591840#15918403Answer by davr for Possible to programmatically enable "show redraw regions" in Flash debug player?davr2009-10-20T00:22:09Z2009-10-20T00:22:09Z<p>Yeah, should be able to do it with this line of code:</p>
<pre><code>flash.profiler.showRedrawRegions(true)
</code></pre>
<p>Read the <a href="http://livedocs.adobe.com/flex/3/langref/flash/profiler/package.html#showRedrawRegions%28%29" rel="nofollow">official docs</a> for a few more details.</p>
http://stackoverflow.com/questions/255133/easiest-implementation-of-onreleaseoutside-in-as31Easiest implementation of onReleaseOutside in AS3?davr2008-10-31T22:27:05Z2009-10-14T09:16:17Z
<p>I'm a long-time ActionScript 2 user, now getting started with ActionScript 3. The one thing I'm missing is an easy way to duplicate the functionality of AS2's MovieClip.onReleaseOutside. It is almost always necessary to implement this event, otherwise you get funny bugs like flash thinks your mouse is down when really it's up. </p>
<p>According to the <a href="http://livedocs.adobe.com/flex/2/langref/migration.html" rel="nofollow">AS2 to AS3 Migration Guide</a>, I'm supposed to use <code>flash.display.InteractiveObject.setCapture()</code> for this, however it does not exist as far as I can tell. I guess this document is out of date or incorrect. I've found a few posts on the web about how to duplicate this functionality, but they either have their own problems:</p>
<ul>
<li><a href="http://www.arpitonline.com/blog/?p=33" rel="nofollow">This one</a> triggers onReleaseOutside even if there was no corresponding onPress event. </li>
<li><a href="http://www.kirupa.com/forum/showpost.php?p=1948182&postcount=204" rel="nofollow">This one</a> seems very inefficient, you'll add and remove an event listener every time the mouse is clicked anywhere inside your app.</li>
</ul>
<p>There has to be an easier way, don't tell me Adobe forgot about this when rewriting Actionscript?</p>
<p>Example AS2 code:</p>
<pre><code>// Assume myMC is a simple square or something on the stage
myMC.onPress = function() {
this._rotation = 45;
}
myMC.onRelease = myMC.onReleaseOutside = function() {
this._rotation = 0;
}
</code></pre>
<p>Without the onReleaseOutside handler, if you pressed down on the squre, dragged your mouse outside of it, and released the mouse, then the square would not un-rotate, and appear to be stuck.</p>
http://stackoverflow.com/questions/1546714/is-it-possible-to-set-up-a-private-mercurial-repository-on-google-code/1546726#15467268Answer by davr for Is it possible to set up a private Mercurial repository on Google Code?davr2009-10-10T00:59:23Z2009-10-10T00:59:23Z<p>I'm pretty sure the answer is no...the whole point of Google Code is free hosting for open source projects. Open source projects by their nature are not private. If you are planning on releasing the code for free, why so worried about keeping it private? Nobody is going to care if you publish unfinished code...I mean that's 90% of the open source projects online.</p>
<p>Another thought...isn't Mercurial a distributed source code control system? Couldn't you just run the Mercurial locally until you are ready to publish, then at that point push it up to Google Code?</p>
http://stackoverflow.com/questions/1499748/disable-flex-css-type-selector-warning/1546676#15466760Answer by davr for Disable Flex CSS type selector warning?davr2009-10-10T00:31:02Z2009-10-10T00:31:02Z<p>So I ended up just downloading the source to the compiler, searching through it to find that warning, commented it out, and re-compiled the compiler. This is against the version tagged for gumbo beta2. </p>
<pre><code>Index: modules/compiler/src/java/flex2/compiler/css/StylesContainer.java
===================================================================
--- modules/compiler/src/java/flex2/compiler/css/StylesContainer.java (revision 10941)
+++ modules/compiler/src/java/flex2/compiler/css/StylesContainer.java (working copy)
@@ -198,11 +198,11 @@
{
// [preilly] This restriction should be removed once the
// app model supports encapsulation of CSS styles.
- ComponentTypeSelectorsNotSupported componentTypeSelectorsNotSupported =
+ /*ComponentTypeSelectorsNotSupported componentTypeSelectorsNotSupported =
new ComponentTypeSelectorsNotSupported(getSource().getName(),
lineNumber,
selector);
- ThreadLocalToolkit.log(componentTypeSelectorsNotSupported);
+ ThreadLocalToolkit.log(componentTypeSelectorsNotSupported);*/
return true;
}
</code></pre>
<p>Not the most elegant solution...but those warnings were really getting annoying.</p>
http://stackoverflow.com/questions/1534671/capture-contents-of-firefox-ie-error-console-through-code0Capture contents of Firefox/IE error console through code?davr2009-10-07T22:55:14Z2009-10-07T23:00:34Z
<p>Is it possible to capture the contents of either the Firefox or IE javascript error console? I'm thinking adding a feature where when a user clicks the 'Report A Bug' link on my site, it also sends along the contents of the console, incase there are any useful errors in it. That way I don't have to tell them to manually open it and copy & paste the contents to me.</p>
http://stackoverflow.com/questions/1046116/set-flex-component-width-to-100-at-runtime1Set Flex component width to 100% at runtime?davr2009-06-25T20:36:01Z2009-09-30T21:13:20Z
<p>If I am creating say a input field through <code>MXML</code>, I can set the width to <code>100%</code>. But I cannot seem to do this at runtime through ActionScript.</p>
<p>This works:</p>
<pre><code><mx:TextInput ... width="100%" />
</code></pre>
<p>This wont compile, says width is a number, not a string:</p>
<pre><code>var textinp:TextInput = new TextInput();
someContainer.addChild(textinp);
textinp.width = "100%"
</code></pre>
<p>How can I set <code>100%</code> as the size on a component created at runtime via ActionScript?</p>
http://stackoverflow.com/questions/1331978/loading-symbols-from-an-as2-swf-into-an-as3-application0Loading symbols from an AS2 SWF into an AS3 application?davr2009-08-26T01:54:23Z2009-09-30T21:10:56Z
<p>I am converting a large application from AS2 to AS3. Part of the function is that it loads assets embedded in SWFs, which are old things. It is not possible to convert these to AS3 (there's really no code in them, it's just they're produced by tools that output flash 6 compatible SWFs). </p>
<p>The question is, how can I use this AVM1 (ActionScript VirtalMachine 1) graphical content inside an AVM2 application?</p>
<p>Here's what I used to do in AS2:</p>
<pre><code>mcLoader = new MovieClipLoader();
mcLoader.addListener(this);
holder = createEmptyMovieClip('holder', 10);
mcLoader.loadClip("http://.../library.swf", holder);
function onLoadInit() {
holder.attachMovie('GFXsymbolInsideLibraryswf', 'mysymbol', 123);
}
</code></pre>
<p>How can I do the same thing in AS3, loading the AS2 library swf? Am I going to need another layer of a 'wrapper' SWF that communicates via LocalConnection? Please tell me there's an easier way. Can I flip the bits on Library.swf to force it to load as an AVM2 SWF? Since there is no code inside it, maybe that would work?</p>
http://stackoverflow.com/questions/1331978/loading-symbols-from-an-as2-swf-into-an-as3-application/1336848#13368480Answer by davr for Loading symbols from an AS2 SWF into an AS3 application?davr2009-08-26T19:07:27Z2009-09-30T21:10:56Z<p>This looks like it may do what I want, I will update this answer later if I figure it out and nobody else replies.</p>
<ul>
<li><a href="http://nsdevaraj.wordpress.com/2008/10/16/avm1movie-controller-in-flex/" rel="nofollow">AVM1Movie Controller / ForcibleLoader</a> </li>
</ul>
<p><strong>EDIT:</strong> Nevermind. This doesn't work for what I want to do. I ended up having to use an intermediate wrapper SWF. I'm going to assume for now what I want is impossible to do. If anyone else has any suggestions, please leave an answer and I'll consider it.</p>
http://stackoverflow.com/questions/1396779/create-a-playable-demo-version-of-a-rails-site/1397127#13971270Answer by davr for Create a "playable demo" version of a Rails site?davr2009-09-09T01:19:09Z2009-09-09T01:19:09Z<p>Just make a separate demo site that works exactly like the production one, but the DB gets reset once an hour to clean example data. The only change you need to make is a banner across the top of every page that says its a demo. There are several ways to do it, (modify your site theme, or maybe use frames) but basically you should only have to change the code in one place, instead of throughout the site.</p>
http://stackoverflow.com/questions/1291152/simple-way-to-calculate-median-with-mysql2Simple way to calculate median with MySQLdavr2009-08-18T00:13:49Z2009-08-18T01:17:34Z
<p>What's the simplest (and hopefully not too slow) way to calculate the median with MySQL? I've used AVG(x) for finding the mean, but I'm having a hard time finding a simple way of calculating the median. For now, I'm returning all the rows to PHP, doing a sort, and then picking the middle row, but surely there must be some simple way of doing it in a single MySQL query.</p>
<p>Example data:</p>
<pre><code>id | val
--------
1 4
2 7
3 2
4 2
5 9
6 8
7 3
</code></pre>
<p>Sorting on val gives 2 2 3 4 7 8 9, so the median should be 4, versus SELECT AVG(val) which == 5.</p>
http://stackoverflow.com/questions/1201662/when-not-to-use-pop-ups/1201737#12017372Answer by davr for When not to use pop ups?davr2009-07-29T17:08:55Z2009-07-29T17:08:55Z<p>One thing I've found, is that 90% of users will never read anything in your popup dialogs. </p>
<p>If they click a button in your app labeled "<code>Do FooBar</code>", and you pop up a dialog, "<code>WARNING: Doing FooBar will also remove all your Baz! [Do FooBar] [Cancel]</code>", I guarantee you will get many support calls from people saying "Why did FooBar remove all my Baz!!!!?!?!?"</p>
http://stackoverflow.com/questions/660501/simplest-way-to-increment-a-date-in-php2Simplest way to increment a date in PHP?davr2009-03-18T23:34:13Z2009-07-18T17:01:08Z
<p>Say I have a string coming in, "2007-02-28", what's the simplest code I could write to turn that into "2007-03-01"? Right now I'm just using strtotime(), then adding 24*60*60, then using date(), but just wondering if there is a cleaner, simpler, or more clever way of doing it.</p>
http://stackoverflow.com/questions/1146314/custom-preloader-in-flex-4/1146478#11464780Answer by davr for Custom Preloader in Flex 4?davr2009-07-18T02:02:24Z2009-07-18T02:02:24Z<p>I feel dumb...I was referencing one of my main application classes from within the preloader, thus causing all of my classes to be compiled into the preloader, meaning it cannot display the preloader until everything is loaded. </p>
<p>For future reference: Double-check every reference in your preloader, make sure you use nothing more than what is absolutely necessary</p>
http://stackoverflow.com/questions/533644/how-to-determine-the-total-number-of-initprogress-events-coming-from-the-preloa/1146304#11463041Answer by davr for How to determine the total number of "initProgress" events coming from the preloader?davr2009-07-18T00:37:55Z2009-07-18T00:37:55Z<p>Don't worry about the total number too much, in my experience this should happen so quickly that it's not necessary to be completely accurate. If you do a few tests, and find that it counts up to about 14, then just manually set your progress bar to have a maximum of say 20. The users will still see the bar filling up quickly, since it's not onscreen for very long, nobody cares if it's completely accurate.</p>
http://stackoverflow.com/questions/1144825/can-i-do-caching-with-php/1144936#11449362Answer by davr for can i do caching with php?davr2009-07-17T18:26:56Z2009-07-17T18:26:56Z<p>There are many questions on StackOverflow already about PHP and Caching. Perhaps if you were more clear in you question (right now it has poor grammar and sort of vaguely rambles), we could better answer you.</p>
<ul>
<li><a href="http://stackoverflow.com/questions/126917/php-object-caching">PHP Object Caching</a> </li>
<li><a href="http://stackoverflow.com/questions/55223/how-do-i-implement-a-html-cache-for-a-php-site">HTML Caching for PHP sites</a> </li>
<li><a href="http://stackoverflow.com/questions/883905/can-someone-explain-a-little-bit-about-caching-dynamic-php-pages">Caching dynamic php pages</a> </li>
<li><a href="http://stackoverflow.com/questions/28716/which-php-opcode-cacher-should-i-use-to-improve-performance">PHP Opcode caching</a> </li>
<li><a href="http://stackoverflow.com/questions/1030482/php-http-headers">PHP HTTP Headers for caching</a> </li>
</ul>
http://stackoverflow.com/questions/141288/possible-to-use-flex-framework-components-without-using-mxml3Possible to use Flex Framework/Components without using MXML?davr2008-09-26T19:00:47Z2009-06-28T22:57:58Z
<p>Is it possible to use the Flex Framework and Components, without using MXML? I know ActionScript pretty decently, and don't feel like messing around with some new XML language just to get some simple UI in there. Can anyone provide an example consisting of an .as file which can be compiled (ideally via FlashDevelop, though just telling how to do it with the Flex SDK is ok too) and uses the Flex Framework? For example, just showing a Flex button that pops open an Alert would be perfect.</p>
<p>If it's not possible, can someone provide a minimal MXML file which will bootstrap a custom AS class which then has access to the Flex SDK?</p>
http://stackoverflow.com/questions/266431/empty-string-in-not-null-column-in-mysql3Empty string in not-null column in MySQL? davr2008-11-05T20:03:48Z2009-06-19T01:32:42Z
<p>I used to use the standard mysql_connect(), mysql_query(), etc statements for doing MySQL stuff from PHP. Lately I've been switching over to using the wonderful MDB2 class. Along with it, I'm using prepared statements, so I don't have to worry about escaping my input and SQL injection attacks.</p>
<p>However, there's one problem I'm running into. I have a table with a few VARCHAR columns, that are specified as not-null (that is, do not allow NULL values). Using the old MySQL PHP commands, I could do things like this without any problem:</p>
<pre><code>INSERT INTO mytable SET somevarchar = '';
</code></pre>
<p>Now, however, if I have a query like:</p>
<pre><code>INSERT INTO mytable SET somevarchar = ?;
</code></pre>
<p>And then in PHP I have:</p>
<pre><code>$value = "";
$prepared = $db->prepare($query, array('text'));
$result = $prepared->execute($value);
</code></pre>
<p>This will throw the error "<code>null value violates not-null constraint</code>"</p>
<p>As a temporary workaround, I check if <code>$value</code> is empty, and change it to <code>" "</code> (a single space), but that's a horrible hack and might cause other issues.</p>
<p>How am I supposed to insert empty strings with prepared statements, without it trying to instead insert a NULL?</p>
<p><strong>EDIT:</strong> It's too big of a project to go through my entire codebase, find everywhere that uses an empty string "" and change it to use NULL instead. What I need to know is why standard MySQL queries treat "" and NULL as two separate things (as I think is correct), but prepared statements converts "" into NULL. </p>
<p>Note that "" and NULL are <strong>not</strong> the same thing. For Example, <code>SELECT NULL = "";</code> returns <code>NULL</code> instead of <code>1</code> as you'd expect. </p>
http://stackoverflow.com/questions/982741/flex-run-scripts-before-after-build/982799#9827992Answer by davr for Flex: Run scripts before/after build?davr2009-06-11T18:23:54Z2009-06-11T18:23:54Z<p>Not sure if it's possible that way, however I have heard of people using Ant inside Flex Builder to build their projects (which means you can run whatever scripts you want at whatever time in the build process), but that takes a little more work to configure. Once it's set up, it's just a matter of clicking 'Run Ant Build' instead of 'Run', so no hassles there.</p>
<p>Random page I found that looks helpful: <a href="http://flex.gunua.com/?p=79" rel="nofollow">Ant in Flex tutorial</a></p>
http://stackoverflow.com/questions/936350/make-mysqlfetchassoc-automatically-detect-return-data-types4Make mysql_fetch_assoc automatically detect return data types?davr2009-06-01T19:30:10Z2009-06-10T06:44:25Z
<p>When using mysql_fetch_assoc in PHP, how can I make it return the correct data types? Right now it appears to convert everything to strings, I'd prefer if it left the Ints as Ints, and somehow designated the Date/Time as either Object or somehow different than strings.</p>
<p>The reason for this is that I am using PHP as a backend to a Flex application, and Flex has some features such as automatically detecting return types, which don't work that well if everything comes in as a string.</p>
http://stackoverflow.com/questions/858883/run-php-task-asynchronously3Run PHP Task Asynchronouslydavr2009-05-13T16:12:47Z2009-05-18T10:16:22Z
<p>I work on a somewhat large web application, and the backend is mostly in PHP. There are several places in the code where I need to complete some task, but I don't want to make the user wait for the result. For example, when creating a new account, I need to send them a welcome email. But when they hit the 'Finish Registration' button, I don't want to make them wait until the email is actually sent, I just want to start the process, and return a message to the user right away.</p>
<p>Up until now, in some places I've been using what feels like a hack with exec(). Basically doing things like:</p>
<pre><code>exec("doTask.php $arg1 $arg2 $arg3 >/dev/null 2>&1 &");
</code></pre>
<p>Which appears to work, but I'm wondering if there's a better way. I'm considering writing a system which queues up tasks in a MySQL table, and a separate long-running PHP script that queries that table once a second, and executes any new tasks it finds. This would also have the advantage of letting me split the tasks among several worker machines in the future if I needed to.</p>
<p>Am I re-inventing the wheel? Is there a better solution than the exec() hack or the MySQL queue?</p>
http://stackoverflow.com/questions/858830/file-extention-of-zlib-zipped-html-page/858898#8588981Answer by davr for File extention of zlib zipped html page?davr2009-05-13T16:15:03Z2009-05-13T16:15:03Z<p>Depending on your webserver settings, it is also possible to zip the html files in advance, in addition to having the webserver automatically zip them. Usually the extension is .gz, eg MyPage.html becomes MyPage.html.gz. With the right settings, if someone requests <a href="http://example.com/MyPage.html" rel="nofollow">http://example.com/MyPage.html</a>, and Apache sees MyPage.html.gz, and the client supports compression, it will instead serve the MyPage.html.gz version. The client will then transparently decompress the content, and the user will not even know or care that it was compressed (except maybe being slightly happier that the page loaded a fraction of a second faster)</p>
http://stackoverflow.com/questions/831016/how-viable-is-ie7-js-by-dean-edwards/831192#8311923Answer by davr for How viable is ie7-js by Dean Edwards?davr2009-05-06T19:06:00Z2009-05-06T19:06:00Z<p>I think the best answer is: try it on your website and see if it works for your particular code. If it works, and doesn't impact the speed, great, you're done. If it doesn't work, then you're going to have to spend the time to make your site work in IE.</p>
http://stackoverflow.com/questions/1499748/disable-flex-css-type-selector-warning/1729097#1729097Comment by davr on Disable Flex CSS type selector warning?davr2009-11-13T17:54:41Z2009-11-13T17:54:41ZThis works, thanks! The GUI is a little different in Flex 4 (since it's based off a newer version of Eclipse), but the same basic idea works, it's in the secret little menu hidden by that triangle in the upper right corner of the Problems view.http://stackoverflow.com/questions/1664626/terminal-sudo-command/1664633#1664633Comment by davr on terminal sudo commanddavr2009-11-03T01:11:36Z2009-11-03T01:11:36ZMaybe explain what the magic letters 'sh' do, the asker seems pretty new and might not understand why they are needed.http://stackoverflow.com/questions/1664626/terminal-sudo-command/1664635#1664635Comment by davr on terminal sudo commanddavr2009-11-03T01:10:34Z2009-11-03T01:10:34Z-1 because rtf contains random formatting chars...99% chance executing it like this wont work. See pumpkin's answerhttp://stackoverflow.com/questions/1146314/custom-preloader-in-flex-4Comment by davr on Custom Preloader in Flex 4?davr2009-10-27T22:37:25Z2009-10-27T22:37:25Zwhy do you need a code sample? I already found the problem...http://stackoverflow.com/questions/680186/javascript-how-can-i-block-the-backspace-character/1605110#1605110Comment by davr on Javascript: How can I block the backspace character?davr2009-10-22T05:15:33Z2009-10-22T05:15:33Zwebster, thanks for the code example, but it's not appreciated for you to stuff links to your unrelated site in your answers.http://stackoverflow.com/questions/1437579/jsobject-like-stuff-in-actionscript-3/1510628#1510628Comment by davr on JSObject-like stuff in ActionScript 3?davr2009-10-21T00:23:02Z2009-10-21T00:23:02ZIt only violates it if you didn't set the correct parameters when embedding the flash object. http://stackoverflow.com/questions/1591731/whats-the-best-size-for-toolbar-iconsComment by davr on What's the best size for toolbar icons?davr2009-10-20T00:04:23Z2009-10-20T00:04:23ZIt depends completely on your application and whatever you feel like...all different sizes are common, there's no one standard. Some applications (eg Firefox) even have multiple icon sizes for different areas of the apphttp://stackoverflow.com/questions/1557332/optimizing-as3-swf-files-for-size/1557392#1557392Comment by davr on Optimizing AS3 SWF files for size?davr2009-10-14T20:15:25Z2009-10-14T20:15:25ZThis is pretty cool...one wrinkle I found though. If you have multiple modules in your Flex project, it uses the same link-report.xml file for all of them, meaning it's only possible to see the report of the last compiled filehttp://stackoverflow.com/questions/282877/link-report-files-for-flex-with-multiple-modules-overwrite-each-otherComment by davr on Link report files for Flex with multiple modules overwrite each otherdavr2009-10-14T19:46:38Z2009-10-14T19:46:38ZDid you ever find a way to do this? I'm running into the exact same problem now myself.http://stackoverflow.com/questions/1557332/optimizing-as3-swf-files-for-size/1558954#1558954Comment by davr on Optimizing AS3 SWF files for size?davr2009-10-14T19:31:19Z2009-10-14T19:31:19ZActually I learned you can have PNG-8 with an alpha channel, I'm using that in a couple places now. It's a bit tricky, since most of the major gfx tools don't support PNG8 with an alpha channel, only with a 1-bit transparency on/off mask. So you have to save a PNG24 file, then use a little converter to output PNG8 with alpha.http://stackoverflow.com/questions/383789/why-is-googles-face-recognition-feature-available-only-in-picasa-web-and-not-pComment by davr on Why is Google's "face recognition" feature available only in Picasa WEB and not Picasa for the PC?davr2009-10-12T22:43:25Z2009-10-12T22:43:25ZCorrect, as of Picasa 3.5, the face recognition feature is in the PC client.http://stackoverflow.com/questions/1556136/svn-how-to-take-a-file-off-the-version-control/1556162#1556162Comment by davr on SVN - how to take a file off the version controldavr2009-10-12T18:37:06Z2009-10-12T18:37:06ZThis is a good partion solution...I think you could combine it with svn:ignore to make the perfect solution.http://stackoverflow.com/questions/1556136/svn-how-to-take-a-file-off-the-version-control/1556152#1556152Comment by davr on SVN - how to take a file off the version controldavr2009-10-12T18:36:29Z2009-10-12T18:36:29ZI think using svn:ignore makes more sense here...so you don't have to uncheck the file every single time you make a commit.http://stackoverflow.com/questions/1546662/flash-as3-fluid-navigation-barComment by davr on Flash AS3 fluid navigation bar. davr2009-10-10T00:33:04Z2009-10-10T00:33:04ZThis question looks awfully like "write my code for me". It doesn't seem like you've done any work on your own.http://stackoverflow.com/questions/1499748/disable-flex-css-type-selector-warning/1546676#1546676Comment by davr on Disable Flex CSS type selector warning?davr2009-10-10T00:32:15Z2009-10-10T00:32:15ZFor future reference: if someone asks nicely enough I can upload the compiled compiler...but it's 100MB so I'm not gonna upload it just in case.