User anirudhsasikumar - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T23:18:28Zhttp://stackoverflow.com/feeds/user/11433http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/833423/why-the-is-flexbuilder-plugin-for-eclipse-so-slow-to-open-and-compile/838942#8389422Answer by anirudhsasikumar for Why the is flexbuilder plugin for eclipse so slow to open and compile ?anirudhsasikumar2009-05-08T09:10:08Z2009-05-08T09:10:08Z<p>The above mentioned improvements have also been backported to the Flex 3 SDK by Brian Deitte. You can try this out at <a href="http://www.deitte.com/archives/2008/10/a%5Ffaster%5Fflex%5F3.htm" rel="nofollow">his blog</a>. It is way faster.</p>
http://stackoverflow.com/questions/331105/problems-with-itemrollover-and-itemrollout-events-on-list-component/438236#4382360Answer by anirudhsasikumar for Problems with itemRollOver and itemRollOut events on List componentanirudhsasikumar2009-01-13T07:42:08Z2009-01-13T07:42:08Z<p>Make sure you are setting <strong>super.data</strong> in your item renderer if you are overriding set data().</p>
<p>ListBase listens for MOUSE_OVER and then figures out the item underneath it based on coordinates of mouse and the position of the item renderer. You could check ListEvent.itemRenderer to see which renderer's roll over and roll out are firing and in what order.</p>
<p>Worst case, you could listen for rollOver and rollOut inside your item renderer.</p>
http://stackoverflow.com/questions/200219/flex-development-on-linux-whats-a-good-free-environment/325162#3251620Answer by anirudhsasikumar for Flex development on Linux, what's a good free environment?anirudhsasikumar2008-11-28T06:35:36Z2008-11-28T06:35:36Z<p>I use Emacs along with a custom hack to support fcsh (Flex compiler shell) for fast recompile times.</p>
<p>fcsh-compile can be found <a href="http://anirudhs.chaosnet.org/code/ani-fcsh.el.html" rel="nofollow">at this page</a> along with a <a href="http://anirudhs.chaosnet.org/blog/2008.03.26.html" rel="nofollow">blog entry</a>.</p>
http://stackoverflow.com/questions/67627/is-there-a-guide-i-can-follow-to-convert-my-procedural-actionscript-3-to-oop/70495#704950Answer by anirudhsasikumar for Is there a guide I can follow to convert my procedural actionscript 3 to OOP?anirudhsasikumar2008-09-16T08:54:45Z2008-09-16T08:54:45Z<p>Don't forget this excellent devnet article meant for transitioning from AS2 to AS3:</p>
<p><a href="http://www.adobe.com/devnet/actionscript/articles/actionscript_tips.html" rel="nofollow">http://www.adobe.com/devnet/actionscript/articles/actionscript_tips.html</a></p>
http://stackoverflow.com/questions/50315/how-do-you-allow-multiple-file-uploads-on-an-internal-windows-authentication-intr/70461#704610Answer by anirudhsasikumar for How do you allow multiple file uploads on an internal windows-authentication intranet?anirudhsasikumar2008-09-16T08:49:57Z2008-09-16T08:49:57Z<p>In Internet Explorer, FileReference.upload (flash upload) <em>will</em> send cookies along as well.</p>
<p>This behavior breaks only when running in other browsers.</p>
http://stackoverflow.com/questions/70232/multithreading-or-green-threading-in-actionscript/70335#703351Answer by anirudhsasikumar for Multithreading or green threading in actionscript?anirudhsasikumar2008-09-16T08:23:47Z2008-09-16T08:23:47Z<p>There's no built-in way to do green threading in ActionScript. You have to write code to handle it.</p>
<p>Make a function that performs one iteration of whatever operation you want to do. It should return true or false depending on if its job is done or not. Now, you have to compute the time interval left to the next screen update on the ENTER_FRAME event. This can be done using flash.utils.getTimer.</p>
<pre><code>start = getTimer();
//thread is a ui component added to system manager that is redrawn each frame
var fr:Number = Math.floor(1000 / thread.systemManager.stage.frameRate);
due = start + fr;
</code></pre>
<p>Keep on executing your function while checking the function's return value each time and checking if due time has been crossed by comparing getTimer() with due.</p>
<p>This has been implemented into a usable class by Alex Harui in the blog entry - <a href="http://blogs.adobe.com/aharui/2008/01/threads_in_actionscript_3.html" rel="nofollow" title="Threads in ActionScript">Threads in ActionScript</a></p>
http://stackoverflow.com/questions/833423/why-the-is-flexbuilder-plugin-for-eclipse-so-slow-to-open-and-compile/838942#838942Comment by anirudhsasikumar on Why the is flexbuilder plugin for eclipse so slow to open and compile ?anirudhsasikumar2009-05-25T08:44:26Z2009-05-25T08:44:26ZThe improvement affects re-compilation the most. First time, there won't be much of a difference.