User Aethex - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T15:30:01Zhttp://stackoverflow.com/feeds/user/99012http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1429694/what-is-the-most-elegant-solution-to-managing-various-java-external-libraries4What is the most elegant solution to managing various Java external libraries?Aethex2009-09-15T21:22:42Z2009-09-21T14:25:58Z
<p>Perhaps the reason I stalled learning Java until now is because I <strong>HATE</strong> how Java handles external libraries. I'm stuck keeping them in one place, adding them individually, fixing problems with versioning and every time I move/rename them, and copying and writing the classpath over and over each time I release a Java application.</p>
<p>There has to be an elegant solution to all of this. I keep all of my libraries (regardless of task, platform, or other) in their own little folder inside a "lib" folder in my development folder, kind of like this:</p>
<blockquote>
<pre><code>Dev
-lib
+JS-jQuery
+Flex-Degrafa
-Java-Xerces
+Xerces-1.2.3
+More libraries
</code></pre>
</blockquote>
<p>I can use either Netbeans or Eclipse for Java dev, but none of them provide a very streamlined (and not to mention idiot-proof) way of managing all of these.</p>
<p>A nudge in the right direction or an online article/tutorial on this would be greatly appreciated.</p>
http://stackoverflow.com/questions/1429662/will-learning-c-c-etc-be-useful-in-todays-society-1Will learning C/C++ etc. be useful in today's society? [closed]Aethex2009-09-15T21:14:15Z2009-09-15T21:20:13Z
<blockquote>
<p><strong>Possible Duplicates:</strong><br />
<a href="http://stackoverflow.com/questions/296/should-i-learn-c">Should I learn C?</a> </p>
</blockquote>
<p>When you think of it, most applications you use are written in a low-level, fast language like C or C++ (the majority of Windows and Linux apps, for example). But while high-level, abstract languages and frameworks are gaining popularity (C# and .NET or Java), will it pay off to master a language like C++ at the rate things are going?</p>
<p>Bonus question: If somehow, the software development train stops now (with a mix of C++-type and Java-type languages in use), which one will earn its developer the most money?</p>
http://stackoverflow.com/questions/1053647/other-flex-ides0Other Flex IDEs?Aethex2009-06-27T21:19:36Z2009-09-04T21:41:18Z
<p>I am an Adobe Flex developer and I am sick of Eclipse. Is there an alternative (free) IDE for Flex? I am aware of Tofino, but I can't get that to work on my MSVS Express editions, and I don't want to buy the whole thing. Help is greatly appreciated.</p>
http://stackoverflow.com/questions/809415/best-text-editor-with-custom-syntax1Best text editor with custom syntaxAethex2009-04-30T22:25:30Z2009-09-01T09:57:06Z
<p>What is the best text editor with the ability to create custom syntax? I used notepad++, but the custom syntax was a bit limited and the plugins (namely textFX) had a few bugs to satisfy me. I heard about Vim and Emacs (which one is better?), but I want a FAST editor with many features.</p>
http://stackoverflow.com/questions/1328894/create-a-timeline-from-date-to-date-in-flex-as3/1329684#13296841Answer by Aethex for Create a timeline from date to date in Flex/AS3Aethex2009-08-25T17:19:38Z2009-08-26T01:16:07Z<p>I would create a component from scratch, probably based on the Canvas component, and add lines and labels by dividing the width of the component by the number of lines (or something like that - I'm not the best at math).</p>
<p>You could also implement a feature to pop out a box with info when the user mouses over a certain part of the timeline.</p>
<p>What you want has timeline-specific features that chart axes do NOT have. I wouldn't compromise using a component not build for this specific task and introducing bugs or inelegant work-arounds. Flex was built for rapid extensibility, so why not take advantage of this feature?</p>
<p><strong>EDIT</strong>: Formulas
To get the position of the ticks, you'd have to divide the width of the timeline by the number of ticks minus one. Say we had a 400px timeline with 5 ticks (counting the ones on the far sides of the timeline). We count the ticks starting from 0. All we have to do to get the position of the ticks are divide 400 by 4 and multiply that by the tick number.</p>
<p>In code:</p>
<pre><code>for (var i : int = 0; i < num_ticks; i++) {
ticks[i].x = timeline_width / num_ticks-1 * i;
// do some drawing of the ticks
}
</code></pre>
<p>I'll walk you through it.</p>
<ul>
<li><p>Tick 0 , at the far left, at x 0. 400 / 4 * 0 = 0</p></li>
<li><p>Tick 1 , near the far left, at x 100. 400 / 4 * 1 = 0</p></li>
<li><p>Tick 2 , in the middle, at x 200. 400 / 4 * 2 = 200</p></li>
<li><p>And so on, Tick 3 at x 300 and 4 at x 400 (far right).</p></li>
</ul>
<p>What if the above formula returns a decimal? Round it! Users will barely notice a one-pixel difference (though I think operations like this on integers round automatically).</p>
<p>You can add a margin at either the left of right of the timeline by doing timeline_width-margin (must be an even number), and incrementing the x position of each tick by half of that. This will add some space on each side and center the ticks.</p>
<p>If you're lucky, I might just make a working prototype for you soon ;-)</p>
http://stackoverflow.com/questions/1325619/flex-drag-n-drop-between-components/1329769#13297690Answer by Aethex for Flex Drag n Drop between ComponentsAethex2009-08-25T17:35:22Z2009-08-25T17:35:22Z<p>I don't think so....
But what I did a long time ago was only start the drag if the user is holding down the mouse and has held it down for a period of time or moved it a certian distance. I can't remember the specifics, but I'll try to dig out how I did it soon.</p>
http://stackoverflow.com/questions/1326612/highlight-selected-cell-of-a-flex-data-grid/1329736#13297360Answer by Aethex for Highlight selected cell of a flex data gridAethex2009-08-25T17:31:12Z2009-08-25T17:31:12Z<p>DataGrid automatically highlights the selected row (<a href="http://livedocs.adobe.com/flex/3/langref/mx/controls/DataGrid.html#includeExamplesSummary" rel="nofollow">see the examples</a>)</p>
<p>If you're looking for a table-like component, check out Grid or Tile.</p>
<p>It would also help if you would post your source code so that we would know what you are trying to achieve.</p>
http://stackoverflow.com/questions/1326675/saving-and-loading-xml-file-with-flex/1329708#13297080Answer by Aethex for Saving and Loading XML file with flexAethex2009-08-25T17:24:34Z2009-08-25T17:24:34Z<p>Saving and file-specific operations are generally done using Java as the backend. BlazeDS is a tool that allows you to "connect" Flex with Java and vice-versa, to make them work together more efficiently (Remoting).</p>
http://stackoverflow.com/questions/1045037/importing-a-swc-for-a-flex-project-in-flash-develop/1329646#13296460Answer by Aethex for Importing a SWC for a Flex Project in Flash DevelopAethex2009-08-25T17:12:29Z2009-08-25T17:12:29Z<p>Unfortunately, the latest stable releases of FlashDevelop does not support code completion in MXML, although the feature is fully implemented in AS (you can browse packages in libraries with code completion in actionscript).</p>
<p>If you need help with MXML, I suggest keeping the library's API open side-by-side with FlashDevelop (it's what I prefer to do anyway). Still, you need to make sure that you include all of the XML namespaces. For example, for the Degrafa graphics library, you need to include</p>
<pre><code>xmlns:gfx="http://www.degrafa.com/2007"
</code></pre>
<p>in the tag (there is also a similar namespace definition for the namespace "mx" already there).</p>
<p>However, MXML code completion is hopefully going to be implemented in a stable release very soon, and there have already been <a href="http://www.flashdevelop.org/community/viewtopic.php?f=9&t=3776" rel="nofollow">some ways to get it working</a>.</p>
http://stackoverflow.com/questions/809636/notepad-html-tidy2Notepad++ HTML TidyAethex2009-04-30T23:51:44Z2009-08-07T17:34:21Z
<p>Is HTML Tidy for Notepad++ broken? None of the commands except Tidy (the first one) work. They don't show any message, even with all text selected. I really need Tidy to work, or is it just a limitation of the newest version of N++, or lack of support?</p>
<p>Also, the custom syntax dialog freezes whenever I select a color from the color dialog. It remains unresponsive until I click one of the bold, italic, or underline checkboxes. Is this a bug? How do I fix it?</p>
http://stackoverflow.com/questions/1087656/c-documentation-from-source1C# documentation from source?Aethex2009-07-06T15:35:26Z2009-07-27T18:47:20Z
<p>Hello,</p>
<p>I'm looking for a decent code documentation generator for C# that can create an html-format documentation straight from source.</p>
<p>I don't want to use Sandcastle, because it's too tedious to use and I don't use VS for my work, though Sandcastle's output is exactly what I need.</p>
<p>I also need the functionality of Doxygen - just save a file, press a button, and out comes documentation. The problem is that Doxygen doesn't produce an MSDN-like output.</p>
<p>Customizable styles would be a plus, as well as support for plenty of other styles like prototype, hana, vs2005, etc.</p>
http://stackoverflow.com/questions/962112/flex-builder-3-not-debugging1Flex Builder 3 not debuggingAethex2009-06-07T15:34:21Z2009-07-23T06:44:33Z
<p>Allope,
I've recently bough Flex Builder 3 and I am completely dissatisfied with its reluctance to debug. It manages to debug a few times, but after that, it just doesn't want to "connect to the debugger".
Help?</p>
http://stackoverflow.com/questions/1055040/are-flex-charts-available-in-the-free-flex-sdk1Are Flex charts available in the free Flex SDK?Aethex2009-06-28T14:44:00Z2009-07-15T01:40:52Z
<p>Hmmmm...
It appears that charts are only available through the Flex SDK that comes built-in with Flex Builder. This is a problem, since I want to use Flex 3.3, and Flex Builder came with 3.2.</p>
<p>Eclipse is also ticking me off, and I prefer to use a different IDE (FlashDevelop).</p>
<p>Any way around this? And is there anything else that isn't included the the free SDK that I should be aware of?</p>
http://stackoverflow.com/questions/1082285/best-compression-algorithm-for-xml4Best compression algorithm for XML?Aethex2009-07-04T14:17:13Z2009-07-06T16:28:29Z
<p>Hello,
I barely know a thing about compression, so bear with me (this is probably a stupid and painfully obvious question).</p>
<p>So lets say I have an XML file with a few tags.</p>
<pre><code><verylongtagnumberone>
<verylongtagnumbertwo>
text
</verylongtagnumbertwo>
</verylongtagnumberone>
</code></pre>
<p>Now lets say I have a bunch of these very long tags with many attributes in my multiple XML files. I need to compress them to the smallest size possible. The best way would be to use an XML-specific algorithm which assigns individual tags pseudonyms like vlt1 or vlt2. However, this wouldn't be as 'open' of a way as I m trying to go for, and I want to use a common algorithm like DEFLATE or LZ. It also helpes if the archive was a .zip file.</p>
<p>Since I'm dealing with plain text (no binary files like images), I'd like an algorithm that suits plain text. Which one produces the smallest file size (lossless algorithms are preferred)?</p>
<p>By the way, the scenario is this: I am creating a standard for documents, like ODF or MS Office XML, that contain XML files, packaged in a .zip.</p>
<p>EDIT: The 'encryption' thing was a typo; it should ave ben 'compresion'.</p>
http://stackoverflow.com/questions/904681/flex-inverting-linearaxis-values0Flex: Inverting LinearAxis valuesAethex2009-05-24T21:16:21Z2009-07-03T08:22:55Z
<p>I have a line chart that is updated every so and so seconds, similar to the one you see in Windows' Task Manager. The chart goes right-to-left, with the most recent data on the right, and going leftwards. How would I invert the values of the X axis so that the lowest value is on the right and the highest on the left? It's a LinearAxis.</p>
<p>I tried making it a CategoryAxis and putting the numbers in manually, but that doesn't work the way it should (the labels are not aligned with the ticks).</p>
<p>Or, is there a way to have the labels in a CategoryAxis align with the ticks?</p>
http://stackoverflow.com/questions/1050208/how-can-i-visualize-xml-in-flex-flash0How can I visualize XML in Flex /Flash?Aethex2009-06-26T17:14:43Z2009-06-28T01:27:57Z
<p>Hello,</p>
<p>I'm making a Flex application to visualize the contents of an XML file in a tree, radial diagram, etc... I looked all over the internet and I can't find any useful tutorials or source code on how to do this. Most existing components on the web have licensing issues with them, so I prefer to write some sort of XML visualization algorithm from scratch.</p>
<p>An example I found was <a href="http://www.cynergytv.com/#video=sciLogic&page=1" rel="nofollow">ScienceLogic</a>. This is very similar to what I am trying to do.</p>
<p>Any help on how I can write an XML/data visualizer in Flex/Flash? Any help is greatly appreciated. Thanks!</p>
<p>EDIT:
The visualizer should make something like a hierarchy diagram, like so:</p>
<pre><code>SERVER 1
-Unit 1
-Unit 2
-Unit 3
-Unit 4
</code></pre>
<p>Think of a network with servers and routers and computers - and you want to put that in a web or diagram.</p>
http://stackoverflow.com/questions/984302/which-language-would-you-use-in-your-os9Which language would you use in your OS?Aethex2009-06-11T23:23:11Z2009-06-27T00:04:27Z
<p>This is probably more of a subjective question, but which language (not API like .NET or JDK) would you use should you write your own operating system? Which language provides flexibility, simplicity, and possibly a low-level interface to the hardware? I was thinking Java or C...</p>
http://stackoverflow.com/questions/1014968/waiting-for-flex-effects-to-finish/1015085#10150851Answer by Aethex for Waiting for Flex Effects to FinishAethex2009-06-18T20:43:02Z2009-06-18T20:43:02Z<p>Your code is executed <em>while</em> the label fades. this.effectFadeIn.play () does not wait for it to finish. I would add a setTimeout call to the lines of code you need to call later, or better yet, put them in another function. Then, call the function again after a certain interval.</p>
<pre><code>import flash.utils.*;
private function FadeIn () : void {
var targets:Array = new Array();
targets.push(this.privacyScreen);
this.effectFadeIn.play(targets);
this.mylabel.text = "I am a date and/or time";
setTimeout (function (): void {FadeOut (targets);}, effectFadeIn.duration); // Function and duration
}
private function FadeOut (targets : Array) : void {
this.effectFadeOut.play(targets);
setTimeout (FadeIn (), this.effectFadeOut.duration;
}
</code></pre>
<p>I'm pretty sure this should work...</p>
http://stackoverflow.com/questions/992437/adobe-flex-vs-silverlight/992961#992961-1Answer by Aethex for Adobe Flex vs SilverlightAethex2009-06-14T14:54:55Z2009-06-14T14:54:55Z<p>Flex is more compatible with browsers, as it runs on top of Flash. Silverlight, however, needs to be downloaded, which might be a problem for users behind a proxy or network (in a workplace, for example, you can't install things). Flex also has a better framework than Silverlight, so you can customize a component in a few clicks and keystrokes.</p>
<p>I agree with you that VS and C# are more mature than their Flex counterparts (FB3 and ActionScript, respectively), but you'll get used to it quickly.</p>
<p>Then again, I am a Flex developer, and not a Silverlight developer, so my opinion can be somewhat biased. However, I did choose Flex over Silverlight because I thought that it was more compatible (nearly everyone has Flash Player) and has better support than Silverlight, and I don't regret my decision thus far.</p>
http://stackoverflow.com/questions/983203/what-are-some-good-java-tutorials4What are some good Java tutorials?Aethex2009-06-11T19:43:17Z2009-06-12T03:13:34Z
<p>Hello,
I am looking for a good place to learn Java, or to download e-books regarding Java.
Any help would be appreciated. Thanks.</p>
<p>EDIT:
I come from the C# world, so my main concern is learning how to use the Java / Swing API. My favorite format is a walkthrough-type tutorial where you learn by doing, not reading.</p>
http://stackoverflow.com/questions/974078/alternatives-of-flex-builder/984509#9845090Answer by Aethex for Alternatives of Flex Builder.Aethex2009-06-12T00:38:54Z2009-06-12T00:38:54Z<p>Actually, FlashDevelop is quite mature. I like to work in it, and since Flex is a text-only language (XML and AS), it's easy to write it in a text editor. Furthermore, FD has support for Flash / Flex like code completion, etc.</p>
<p>Google how to set up FD with flex.</p>
<p>Alternatively, you can also download the monster file that is the Flex Builder 3 installer. The 60 day trial is longer than it seems, and it costs nothing compared to Flash studio or Dreamweaver.</p>
<p>Or you can arrange your company to buy it for you:-) I did.</p>
http://stackoverflow.com/questions/981891/how-do-i-compile-multple-independent-mxml-files-at-one-time/984499#9844990Answer by Aethex for How do I compile multple independent mxml files at one time?Aethex2009-06-12T00:32:02Z2009-06-12T00:32:02Z<ol>
<li>Why not use Flex Builder to compile everything automatically?</li>
<li>Are the mxml files components and/or modules? I think that mxmlc compiles them automatically it they're linked to by the main application, but I'm not sure...</li>
</ol>
http://stackoverflow.com/questions/982763/flex-how-to-have-a-button-not-fire-on-space-key-if-it-has-focus/984451#9844511Answer by Aethex for [flex] how to have a Button not fire on space key if it has focus?Aethex2009-06-12T00:14:57Z2009-06-12T00:14:57Z<p>You'll want to create a custom button component and override the keyDownHandler. But, if you want to pick the button(s) to be stopped, you need to add a conditional to the code. This is what it should look like:</p>
<pre><code>package Sandbox
{
import mx.controls.Button;
import flash.events.KeyboardEvent;
public class KeyButton extends Button
{
public function KeyButton()
{
super();
}
protected override function keyDownHandler(e : KeyboardEvent) : void {
if (e.keyCode == 32) { // Spacebar
return;
}
else if (e.keyCode == 67) { // Letter C
this.parentApplication.setStyle ("backgroundColor", "#00aa00");
}
super.keyDownHandler (e);
}
}
}
</code></pre>
<p>The advantage of this is that other keys will still work, like Enter, or you can add more conditionals for different keys if, say, you wanted to change the color of the button if you pressed C or whatever.</p>
<p>And while we're at it, there is a difference between KeyboardEvent.keyCode and charCode. keyCode is the ID of the key on the physical keyboard, which means that lowercase c and capital C are the same (keyCode == 67). charCode, on the other hand, is the address of the character in the ASCII table, so c and C are different (C is 67 while c is 99). keyCode is case-insensitive, in short.</p>
<p>Oh, yes. And should you need to check the key and char codes of a key (including arbitary ones like Backspace), check out this <a href="http://livedocs.adobe.com/flex/3/html/help.html?content=events%5F11.html" rel="nofollow">page</a> the good folks at Adobe made.</p>
<p>I also made an <a href="http://cid-8ba446d967d66fd9.skydrive.live.com/self.aspx/Public/Dev/Flex-CustomButton-KeyEvents1.zip" rel="nofollow">application</a> to illustrate this. It's a standard Flex Builder project, but the source is in the src folder if you don't have it. Launch the application, and click the button to focus it. Some text should appear over the button, courtesy of the button's click event. While it has focus, press Spacebar, which should fire the click event and print more text, but nothing happens! Now, press the c key to change the background color of the application. Neat, eh?</p>
<p>You can find the source <a href="http://cid-8ba446d967d66fd9.skydrive.live.com/self.aspx/Public/Dev/Flex-CustomButton-KeyEvents1.zip" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/984284/problem-processing-xml-in-flex3/984332#9843320Answer by Aethex for problem processing xml in flex3Aethex2009-06-11T23:34:05Z2009-06-11T23:34:05Z<p>I'm, not exactly an XML / Flex whiz, but is this a typo?</p>
<pre><code>for each (var item:XML in JavaServiceHandler(e.currentTarget).response..product )
</code></pre>
<p>Did you try</p>
<pre><code>for each (var item:XML in JavaServiceHandler(e.currentTarget).response.result.products.product )
</code></pre>
<p>That's how I do it. Explicit, explicit, explicit.</p>
http://stackoverflow.com/questions/954402/trouble-with-flex-scrolling/972744#9727440Answer by Aethex for Trouble with Flex scrollingAethex2009-06-09T22:05:57Z2009-06-09T22:05:57Z<p>Looks like you want thumbContent to expand dynamically as you add content. In this case, you need to remove the height attribute from thumbContent, otherwise it will want to cram more content into it than it can hold, especially if the H and V scroll bars are off.</p>
<p>Keep the height attribute for scroller, though, because that's what you want to use to scroll (fixed dimensions).</p>
<p>Also, use percentages in your application. make thumbContent width="100%" if you want it to fill up the entire width of scroller.</p>
http://stackoverflow.com/questions/961884/how-to-anti-alias-an-image-in-flex1How to anti-alias an image in Flex?Aethex2009-06-07T13:29:30Z2009-06-08T19:56:07Z
<p>Hello,
I have a Flex component with a background image. The image is sharp in the beginning, but is jagged whenever I scale the component using scaleX and scaleY. How would I make the image anti-alias so that, it it's scaled to 0.75, the lines are smooth, not jaggedy?</p>
<p><a href="http://img195.imageshack.us/i/constructiono.png/" rel="nofollow">Here is the image</a></p>
<p><a href="http://img188.imageshack.us/i/68053636.png/" rel="nofollow">Here is the scaled version</a></p>
<p><a href="http://img146.imageshack.us/i/84990127.png/" rel="nofollow">And the unscaled (good) one</a></p>
http://stackoverflow.com/questions/947401/anything-wrong-with-releasing-software-in-debug-mode/947479#9474791Answer by Aethex for Anything wrong with releasing software in debug mode?Aethex2009-06-03T21:55:21Z2009-06-03T21:55:21Z<p>Compiling any application in Debug mode adds code to the application that is used (almost) exclusively by the compiler or IDE to debug, step through your code, etc. These debugging functions have virtually no use in real life. If you want to release an application to the public, your best bet is to compile it in Release mode. Furthermore, Release-built applications are...</p>
<ul>
<li>Much faster and stable</li>
<li>Optimized for the machine</li>
<li>Smaller in size</li>
<li>More secure (harder to decompile / hack)</li>
<li>More efficient and easier on the hardware</li>
</ul>
<p>If you have the option of a Release mode, why not use it? You'll always have the debug version for development, or if something goes wrong, and you can always package the Debug-built application and/or source code with your Release-built version.</p>
<p>Furthermore, you may also have the option of building the application for certain platforms. Compiling using Release mode will streamline the application for said platform, making it much more stable.</p>
<p><strong>Even if speed is not an issue, there is no reason not to use Release mode when you compile.</strong></p>
http://stackoverflow.com/questions/920411/flex-flash-textarea-having-a-checkbox-at-each-new-line/923823#9238232Answer by Aethex for Flex/Flash TextArea Having a Checkbox at each new lineAethex2009-05-29T00:05:53Z2009-05-29T00:05:53Z<p>Actually, it's very possible.</p>
<p>Use the <code><mx:List></code> instead and use the <code>itemRenderer</code> attribute to point to a Flex component.</p>
<p>How to do it? If you have Flex Builder, just right-click on your source folder, and select New > Flex Component. Name your component something like myComponent. If not, a component is just a .mxml file with something in it, for example:</p>
<pre><code><mx:HBox>
<mx:Text text="Some Component" />
</mx:HBox>
</code></pre>
<p>and that's all. Point the list's itemRenderer attribute to myComponent (or wherever it is). Do not include the ".mxml". The list will now display your custom component instead of some text. Just add some entries to the list's dataProvider or something to make it display your component.</p>
<p>In your case, you want to add an mx:CheckBox and an mx:TextInput into your component to give it the 'todo list' look.</p>
<p>Find the source <a href="http://cid-8ba446d967d66fd9.skydrive.live.com/self.aspx/Public/Dev/Flex.zip" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/913275/flex-how-to-delay-setstyle-until-next-update/913638#9136380Answer by Aethex for Flex How to delay setStyle until next update ? Aethex2009-05-27T02:14:20Z2009-05-27T02:14:20Z<p>Even if you hide the VBox, HBox B is still there. I would shrink the height of the VBox, set the VerticalScrollPolicy to false (so that the scroll bar won't show), or just plain remove the HBox from the VBox (myVBox.removeChild () ).</p>
http://stackoverflow.com/questions/806696/loading-flex-components-using-xml/832249#8322490Answer by Aethex for loading flex components using xmlAethex2009-05-06T23:13:37Z2009-05-06T23:13:37Z<p>I'm not sure what you mean, but do you want to add event listeners to menus?</p>
<p>In that case, just add:</p>
<pre><code>menu12.addEventListener (event, eventHandlerFunction);
</code></pre>
<p>Example:</p>
<pre><code>menu12.addEventListener (MouseEvent.CLICK, menu12Clicked);
</code></pre>
<p>Flex automatically passes the event into the menu12Clicked function as an argument. If you wanted to have multiple arguments, you would use:</p>
<pre><code>menu12.addEventListener (MouseEvent.CLICK, function (e : MouseEvent) : void {
menu12Clicked (e, "argument");
});
</code></pre>
<p>I've no experience with PopUpButtons, but what you have in your code <em>should</em> work, although I assume that xmlDP points to the tag menu12. I'm also assuming that "@label" points to the label field defined inside the menu12. Personally, I like to nest my XML, so I wouldn't know what the "@label" is supposed to do. If you had the label nested inside the menu12 tag, you would use xmlDP.label.</p>
http://stackoverflow.com/questions/992437/adobe-flex-vs-silverlight/992961#992961Comment by Aethex on Adobe Flex vs SilverlightAethex2009-08-27T15:26:56Z2009-08-27T15:26:56ZFlash has been around on browsers much longer than c# or Silverlight. On that platform, it is much more stable and developed. Likewise, .NET beats Adobe AIR when it comes to desktop applications.http://stackoverflow.com/questions/1328894/create-a-timeline-from-date-to-date-in-flex-as3/1329684#1329684Comment by Aethex on Create a timeline from date to date in Flex/AS3Aethex2009-08-27T15:22:42Z2009-08-27T15:22:42ZPut the very wide timeline in a container smaller than it. That way, the timeline will scroll inside the container with a scrollbar.http://stackoverflow.com/questions/1325619/flex-drag-n-drop-between-components/1329769#1329769Comment by Aethex on Flex Drag n Drop between ComponentsAethex2009-08-26T01:22:00Z2009-08-26T01:22:00ZSee this website:
<a href="http://www.adobe.com/devnet/flex/quickstart/adding_drag_and_drop/" rel="nofollow">adobe.com/devnet/flex/…</a>
You probably know most of it, but it might be useful. Also try looking at the source of the List control - that has drag/drop support built-in.
As for the DraggableAdvancedDataGrid, probably, but it depends on the various facilities that AdvancedDataGrid already has.http://stackoverflow.com/questions/1328894/create-a-timeline-from-date-to-date-in-flex-as3/1329684#1329684Comment by Aethex on Create a timeline from date to date in Flex/AS3Aethex2009-08-26T01:03:46Z2009-08-26T01:03:46ZNo, actually. See my edit.http://stackoverflow.com/questions/1325619/flex-drag-n-drop-between-components/1329769#1329769Comment by Aethex on Flex Drag n Drop between ComponentsAethex2009-08-25T17:56:59Z2009-08-25T17:56:59ZSorry, I've long replaced the old dragging method with a custom List control. Would creating a DraggableTreeControl that implements dragging be a viable solution?http://stackoverflow.com/questions/1011167/what-are-common-ui-misconceptions-and-annoyances/1011285#1011285Comment by Aethex on What are common UI misconceptions and annoyances?Aethex2009-07-09T09:03:00Z2009-07-09T09:03:00ZI agree. I don't need a splash screen that takes up 50% of my workspace when that same application also advertises its existence in the Taskbar with endless notifications, Windows Update-style.http://stackoverflow.com/questions/1087656/c-documentation-from-source/1087690#1087690Comment by Aethex on C# documentation from source?Aethex2009-07-06T17:51:51Z2009-07-06T17:51:51ZWell, Sandcastle generates documentation from assemblies, and I need it to generate directly from my .cs source file (I'm building a framework).http://stackoverflow.com/questions/904681/flex-inverting-linearaxis-values/1075787#1075787Comment by Aethex on Flex: Inverting LinearAxis valuesAethex2009-07-06T09:42:26Z2009-07-06T09:42:26ZSorry, I meant LinearAxis.http://stackoverflow.com/questions/904681/flex-inverting-linearaxis-values/1078326#1078326Comment by Aethex on Flex: Inverting LinearAxis valuesAethex2009-07-04T14:07:05Z2009-07-04T14:07:05ZThat's long!
Too bad I won't have a chance to test it out before the bounty ends.http://stackoverflow.com/questions/904681/flex-inverting-linearaxis-values/1075787#1075787Comment by Aethex on Flex: Inverting LinearAxis valuesAethex2009-07-04T14:03:02Z2009-07-04T14:03:02ZDoesn't matter if it's a CategoryAxis, since it uses Minimum and Maximum values.http://stackoverflow.com/questions/1050208/how-can-i-visualize-xml-in-flex-flash/1050224#1050224Comment by Aethex on How can I visualize XML in Flex /Flash?Aethex2009-06-27T21:11:32Z2009-06-27T21:11:32ZI want to make kind-of a flowchart, or to demonstrate the hierarchy of an XML document (see my edit). I'm planning on having different "themes", or "perspectives" for you eclipse users, for different data like financial, network, etc.http://stackoverflow.com/questions/1014968/waiting-for-flex-effects-to-finish/1015085#1015085Comment by Aethex on Waiting for Flex Effects to FinishAethex2009-06-18T23:47:23Z2009-06-18T23:47:23ZNever used effects in Flex, this was off the top of my head :-) I'm also from the Javascript world, and this is how it would be done in JS.http://stackoverflow.com/questions/981891/how-do-i-compile-multple-independent-mxml-files-at-one-time/984499#984499Comment by Aethex on How do I compile multple independent mxml files at one time?Aethex2009-06-16T21:07:37Z2009-06-16T21:07:37ZModules are meant to be integrated into the main app. Putting each module in a different page seems like poor practice. Why not code the entire thing in Flex? Separate modules provide different UIs. You can also compile each module into a swc or library file and include them as a library using a compiler argument (I forget which one that is).
http://stackoverflow.com/questions/992437/adobe-flex-vs-silverlight/992961#992961Comment by Aethex on Adobe Flex vs SilverlightAethex2009-06-14T20:10:13Z2009-06-14T20:10:13ZWhat I mean is that Flash is more common, and is probably already installed on you computer at work (or anywhere). That was bad wording on my part.http://stackoverflow.com/questions/984302/which-language-would-you-use-in-your-os/984320#984320Comment by Aethex on Which language would you use in your OS?Aethex2009-06-12T21:55:17Z2009-06-12T21:55:17ZNot necessarily. A low-level language like C would be able to load the required libraries and services to execute a high-level language like C#. It's a bit like JVM, but built right in.