User nevets1219 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T23:49:11Z http://stackoverflow.com/feeds/user/82952 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/691809/using-svg-in-gwt 2 Using SVG in GWT nevets1219 2009-03-27T23:32:14Z 2009-11-03T10:17:14Z <p>I was wondering if it is possible to include SVG content inside a panel (or whatever would work in GWT), be able to add more to the SVG (like add a circle or a curve) programmatically , and handle mouse events (would this be in SVG or GWT?). I've tried creating an HTML object adding something along the lines of:</p> <p><code>&lt;svg xmlns="http://www.w3.org/2000/svg" version="1.1"&gt;</code> <code>&lt;circle cx="50" cy="50" r="30" /&gt;</code> <code>&lt;/svg&gt;</code></p> <p>That didn't work (nothing visible in output) but I'm not sure if it was because I did it wrong or it's not allowed.</p> <p>I was able to do a simple example in GWT with Google Visualization's LineChart but I'd like to move away from Google Visualization and be able to generate the SVG myself and customize it further. I've looked around and many resources points to using Canvas but I'm not sure if that's the best route yet.</p> <p>I'm also a bit baffled about the example <a href="https://developer.mozilla.org/en/SVG%5FIn%5FHTML%5FIntroduction" rel="nofollow">here</a>. I tried a simple copy-paste of it to try locally and it didn't seem to work at all. I was however able to get another sample working with just HTM (embed with src pointing to SVG file) L + separate SVG file but I haven't been able to access it using GWT using RootPanel.get(...).</p> <p>EDIT: I've read about SVG not working with Hosted Browser and compiling it does work but I am uncertain how to refer to the SVG (which I have placed into the HTML via ). If I can access it then presumably I can add to its innerHTML. I've tried in RootPanel.get("hi").getElement().setInnerHTML("...") but that doesn't seem to work or did I mess up? <strong>I guess the goal is to be able to manipulate a SVG file which I linked somehow (whether in GWT or in HTML) and be able to modify it based on user's input.</strong></p> <p><strong>2nd EDIT</strong> So far, I've been programming functionality inside of the actual SVG file. In our setup, our SVG is an embedded object and we passed 'document' to the embedded SVG. Passing information from an embed object to and from HTML is quite doable since the HTML has access to our SVG functions and the SVG has access to the 'document'.</p> <p>There are more transparent ways of doing so (Rapahel) where FireBug could see the SVG directly which is nice but now not quite necessary. Thus far, I don't think any of the solutions I've looked at were IFrames but I could be wrong. A little warning, SVG can be pretty slow sometimes.</p> <p>I would say my issue is solved (sort of?) but I'm not using Raphael, jQuery, nor GWT at the moment but the method I described in my answer should still work if I want to use GWT.</p> http://stackoverflow.com/questions/791645/styling-uitextfield 0 Styling UITextField nevets1219 2009-04-26T21:32:24Z 2009-07-03T23:23:54Z <p>I've been playing around with different methods of determining at runtime the width of a "label" so that I can resize the "label" because I don't want it to truncate. I've finally found an easy solution through <em>UITextField</em> which allows me to set the <em>.autoSize</em> which is great! However, now I'm trying to "style" (simply adjust font and font size) of the <em>UITextField</em> but it seems that I have to do it manually with '<em>.htmlText</em>' (which I'll gladly accept if that is the ONLY way).</p> <p>I'm using the <em>.text</em> to set the value of the label.</p> <p>My test case involves a <em>HBox</em> (I'm actually using a Grid but they should be the same and I've done testing on both):</p> <ol> <li>I style the <em>HBox</em> and the style carries through to the <em>UITextField</em>. I don't believe this will work for me because I have other components inside that I need to style differently.</li> <li>I've tried: <em>UITextFormat</em> and <em>TextFormat</em> (I see that the <em>.htmlText</em> being updated accordingly but the output doesn't update. Then I noticed that whenever I called <em>hbox.addChild(myUITextField)</em> it would override the <em>.htmlText</em></li> <li>I've tried setting the style with <em>myUITextField.setStyle("fontSize", 20)</em> before and/or after the call to <em>addChild</em> neither of which made an impact on the display as per what I noted above.</li> </ol> <p>Changes are being made but they seem to be overrided when I add it to the display.</p> <p><strong>So what do I need to do in order to style the UITextField aside from manually setting it along with my contents in <em>.htmlText</em>?</strong> Solutions not using UITextField is fine as long as there is some easy way of not truncating the text.</p> <p>EDIT: I want to just do textField.setStyle('fontSize', 20) and expect that every time I change the text, I wouldn't need to use HTML to go with it (so I can just do textField.text = 'something else' and expect that it will still have a font size of 20). This is what I meant by not using <em>.htmlText</em> (sorry if I wasn't clear before).</p> <p><strong>2nd EDIT</strong>: I guess I should present the whole issue and maybe that'll clarify what I did wrong or couldn't achieve.</p> <p>My intent is to have a <em>Grid</em> and add text into it. I do not want it to wrap or scroll so I add it to the next row in the <em>Grid</em> when the current row's children total width exceeds some number. In order to add it to the next row, I need to be able to calculate the width of the text. I would like to be able to style that text individually based on cases and there might be other components (like a <em>TextInput</em>). Essentially what I'm trying to accomplish is "Fill in the Blank".</p> <p>I've included code to show what I'm currently doing and it works somewhat. It might be un-related to the original issue of styling but I can't figure out how to adjust the distance between each UITextField but aside from that this fits what I would like to accomplish. Relevant to the question is: I would like to change the way I style each <em>UITextField</em> (currently setting <em>.htmlText</em>) into something a bit straightforward though like I previously mentioned I'll gladly accept using <em>.htmlText</em> if that's the only solution.</p> <p>So I have a Grid with x Rows in it and in each row, I have exactly one GridItem. Based on the input, I add UITextField and TextInput into the GridItem going on to the next GridItem when necessary. If you have a better way of doing so then that would be better but I guess what I really want is to find a different way of styling.</p> <p>Also <strong>another problem</strong>, I'm not sure of the exact way to add a TextField into the display. I tried:</p> <pre><code>var t : TextField = new TextField(); t.text = "I'm a TextField"; hBox.addChild(t); // doesn't work //this.addChild(t); // doesn't work either </code></pre> <p>But I get the following error:</p> <p>TypeError: Error #1034: Type Coercion failed: cannot convert flash.text::TextField@172c8f9 to mx.core.IUIComponent.</p> <p>Here's what I have that's working.</p> <pre><code>private function styleQuestionString(str : String) : String { return '&lt;FONT leading="1" face="verdana" size="20"&gt;' + str + '&lt;/FONT&gt;'; } private function loadQuestion(str : String) : void { /* Split the string */ var tmp : Array = str.split("_"); /* Track the current width of the GridItem */ var curWidth : int = 0; /* Display components that we will add */ var txtField : UITextField = null; var txtInput : TextInput = null; /* Track the current GridItem */ var curGridItem : GridItem = null; /* Track the GridItem we can use */ var gridItemAC : ArrayCollection = new ArrayCollection(); var i : int = 0; /* Grab the first GridItem from each GridRow of Grid */ var tmpChildArray : Array = questionGrid.getChildren(); for (i = 0; i &lt; tmpChildArray.length; i++) { gridItemAC.addItem((tmpChildArray[i] as GridRow).getChildAt(0)); } curGridItem = gridItemAC[0]; gridItemAC.removeItemAt(0); /* Used to set the tab index of the TextInput */ var txtInputCounter : int = 1; var txtFieldFormat : UITextFormat = new UITextFormat(this.systemManager); txtFieldFormat.leading = "1"; //var txtFieldFormat : TextFormat = new TextFormat(); //txtFieldFormat.size = 20; /* Proper Order txtField = new UITextField(); txtField.text = tmp[curItem]; txtField.autoSize = TextFieldAutoSize.LEFT; txtField.setTextFormat(txtFieldFormat); */ var txtLineMetrics : TextLineMetrics = null; var tmpArray : Array = null; curGridItem.setStyle("leading", "1"); var displayObj : DisplayObject = null; for (var curItem : int= 0; curItem &lt; tmp.length; curItem++) { /* Using UITextField because it can be auto-sized! */ /** CORRECT BLOCK (ver 1) txtField = new UITextField(); txtField.text = tmp[curItem]; txtField.autoSize = TextFieldAutoSize.LEFT; txtField.setTextFormat(txtFieldFormat); ***/ tmpArray = (tmp[curItem] as String).split(" "); for (i = 0; i &lt; tmpArray.length; i++) { if (tmpArray[i] as String != "") { txtField = new UITextField(); txtField.htmlText = styleQuestionString(tmpArray[i] as String); //txtField.setTextFormat(txtFieldFormat); // No impact on output txtLineMetrics = curGridItem.measureHTMLText(txtField.htmlText); curWidth += txtLineMetrics.width + 2; if (curWidth &gt;= 670) { curGridItem = gridItemAC[0]; curGridItem.setStyle("leading", "1"); if (gridItemAC.length != 1) { gridItemAC.removeItemAt(0); } // TODO Configure the proper gap distance curWidth = txtLineMetrics.width + 2; } displayObj = curGridItem.addChild(txtField); } } //txtField.setColor(0xFF0000); // WORKS if (curItem != tmp.length - 1) { txtInput = new TextInput(); txtInput.tabIndex = txtInputCounter; txtInput.setStyle("fontSize", 12); txtInputCounter++; txtInput.setStyle("textAlign", "center"); txtInput.width = TEXT_INPUT_WIDTH; curWidth += TEXT_INPUT_WIDTH; if (curWidth &gt;= 670) { curGridItem = gridItemAC[0]; if (gridItemAC.length != 1) { gridItemAC.removeItemAt(0); } // TODO Decide if we need to add a buffer curWidth = TEXT_INPUT_WIDTH + 2; } curGridItem.addChild(txtInput); txtInputAC.addItem(txtInput); /* Adds event listener so that we can perform dragging into the TextInput */ txtInput.addEventListener(DragEvent.DRAG_ENTER, dragEnterHandler); txtInput.addEventListener(DragEvent.DRAG_DROP, dragDropHandler); txtInput.addEventListener(DragEvent.DRAG_EXIT, dragExitHandler); } /* Add event so that this label can be dragged */ //txtField.addEventListener(MouseEvent.MOUSE_MOVE, dragThisLabel(event, txtField.text)); } } </code></pre> http://stackoverflow.com/questions/963256/detect-flash-player-in-web-browser-in-client/963264#963264 1 Answer by nevets1219 for detect flash player in web browser in client nevets1219 2009-06-08T02:33:41Z 2009-06-08T02:33:41Z <p><a href="http://www.adobe.com/products/flashplayer/download/detection%5Fkit/" rel="nofollow">Adobe Flash Detection Kit</a> should do the trick for you. Are you looking to do this with Flash (ActionScript) or in JavaScript?</p> http://stackoverflow.com/questions/922476/is-there-a-way-to-read-the-clients-machine-computer-name-from-the-browser/922541#922541 1 Answer by nevets1219 for Is there a way to read the clients machine/computer name from the browser? nevets1219 2009-05-28T18:46:07Z 2009-05-28T18:46:07Z <p>Browser, Operating System, Screen Colors, Screen Resolution, Flash version, and Java Support should all be detectable from JavaScript (and maybe a few more). However, computer name is not possible.</p> <p>EDIT: Not possible across all browser at least.</p> http://stackoverflow.com/questions/876063/document-not-ready-for-insert-after-method-using-a-loop-with-jquery/876077#876077 0 Answer by nevets1219 for Document not ready for insert after method using a loop with jquery nevets1219 2009-05-18T02:58:53Z 2009-05-18T02:58:53Z <p>Assuming your problem is finding the last DIV, you can search for the <a href="http://docs.jquery.com/Selectors/last" rel="nofollow">last</a> DIV and just place it <a href="http://docs.jquery.com/Manipulation/after#content" rel="nofollow">after</a> that.</p> http://stackoverflow.com/questions/837872/calculate-distance-in-meters-when-you-know-longitude-and-latitude-in-java/837886#837886 0 Answer by nevets1219 for Calculate distance in meters when you know longitude and latitude in java nevets1219 2009-05-08T01:43:52Z 2009-05-08T01:43:52Z <p><a href="http://www.movable-type.co.uk/scripts/latlong.html" rel="nofollow">This site</a> shows you the formula which is the part I assume you are having trouble with? You might want to specify if you want a straight line from point A to point B (through Earth) or if you want the distance as presented on the site. I'm sorry I don't exactly recall their names. However, the code seems relatively straightforward.</p> http://stackoverflow.com/questions/837293/two-functions-or-one-function-with-different-params/837328#837328 0 Answer by nevets1219 for Two functions, or one function with different params? nevets1219 2009-05-07T22:13:17Z 2009-05-07T22:13:17Z <p>Wouldn't it sort of depend on how often you are using it? If you are doing that basic check over and over throughout your code, then a function will save you from repeating that code block.</p> <p>However, if you use that logic only a few times here and there, then it may be clearer to just have it the first way.</p> http://stackoverflow.com/questions/835924/how-do-i-protect-the-trunk-from-hapless-newbies/835957#835957 13 Answer by nevets1219 for How do I protect the trunk from hapless newbies? nevets1219 2009-05-07T17:20:26Z 2009-05-07T17:20:26Z <p>It seems your existing process is already pretty good. The problem isn't that bad code made it onto the trunk but rather bad code was not caught during testing or review. Perhaps weekly code review sessions would be helpful? Pair up a beginner with someone more experienced and just go through the code because at some point there will be far too many changes for just a specific person or group of people to be doing all the commits/merging to trunk.</p> <p>Per developer branch works too, but I would suggest letting the developer merge the changes (again perhaps with another developer).</p> http://stackoverflow.com/questions/818159/what-are-some-bad-programming-habits-to-look-out-for-and-avoid/818810#818810 1 Answer by nevets1219 for What are some bad programming habits to look out for and avoid? nevets1219 2009-05-04T04:52:25Z 2009-05-04T04:52:25Z <p>Using the debugger (and ONLY the debugger) to fix bugs or code. It's really handy and easy to do this sometimes that you end up spending more time with the debugger than thinking about the design or logic.</p> http://stackoverflow.com/questions/791741/why-is-textfield-not-instantiated-when-i-subclass-textarea-in-flex/791783#791783 1 Answer by nevets1219 for Why is 'textField' not instantiated when I subclass TextArea in Flex? nevets1219 2009-04-26T23:01:52Z 2009-04-26T23:01:52Z <p>Since <em>textField</em> is "the internal UITextField that renders the text of this TextArea" I believe it will remain <em>null</em> until you add it to the display via <em>.addChild(...)</em>. I ran a quick test to verify that once I've added it to the display, it is no longer null. You might want to add an event handler to the "creation complete" event and adjust it at that point (I think).</p> http://stackoverflow.com/questions/770744/what-commands-must-i-learn-to-become-an-effective-linux-shell-script-programmer/770775#770775 4 Answer by nevets1219 for What commands must I learn to become an effective Linux shell script programmer? nevets1219 2009-04-21T02:00:29Z 2009-04-21T02:00:29Z <ul> <li>Compressing and uncompressing various archives.</li> <li>Using the <em>man</em> pages</li> <li><em>alias</em> is always helpful</li> <li>as mentioned by others <em>sed</em> &amp; <em>grep</em> (RegEx is good to know in general), <em>sort</em>, <em>head</em>, <em>tr</em>, <em>cut</em></li> <li><em>echo</em> &amp; <em>printf</em> (their differences and when to use what)</li> <li>Getting the return value (not as useful but still handy when writing scripts) via <em>$?</em></li> <li><em>top</em>, <em>ps</em>, <em>kill</em>, how to background/foreground/suspend a process</li> </ul> <p>The important thing is combining the many tools that exists and where most become extremely useful. Using <em>man</em> whenever you are stuck is probably the most important thing.</p> http://stackoverflow.com/questions/746962/flex-actionscript-truncatetofit-on-label-component/762962#762962 0 Answer by nevets1219 for Flex/Actionscript truncateToFit on label component nevets1219 2009-04-18T05:30:25Z 2009-04-18T05:30:25Z <p>So I went and embedded a font of my own and it truncates nicely without any particular issue. I'm not sure how you are embedding your font but this method worked for me. If you are doing something completely different then please specify in your post.</p> <pre><code>// Cannot name the font as one that already exists! [Embed(source="Anonymous.ttf", fontFamily="myAnon")] private var fontA : Class; [Embed(source="HGRSGU.TTC", fontFamily="myFont")] private var fontB : Class; //...I have some code here that switches the font var obj : Object = truncateMe.getStyle("fontFamily"); if (obj == "myAnon") truncateMe.setStyle("fontFamily", "myFont"); else truncateMe.setStyle("fontFamily", "myAnon"); &lt;!-- My Label --&gt; &lt;mx:Label maxWidth="150" truncateToFit="true" id="truncateMe" text="Something really long goes here" fontFamily="myFont" fontSize="20"/&gt; </code></pre> http://stackoverflow.com/questions/734758/flash-actionscript-3-oscillating-object-alpha-animation/734867#734867 0 Answer by nevets1219 for Flash Actionscript 3 & Oscillating Object Alpha Animation nevets1219 2009-04-09T16:02:55Z 2009-04-09T16:02:55Z <p>Maybe the <a href="http://livedocs.adobe.com/flex/3/langref/mx/effects/Dissolve.html" rel="nofollow">Dissolve</a> effect or <a href="http://livedocs.adobe.com/flex/3/langref/mx/effects/Fade.html" rel="nofollow">Fade</a> (both comes with sample &amp; code on the bottom of the page). I believe you'll want those effect to play in sequence (may not be necessary to code it in ActionScript). Then in order to get it to stay at alpha=1, I would add an event to the effect and check its alpha value and either set a delay or temporarily pause the animation. I ran a simple tests just animating the alpha values and it seems to work.</p> <p>You can set repeatCount to 0 to play the effect indefinitely and a repeatDelay to get it to stay at final alpha values (then maybe you won't have to add any additional event handlers).</p> <pre><code>var eff : Dissolve = new Dissolve(); eff.alphaFrom = ...; eff.alphaTo = 0; // set repeatCount &amp; repeatDelay if necessary eff.play([list of targets]); </code></pre> http://stackoverflow.com/questions/314858/how-to-make-text-line-break-in-flex-textarea/728055#728055 0 Answer by nevets1219 for how to make text line break in flex textarea nevets1219 2009-04-08T00:06:25Z 2009-04-08T06:08:51Z <p>It should work or at the very least <strong>&lt; br \></strong> (without the spaces before the "br") should work if you are using htmlText.</p> <p>I was using XML to fill in the TextArea and since I'm not entirely sure how to use HTML inside of XML (they mention that I should wrap it with CDATA tags) but I just did a simple </p> <pre><code>txt.replace("\\n", "&lt;br/&gt;"); </code></pre> <p>Perhaps there's a better way to go about it but this works out nicely.</p> <p>EDIT: I had a space after the "br"</p> http://stackoverflow.com/questions/727351/what-is-your-experience-with-gwt/728263#728263 5 Answer by nevets1219 for What is your experience with GWT? nevets1219 2009-04-08T02:12:36Z 2009-04-08T02:12:36Z <p>GWT is great because it handles many of the issues with different browser which if you aren't familiar with can be quite the hassle. It also facilitates creation of the GUI into a more programmatic manner which is also a big plus from a non-web designer POV. Take a look at GWT's <a href="http://gwt.google.com/samples/Showcase/Showcase.html?locale=en" rel="nofollow">Showcase</a> (which features live examples with code) to get an idea of the GUI that you can easily use (and extend). Another nice feature is that, you can easily internationalize your application (read <a href="http://code.google.com/docreader/#p=google-web-toolkit-doc-1-5&amp;s=google-web-toolkit-doc-1-5&amp;t=DevGuideStaticStringInternationalization" rel="nofollow">this</a> article for one way to do it). Also when Google compiles it they optimize the code which is a plus. Plenty of other libraries to add functionality easily as well.</p> <p>You basically do anything you could have done with HTML+JavaScript (Steve Reed's example shows you how to use JavaScript within Java). You can even port JavaScript library into Java and use them like you would any Java class.</p> <p>Overall, Google has done a pretty good job with it (it works wonderfully well in Eclipse and is documented). However it is the first web framework (?) that I've gotten serious into so I think it's pretty good and may be biased. Something to note though: the Hosted Mode browser is essentially Internet Explorer so you do need to compile and view it in different browser.</p> http://stackoverflow.com/questions/691809/using-svg-in-gwt/727147#727147 1 Answer by nevets1219 for Using SVG in GWT nevets1219 2009-04-07T18:57:57Z 2009-04-07T18:57:57Z <p>After playing around a bit, I've been most successful with using <a href="http://raphaeljs.com/" rel="nofollow">Raphaël</a> (which handles cross-browser compatibility) though I suspect anything along those lines would work just fine. Basically I do the following in <strong>JavaScript</strong>:</p> <pre><code>var r = Raphael("someID", WND_WIDTH, WND_HEIGHT); // additional configuration and setup if needed.... </code></pre> <p>Then I would do the following in <strong>GWT</strong>:</p> <pre><code>public native JavaScriptObject getRaphael() /*-{ return $wnd.r; }-*/; // I now have access to the JavaScript object and could do the following: public native void drawCircle(JavaScriptObject obj, int x, int y, int r) /*-{ obj.circle(x, y, r); }-*/; </code></pre> <p>I've also been reading around and it seems that porting Raphaël into GWT (this <a href="http://googlewebtoolkit.blogspot.com/2008/08/getting-to-really-know-gwt-part-2.html" rel="nofollow">article</a> is a good read) will not only increase performance (as per some post I read on Google Groups but can't find at the moment - they mentioned the compiler does quite a bit of work) but also facilitate coding &amp; debugging.</p> <p>So I accomplished my goal of being able to manipulate the SVG directly (somewhat until I port Raphaël into Java or at least create wrappers). I have yet to look seriously into the Google Visualization API but I suspect it might work just as well but I'm not sure if it is robust enough for my needs.</p> <p>An important thing I believe I was missing as stated on Raphaël's site was the following:</p> <blockquote> <p>This means every graphical object you create is also a DOM object, so you can attach JavaScript event handlers or modify them later.</p> </blockquote> http://stackoverflow.com/questions/718371/do-you-wear-computer-glasses-do-they-work-are-they-worth-the-extra-cash/718573#718573 0 Answer by nevets1219 for Do you wear computer glasses? Do they work? Are they worth the extra cash? nevets1219 2009-04-05T08:23:23Z 2009-04-05T08:23:23Z <p>I personally don't have "computer glasses", just regular glasses. There are some things you can consider doing before thinking about computer glasses.</p> <ol> <li>Lower the brightness on your monitor. Most monitor comes with different modes like: Text, Entertainment, Internet, Custom, etc. I typically set it on Text which really helps when working on the computer for long duration.</li> <li>Take a short break every once in a while. They suggest once every hour for 15 minutes but that might not be exactly doable sometimes so exercise some judgment and at least take one every couple of hours.</li> <li>Eye exercises like the ones listed by <a href="http://lifehacker.com/400302/eyedefender-combats-eyestrain-repetitive-stress-injury" rel="nofollow">LifeHacker</a> (and <a href="http://lifehacker.com/170280/how-to-exercise-your-eyes" rel="nofollow">here</a>). Something I do differently is I sometimes take a towel and run it through warm water and place it over my eyes lightly which this really helps. Be careful not to use hot water or apply to much pressure to your eye.</li> <li>As mentioned by others, blinking is important. Try to consciously remind yourself every so often to blink. Maybe a sticky note on your monitor will help you remind yourself.</li> <li>Assortment of advices from doctor and online.</li> </ol> <p>I've worn glasses pretty much most of my life and so I've grown rather accustomed to it but incorrect prescription can be harmful to your eyes but I've never felt that my regular glasses were inadequate for long-term use in front of the monitor.</p> http://stackoverflow.com/questions/715947/flex-wipe-state-transitions/715954#715954 0 Answer by nevets1219 for Flex Wipe State Transitions? nevets1219 2009-04-03T22:28:39Z 2009-04-04T00:23:40Z <p>On <a href="http://www.adobe.com/devnet/flex/quickstart/defining%5Fstate%5Ftransitions/" rel="nofollow">Adobe's site</a>, they mention you should use the and set the 'fromState' and 'toState' (you may use '*' to define the states). I'm assuming that your 2 simple canvas components are each in its own state? If so once you set the transition, it should be able to play out your effect. Also the linked site mentions that effects can be played in sequence or in parallel which may be needed to get the effect you want.</p> <p><strong>EDIT:</strong></p> <p>I did a small test and this was what I came up with. It seems to work in my tests as both canvas were animated. I'm assuming you are using setCurrentState("newState", <strong>true</strong>). I hope this is what you are asking for.</p> <pre><code>&lt;mx:transitions&gt; &lt;mx:Transition fromState="FirstState" toState="SecondState"&gt; &lt;mx:Parallel&gt; &lt;mx:WipeLeft target="{CanvasA}" duration="300"/&gt; &lt;mx:WipeRight target="{CanvasB}" duration="300"/&gt; &lt;/mx:Parallel&gt; &lt;/mx:Transition&gt; &lt;/mx:transitions&gt; </code></pre> <p><strong>Further EDIT:</strong> <a href="http://livedocs.adobe.com/flex/3/html/help.html?content=transitions%5F1.html" rel="nofollow">This</a> may be useful as well. I think what you'll need to do is, have both canvas be in one of the state and then execute it. Perhaps you'll need to re-arrange your states a little so that both canvas are in the one state which at the moment I assume you have kept them in separate states.</p> http://stackoverflow.com/questions/707354/calculating-dictionary-length-in-flex/707471#707471 0 Answer by nevets1219 for Calculating Dictionary length in Flex nevets1219 2009-04-01T21:48:03Z 2009-04-01T21:48:03Z <p>You can use <a href="http://livedocs.adobe.com/flex/3/html/help.html?content=10%5FLists%5Fof%5Fdata%5F4.html" rel="nofollow">associative arrays</a> instead because I don't think it's possible to check the length of a Dictionary object. You could however extend the Dictionary class and add that functionality and override the corresponding methods.</p> <p>Alternatively, you could loop through it each time to get the length which isn't really a good idea but is available.</p> <pre><code>var d:Dictionary = new Dictionary(); d["hi"] = "you" d["a"] = "b" for (var obj:Object in d) { trace(obj); } // Prints "hi" and "a" </code></pre> <p>You can also look <a href="http://www.java2s.com/Code/Flash-Flex-ActionScript/Class/CallsetPropertyIsEnumerableindynamicobject.htm" rel="nofollow">here</a> for information on using the "setPropertyIsEnumerable" but I believe that's more useful for objects than it is for Dictionary.</p> http://stackoverflow.com/questions/704120/what-searching-algorithm-concept-is-used-in-google/704151#704151 0 Answer by nevets1219 for What searching algorithm/concept is used in Google? nevets1219 2009-04-01T05:18:45Z 2009-04-01T05:18:45Z <p><a href="http://en.wikipedia.org/wiki/Inverted%5Findex" rel="nofollow">Inverted index</a> and <a href="http://en.wikipedia.org/wiki/MapReduce" rel="nofollow">MapReduce</a> is the basics of most search engines (I believe). You create an index on the content and run queries against that index to display relevance. Google however does much more than just a simple index of where each word occurs, they also do how many times it appeared, where it appears, where it appears in relation to other words, the ordering, etc. Another simple concept that's used is "stop words" which may include things like "and", "the", and so on (basically "simple" words that occur often and generally not the focus of a query). In addition, they employ things like Page Rank (mentioned by TStamper) to order pages by relevance and importance.</p> <p>MapReduce is basically taking one job and dividing it into smaller jobs and letting those smaller jobs run on many systems (in parts for scalability and in parts for speed). If I recall correctly, Google was able to make use of "average" computers to distribute jobs to instead of server-grade computers. Since the processing capability of one computer is reaching a peak, many technology are heading towards cloud computing where a job is done by many physical machines.</p> <p>I'm not sure how much searching Google does, it's more accurately crawling. The difference lies in that they just start at specific points and crawl to anything reachable and repeat until they hit some sort of dead-end.</p> http://stackoverflow.com/questions/704039/which-is-best-site-for-flash-or-flex/704074#704074 0 Answer by nevets1219 for which is best site for flash or flex ? nevets1219 2009-04-01T04:30:22Z 2009-04-01T04:30:22Z <p><a href="http://blog.flexexamples.com/" rel="nofollow">Flex Example</a> is a pretty good resource and the <a href="http://www.adobe.com/support/documentation/en/flex/" rel="nofollow">official site</a> (and its <a href="http://livedocs.adobe.com/flex/3/langref/index.html" rel="nofollow">doc</a> which has an example on most of their components). Actually learning Flex/ActionScript is not all that hard as long as you are willing to play around with the different options (assuming you are already familiar with programming). Some topics may be a bit weird at first but the video training that jerebear linked does a great job of laying out the foundation.</p> http://stackoverflow.com/questions/700205/what-is-your-best-friend-as-a-programmer/703442#703442 0 Answer by nevets1219 for What is your "best friend" as a programmer? nevets1219 2009-03-31T23:10:38Z 2009-03-31T23:10:38Z <p>Internet is probably easily one of the best tool though it can be a double-edged sword as you shouldn't refer to it for every problem. Sleep (bed?) is also pretty useful or any time (?) away from the computer really helps in seeing a new perspective.</p> http://stackoverflow.com/questions/699519/the-best-500-word-or-less-description-of-how-a-cpu-works/699728#699728 0 Answer by nevets1219 for The best 500 word (or less) description of how a CPU works? nevets1219 2009-03-31T01:43:34Z 2009-03-31T01:43:34Z <p>I think the <a href="http://en.wikipedia.org/wiki/MIPS%5Farchitecture" rel="nofollow">MIPS</a> CPU is relatively simple enough to go through. Wikipedia's picture of the <a href="http://en.wikipedia.org/wiki/File:MIPS%5FArchitecture%5F%28Pipelined%29.svg" rel="nofollow">5 stages</a> may be overkill so you can try a smaller example like the ones <a href="http://www-inst.eecs.berkeley.edu/~cs61c/fa07/lecture/L26.pdf" rel="nofollow">here</a> (PDF, with more resources <a href="http://www-inst.eecs.berkeley.edu/~cs61c/fa07/Calendar.php" rel="nofollow">here</a>). Basically explain some basic assembly instructions, talk about the registers, describe the datapath, and other similar topics. Describe each topic using simple real-life example and maybe translate a simple high-level language into actual MIPS (there are tons of examples online) then walk them through the datapath. You can also get into the hardware details but I'm not much help there.</p> http://stackoverflow.com/questions/693498/what-subversion-clients-for-windows-are-there-that-do-not-need-installation/693526#693526 0 Answer by nevets1219 for What subversion clients for Windows are there that do not need installation? nevets1219 2009-03-28T21:06:30Z 2009-03-28T21:19:43Z <p>Alternative Two should be pretty sufficient. But both methods requires installing it to the USB device which I guess is similar to just copying onto it. I checked <a href="http://en.wikipedia.org/wiki/Comparison%5Fof%5FSubversion%5Fclients" rel="nofollow">Wikipedia</a> and there are some standalone listed there.</p> <p><hr /></p> <p>EDIT: SmartSVN, QSvn (portable version requires install), SyncrhoSVN (they have version which requires you to extract and run), etc. But is copy + run any different than installing to the USB?</p> <p><hr /></p> <p><strong>Alternative One</strong> Load Cygwin on the USB device, install SVN support and run it off of that. No GUI as far as I know nor have I tried to set one up (which I assume is more than possible) since I've had the luxury of using TortoiseSVN (requires install).</p> <p><strong>Alternative Two</strong> Install TortoiseSVN on a USB device and use if off of that. Has GUI interface for merging and diff. <a href="http://stackoverflow.com/questions/218904/how-do-i-automate-keeping-my-tortoisesvn-project-up-to-date">This</a> may be relevant to your interest. However, Google has some results indicting they are slow.</p> http://stackoverflow.com/questions/693374/tool-for-ripping-parts-of-dvd-to-flv-format/693391#693391 2 Answer by nevets1219 for Tool for ripping parts of DVD to FLV format? nevets1219 2009-03-28T19:39:30Z 2009-03-28T19:39:30Z <p><a href="http://www.mrbass.org/dvdrip/" rel="nofollow">DVDDecrypter</a> (ripping) and <a href="http://www.erightsoft.com/SUPER.html" rel="nofollow">SUPER</a> (converting) comes to mind. I've used both before but that was a while ago so I'm not sure if better tools exist but as far as I know, SUPER is still a great tool to convert between different formats though as a small warning, their site is a bit of a hassle to download from (depending on browser?) and DVDDecrypter is a bit old (and development has stopped).</p> http://stackoverflow.com/questions/654641/phpdocumentor-to-wiki/691373#691373 1 Answer by nevets1219 for phpDocumentor to wiki? nevets1219 2009-03-27T20:35:40Z 2009-03-27T20:35:40Z <p>According to the PHPDocumentor website and their <a href="http://manual.phpdoc.org/" rel="nofollow">documentation</a> HTML and XML output is possible. You can then import the XML using the built-in <a href="http://www.mediawiki.org/wiki/Manual:Importing%5FXML%5Fdumps" rel="nofollow">import</a> features of MediaWiki though you may want to export first to look at what the format of the XML is. They also mention that using XML to import large amounts of data can lead to timeouts and have an alternative which allows you to create SQL queries to insert the data. Also you'll probably need an extension for MediaWiki to show code (something like <a href="http://www.mediawiki.org/wiki/Extension:SyntaxHighlight%5FGeSHi" rel="nofollow">SyntaxHighlight GeSHi</a>).</p> <p>All this doesn't really explain how to convert the output of PHPDocumentor into something usable with MediaWiki (ie using Wiki syntax). Most likely you'll be using scripts to convert one syntax to the other. It looks like creating your own output format via PHPDocumentor is the easiest way (though outputting as XML:DocBook may work).</p> http://stackoverflow.com/questions/684713/identifying-2-same-images-using-java/684738#684738 2 Answer by nevets1219 for Identifying 2 same images using Java nevets1219 2009-03-26T06:40:31Z 2009-03-26T06:40:31Z <p>You could also generate a MD5 signature of the file and ignore duplicate entries. Won't help you find similar images though.</p> http://stackoverflow.com/questions/691809/using-svg-in-gwt/727147#727147 Comment by nevets1219 on Using SVG in GWT nevets1219 2009-08-13T01:49:54Z 2009-08-13T01:49:54Z I'm not porting it but at the time, it was a consideration. http://stackoverflow.com/questions/914715/python-looping-through-all-but-the-last-item-of-a-list/914733#914733 Comment by nevets1219 on Python: Looping through all but the last item of a list nevets1219 2009-05-27T09:27:57Z 2009-05-27T09:27:57Z I believe an &quot;else&quot; statement will allow you to handle what happens after the loop just don't forget to set x to the last element. http://stackoverflow.com/questions/899767/how-to-prevent-hackers-from-scraping-our-database/899934#899934 Comment by nevets1219 on How to prevent hackers from scraping our database? nevets1219 2009-05-22T20:51:11Z 2009-05-22T20:51:11Z Wouldn't they just set an appropriate delay in how often they gather data? http://stackoverflow.com/questions/895911/how-many-asterisks-should-i-use-when-declaring-a-pointer-to-an-array-of-c-strings/895930#895930 Comment by nevets1219 on How many asterisks should I use when declaring a pointer to an array of C-strings? nevets1219 2009-05-22T00:31:23Z 2009-05-22T00:31:23Z You should also note that you can do &quot;jagged array&quot; (I think that's the term). So something like {[1, 2, 3], [1, 2], [1, 2, 3, 4, 5]}! http://stackoverflow.com/questions/691809/using-svg-in-gwt/864505#864505 Comment by nevets1219 on Using SVG in GWT nevets1219 2009-05-14T20:49:52Z 2009-05-14T20:49:52Z I think in your first case, the variable 'rr' is local to that function, declare it globally and it should be fine (I hope). You could definitely declare the Raphael object within GWT, but I believe you'll need to tell GWT where the JS library is located. I don't believe including it within the HTML file will be enough but perhaps someone with more experience on it could tell you for sure. http://stackoverflow.com/questions/835924/how-do-i-protect-the-trunk-from-hapless-newbies/835957#835957 Comment by nevets1219 on How do I protect the trunk from hapless newbies? nevets1219 2009-05-07T17:53:35Z 2009-05-07T17:53:35Z The right solution is probably a combination of what's been suggested by everyone. I do think that at the beginning using code review can be more helpful (albeit a more time consuming process). Definitely get the developer into the testing process so they can be more mindful of possible issues. http://stackoverflow.com/questions/791645/styling-uitextfield/791795#791795 Comment by nevets1219 on Styling UITextField nevets1219 2009-04-28T00:46:12Z 2009-04-28T00:46:12Z OK, I described what I hope is my complete scenario. The new way that you have there is what I would ideally like to do. I however, have failed to implement that method because I'm unable to add a TextField (hence the use of UITextField). The issues can be summarized into: failure to add a component, failure to display the component, and/or failure to get the correct width of component. I wish I could vote you up more for putting so much effort into this. http://stackoverflow.com/questions/791645/styling-uitextfield/791795#791795 Comment by nevets1219 on Styling UITextField nevets1219 2009-04-26T23:21:34Z 2009-04-26T23:21:34Z +1 It is a bit easier but I'm still using HTML to define the style of the component which I would like to get away from. Do you know if this is the only way to style the component? Basically, I want to just do textField.setStyle('fontSize', 20) and expect that every time I change the text, I wouldn't need to specify the HTML to go with it. http://stackoverflow.com/questions/691809/using-svg-in-gwt Comment by nevets1219 on Using SVG in GWT nevets1219 2009-04-26T20:13:51Z 2009-04-26T20:13:51Z Please refer to my 2nd EDIT. Message passing is possible, I've just done so recently in order to display some debugging output. Also GWT like Felix Leong mentioned is just &quot;IE&quot; so some issues was there which can be solved by compiling. http://stackoverflow.com/questions/773253/what-sort-algorithm-provides-the-best-worst-case-performance/773273#773273 Comment by nevets1219 on What sort algorithm provides the best worst-case performance? nevets1219 2009-04-21T15:50:39Z 2009-04-21T15:50:39Z Visualizing sort algorithm is a wonderful way to experiencing different algorithms but it's also good to note something like <a href="http://www.hatfulofhollow.com/posts/code/visualisingsorting/index.html" rel="nofollow">hatfulofhollow.com/posts/code/&hellip;</a> http://stackoverflow.com/questions/770744/what-commands-must-i-learn-to-become-an-effective-linux-shell-script-programmer/770775#770775 Comment by nevets1219 on What commands must I learn to become an effective Linux shell script programmer? nevets1219 2009-04-21T06:09:31Z 2009-04-21T06:09:31Z I don't think it is that we forget the basics, it's sometimes so obvious we don't mention it. Sometimes you just do it without thought and assume everyone would as well. http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185106#185106 Comment by nevets1219 on What is the best comment in source code you have ever encountered? nevets1219 2009-04-19T04:06:55Z 2009-04-19T04:06:55Z I still remember being taught CS in high school, where our stupid questions were answered with &quot;Magic!&quot; and the most sinister smile. http://stackoverflow.com/questions/746962/flex-actionscript-truncatetofit-on-label-component/762962#762962 Comment by nevets1219 on Flex/Actionscript truncateToFit on label component nevets1219 2009-04-18T19:56:00Z 2009-04-18T19:56:00Z If you don't mind sharing the font, others can try to figure out if the issue is specific to your end or not but I know for sure this method works (at least with these two fonts that I'm using). You can probably work around the issue by manually coding the behavior in (I think). http://stackoverflow.com/questions/746962/flex-actionscript-truncatetofit-on-label-component Comment by nevets1219 on Flex/Actionscript truncateToFit on label component nevets1219 2009-04-16T05:21:55Z 2009-04-16T05:21:55Z Does the example code provided not work on your side? A straight copy-paste of the above code works just as it should. Perhaps expand on your particular scenario more? http://stackoverflow.com/questions/746604/bind-pointer-to-member-operators-in-c Comment by nevets1219 on Bind pointer to member operators in C++ nevets1219 2009-04-14T07:01:37Z 2009-04-14T07:01:37Z Is <a href="http://stackoverflow.com/questions/654853/why-would-one-use-function-pointers-to-member-method-in-c" rel="nofollow" title="why would one use function pointers to member method in c">stackoverflow.com/questions/654853/&hellip;</a> what you are looking for?