User maclema - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T05:54:48Z http://stackoverflow.com/feeds/user/22 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/240163/corrupt-form-data-premature-ending-resolved 0 Corrupt form data: premature ending (Resolved) maclema 2008-10-27T14:53:06Z 2009-11-23T12:03:15Z <p>I am trying to upload files using the FileReference class. Files >2MB all work correctly but files &lt;2MB cause this error: "java.io.IOException: Corrupt form data: premature ending"</p> <p>On the server I am using the com.oreilly.servlet package to handle the request.</p> <p>I have used this package many times to successfully handle file uploads from flex, but for some reason, now I am having this problem.</p> <p>Any ideas?</p> <p>Here is the stack trace for some more info:</p> <pre><code>java.io.IOException: Corrupt form data: premature ending at com.oreilly.servlet.multipart.MultipartParser.&lt;init&gt;(MultipartParser.java:205) at com.oreilly.servlet.MultipartRequest.&lt;init&gt;(MultipartRequest.java:222) at com.oreilly.servlet.MultipartRequest.&lt;init&gt;(MultipartRequest.java:173) at com.mydomain.FileUploadServlet.doPost(FileUploadServlet.java:46) at javax.servlet.http.HttpServlet.service(HttpServlet.java:710) at javax.servlet.http.HttpServlet.service(HttpServlet.java:803) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188) at org.apache.struts2.dispatcher.ActionContextCleanUp.doFilter(ActionContextCleanUp.java:99) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:215) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188) at org.apache.struts2.dispatcher.FilterDispatcher.doFilter(FilterDispatcher.java:414) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:215) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188) </code></pre> <p><hr /></p> <p><strong>Update:</strong></p> <p>It seems that there is a bug that exists when using com.orielly.servlet.MultipartRequest class and the org.apache.struts2.dispatcher.ActionContextCleanUp filter together. This is what was causing small file uploads to fail.</p> http://stackoverflow.com/questions/1678441/multiple-text-areas-with-different-rotation-values-causes-borders-to-be-very-very/1708636#1708636 1 Answer by maclema for Multiple text areas with different rotation values causes borders to be very very wrong maclema 2009-11-10T15:06:15Z 2009-11-10T15:06:15Z <p>Here is a class that extends TextArea and overrides the adjustFocusRect method to fix this bug.</p> <pre><code>package { import flash.display.DisplayObject; import flash.geom.Point; import mx.controls.TextArea; import mx.core.IFlexDisplayObject; import mx.core.IInvalidating; import mx.core.IProgrammaticSkin; import mx.core.mx_internal; import mx.managers.IFocusManager; import mx.styles.IStyleClient; use namespace mx_internal; public class TextArea2 extends TextArea { override protected function adjustFocusRect(obj:DisplayObject = null):void { super.adjustFocusRect(obj); var focusObj:IFlexDisplayObject = IFlexDisplayObject(getFocusObject()); if (focusObj) { if ( !rotation ) { DisplayObject(focusObj).rotation = 0; } } } } } </code></pre> http://stackoverflow.com/questions/1706935/flex-json-ignore-certain-properties/1708520#1708520 1 Answer by maclema for Flex JSON: ignore certain properties? maclema 2009-11-10T14:51:47Z 2009-11-10T14:51:47Z <p>If you want to exclude a property from serialization you can use the [Transient] meta tag.</p> <pre><code>[Transient] public var someVar:String; </code></pre> http://stackoverflow.com/questions/1707923/flex-remove-ok-button-from-alert-show/1708503#1708503 1 Answer by maclema for Flex: Remove OK Button from Alert.Show? maclema 2009-11-10T14:49:50Z 2009-11-10T14:49:50Z <p>This should work too:</p> <pre><code>import mx.core.mx_internal; use namespace mx_internal; private var theAlert:Alert; public function showAlert():void { theAlert = Alert.show("Saving Changes...", "", Alert.OK); theAlert.mx_internal::alertForm.removeChild( theAlert.mx_internal::alertForm.mx_internal::buttons[0]); } public function hideAlert():void { PopUpManager.removePopUp(theAlert); } </code></pre> http://stackoverflow.com/questions/1633468/flex-datagrid-row-group-headers 1 Flex DataGrid, Row Group Headers. maclema 2009-10-27T20:29:18Z 2009-11-04T00:13:08Z <p>I am trying to extend the DataGrid to allow headers for different groups of rows. However, I cannot figure out which method to extend from DataGrid that would allow me to accomplish this.</p> <p>I do not want the headers to be included in the dataProvider, only the rows. I want to specify indexes to insert the headers at using a property of the custom datagrid. </p> <p>Here is a quick photoshop showing what I am trying to do: <img src="http://www.maclema.com/groupheaders.png" alt="Example" /> </p> <p>Is there any custom component already built that will do this?</p> <p>If not, does anyone know how I would go about doing this?</p> <p>Thanks,</p> <p>Matt</p> http://stackoverflow.com/questions/1644976/add-properties-file-to-output-folder-of-flex-project/1646062#1646062 0 Answer by maclema for Add .properties file to output folder of Flex project maclema 2009-10-29T19:38:05Z 2009-10-29T19:38:05Z <p>In the Project Properties, under Flex Compiler there is a checkbox that allows you to "Copy non-embedded files to output folder".</p> <p>That should work.</p> http://stackoverflow.com/questions/1609041/blazeds-destination-destroy 0 BlazeDS Destination destroy()? maclema 2009-10-22T18:13:47Z 2009-10-22T19:11:56Z <p>I have a BlazeDS destination and the scope is set to request. Is there a way to get BlazeDS to call destroy() when the request is complete? Is there another way to know when the request is complete?</p> <p>I know I can use finalize(), but that is only called when garbage collection occurs.</p> <p>Thanks, Matt</p> http://stackoverflow.com/questions/1609041/blazeds-destination-destroy/1609331#1609331 0 Answer by maclema for BlazeDS Destination destroy()? maclema 2009-10-22T19:05:44Z 2009-10-22T19:11:56Z <p>After browsing through the BlazeDS source code I figured out how to accomplish this by using a custom adapter. Here is the source.</p> <pre><code>package mypackage.adapters; import java.lang.reflect.Method; import java.util.Vector; import flex.messaging.services.remoting.RemotingDestination; import flex.messaging.services.remoting.adapters.JavaAdapter; import flex.messaging.util.MethodMatcher; public class MyAdapter extends JavaAdapter { protected void saveInstance(Object instance) { try { MethodMatcher methodMatcher = ((RemotingDestination)getDestination()).getMethodMatcher(); Method method = methodMatcher.getMethod(instance.getClass(), "destroy", new Vector()); if ( method != null ) { method.invoke(instance); } } catch ( Exception ex ) { ex.printStackTrace(System.out); } super.saveInstance(instance); } } </code></pre> http://stackoverflow.com/questions/24/throw-error-in-mysql-trigger 1 Throw Error In MySQL Trigger maclema 2008-08-01T12:12:19Z 2009-09-22T02:17:56Z <p>If I have a trigger BEFORE UPDATE on a table. How can I throw an error that prevents the update on that table?</p> http://stackoverflow.com/questions/1455144/circular-dependencies-in-flex-libraries/1455515#1455515 0 Answer by maclema for Circular dependencies in flex libraries maclema 2009-09-21T16:44:50Z 2009-09-21T16:44:50Z <p>Not sure if this is the same issue, but it may help: <a href="http://www.adobe.com/devnet/flex/articles/link%5Fload%5F07.html" rel="nofollow">http://www.adobe.com/devnet/flex/articles/link%5Fload%5F07.html</a></p> http://stackoverflow.com/questions/1343327/flex-3-alert-text-doesnt-stretch-to-fill-space/1347234#1347234 0 Answer by maclema for Flex 3 Alert text doesn't stretch to fill space? maclema 2009-08-28T14:08:58Z 2009-08-28T14:08:58Z <p>Quick and dirty solution.</p> <pre><code>import mx.core.mx_internal; use namespace mx_internal; private function showAlert():void { var myAlert:Alert = Alert.show("The package you have selected includes a feature(s) you’ve already selected. \nWe have removed the individual features for you."); myAlert.height = 150*2; myAlert.width = 350*2; callLater(function():void { var textField:IUITextField = IUITextField(myAlert.mx_internal::alertForm.mx_internal::textField); var textFormat:TextFormat = new TextFormat(); textFormat.align = "center"; textField.width = myAlert.width; textField.x = 0; textField.setTextFormat(textFormat); }); } </code></pre> http://stackoverflow.com/questions/240163/corrupt-form-data-premature-ending-resolved/1346447#1346447 0 Answer by maclema for Corrupt form data: premature ending (Resolved) maclema 2009-08-28T11:33:54Z 2009-08-28T11:33:54Z <p>It seems that there is a bug that exists when using com.orielly.servlet.MultipartRequest class and the org.apache.struts2.dispatcher.ActionContextCleanUp filter together. This is what was causing small file uploads to fail.</p> http://stackoverflow.com/questions/1346387/adding-dynamic-controls-to-tabbar-flex-3-air-as3/1346412#1346412 1 Answer by maclema for Adding dynamic controls to TabBar,Flex 3 Air As3 maclema 2009-08-28T11:24:21Z 2009-08-28T11:24:21Z <p>Try setting the creationPolicy="all".</p> <p>For more info: <a href="http://livedocs.adobe.com/flex/3/langref/mx/core/Container.html#creationPolicy" rel="nofollow">http://livedocs.adobe.com/flex/3/langref/mx/core/Container.html#creationPolicy</a></p> http://stackoverflow.com/questions/1333912/how-can-i-specify-which-properties-of-a-flex-object-are-encoded-in-xml/1341596#1341596 1 Answer by maclema for How can I specify which properties of a flex object are encoded in XML? maclema 2009-08-27T14:47:16Z 2009-08-27T14:47:16Z <p>Not 100% sure, but try adding the [Transient] metadata tag to any properties you do not want encoded.</p> <p>Ex:</p> <pre><code>[Transient] public var doNotEncodeThis:String; </code></pre> http://stackoverflow.com/questions/1334749/custom-itemrender-in-datagrid-with-datatip/1341580#1341580 -1 Answer by maclema for Custom Itemrender in Datagrid with Datatip maclema 2009-08-27T14:44:55Z 2009-08-27T14:44:55Z <p>Just off the top of my head, maybe make your custom item renderer extend DataGridColumn. This will give your item renderer all the functionality of a regular column.</p> http://stackoverflow.com/questions/1338152/detecting-different-quit-options-in-air-application-on-mac/1341543#1341543 1 Answer by maclema for Detecting different quit options in AIR application on Mac maclema 2009-08-27T14:38:25Z 2009-08-27T14:38:25Z <p>Try this, I am sure there must be a better way of handling this but this has worked for me.</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="onCreationComplete()"&gt; &lt;mx:Script&gt; &lt;![CDATA[ import mx.core.Application; import mx.events.AIREvent; import mx.core.Window; private function onCreationComplete():void { addMacSupport(); } private var macsupport_allowExit:Boolean = false; private function addMacSupport():void { if ( Capabilities.os.indexOf("Mac") == 0 ) { //open a hidden window that will prevent the application from //exiting when the user presses Cmd+W var win:Window = new Window(); win.visible = false; win.open(false); //add a closing listener on the hidden window, this event will only //be fired when the user pressed Cmd+Q or selects quit from the menu //then set macsupport_allowExit to true win.addEventListener(Event.CLOSING, function(e:Event):void { macsupport_allowExit = true; }); //add an event listener to this window on closing addEventListener(Event.CLOSING, function(e:Event):void { //always preventDefault e.preventDefault(); //wait one frame, then check the macsupport_allowExit variable //if it is true, we nedd to exit the app, otherwise just hide //the app window callLater(function():void { if ( macsupport_allowExit ) { nativeApplication.exit(); } else { nativeWindow.visible = false; } }); }); //add an event listener for INVOKE to show our main app window //when the dock icon is clicked. addEventListener(InvokeEvent.INVOKE, function(e:InvokeEvent):void { if ( nativeWindow &amp;&amp; !nativeWindow.visible ) { nativeWindow.visible = true; nativeWindow.activate(); } }); } } ]]&gt; &lt;/mx:Script&gt; &lt;/mx:WindowedApplication&gt; </code></pre> http://stackoverflow.com/questions/1341224/mysql-ordering-table-as-desired-before-adding-primary-key-column/1341250#1341250 1 Answer by maclema for mySQL - Ordering table as desired, before Adding Primary Key column maclema 2009-08-27T13:51:36Z 2009-08-27T13:51:36Z <p>One way would be to create a new table with the primary key, then do an INSERT INTO newTable SELECT * FROM oldTable ORDER BY parentID. Then you can drop the old table, and rename the newTable.</p> http://stackoverflow.com/questions/1266726/how-can-i-get-a-flex-container-to-scroll-to-the-last-position/1303001#1303001 0 Answer by maclema for How can I get a Flex container to scroll to the last position? maclema 2009-08-19T22:38:30Z 2009-08-19T22:38:30Z <p>This should work for you.</p> <pre><code> &lt;mx:Script&gt; &lt;![CDATA[ protected function addChat():void { collection.addItem(new String(input.text)); callLater(function() { list.verticalScrollPosition = list.maxVerticalScrollPosition; }); input.text = ""; } ]]&gt; &lt;/mx:Script&gt; </code></pre> http://stackoverflow.com/questions/1276667/file-flex-air-exec/1302982#1302982 0 Answer by maclema for file flex air exec maclema 2009-08-19T22:34:11Z 2009-08-19T22:34:11Z <p>It is not currently possible to open an executable from air.</p> http://stackoverflow.com/questions/1289934/flex-datagrid-column-width/1302968#1302968 2 Answer by maclema for Flex DataGrid Column Width maclema 2009-08-19T22:29:18Z 2009-08-19T22:29:18Z <p>Is you horizontalScrollPolicy set to false on the datagrid?</p> <p>"If the DataGrid's horizontalScrollPolicy property is false, all visible columns must fit in the displayable area, and the DataGrid will not always honor the width of the columns if the total width of the columns is too small or too large for the displayable area." </p> <p><a href="http://livedocs.adobe.com/flex/3/langref/mx/controls/dataGridClasses/DataGridColumn.html#width" rel="nofollow">http://livedocs.adobe.com/flex/3/langref/mx/controls/dataGridClasses/DataGridColumn.html#width</a></p> http://stackoverflow.com/questions/3163/actionscript-3-fastest-way-to-parse-yyyy-mm-dd-hhmmss-to-a-date-object 3 Actionscript 3 - Fastest way to parse yyyy-mm-dd hh:mm:ss to a Date object? maclema 2008-08-06T08:33:53Z 2009-08-03T09:06:56Z <p>I have been trying to find a really fast way to parse yyyy-mm-dd [hh:mm:ss] into a Date object. Here are the 3 ways I have tried doing it and the times it takes each method to parse 50,000 date time strings.</p> <p>Does anyone know any faster ways of doing this or tips to speed up the methods?</p> <p>castMethod1 takes 3673 ms <br> castMethod2 takes 3812 ms <br> castMethod3 takes 3931 ms</p> <pre><code>private function castMethod1(dateString:String):Date {<br> if ( dateString == null ) {<br> return null;<br> }<br><br> var year:int = int(dateString.substr(0,4));<br> var month:int = int(dateString.substr(5,2))-1;<br> var day:int = int(dateString.substr(8,2));<br><br> if ( year == 0 &amp;&amp; month == 0 &amp;&amp; day == 0 ) {<br> return null;<br> }<br><br> if ( dateString.length == 10 ) {<br> return new Date(year, month, day);<br> }<br><br> var hour:int = int(dateString.substr(11,2));<br> var minute:int = int(dateString.substr(14,2));<br> var second:int = int(dateString.substr(17,2));<br><br> return new Date(year, month, day, hour, minute, second);<br>}<br></code></pre> <p>-</p> <pre><code>private function castMethod2(dateString:String):Date {<br> if ( dateString == null ) {<br> return null;<br> }<br><br> if ( dateString.indexOf("0000-00-00") != -1 ) {<br> return null;<br> }<br><br> dateString = dateString.split("-").join("/");<br><br> return new Date(Date.parse( dateString ));<br>}<br></code></pre> <p>-</p> <pre><code>private function castMethod3(dateString:String):Date {<br> if ( dateString == null ) {<br> return null;<br> }<br><br> var mainParts:Array = dateString.split(" ");<br> var dateParts:Array = mainParts[0].split("-");<br><br> if ( Number(dateParts[0])+Number(dateParts[1])+Number(dateParts[2]) == 0 ) {<br> return null;<br> }<br><br> return new Date( Date.parse( dateParts.join("/")+(mainParts[1]?" "+mainParts[1]:" ") ) );<br>}<br></code></pre> http://stackoverflow.com/questions/1140652/tinymce-use-div-aligncenter-instead-of-div-styletext-align-center 0 TinyMCE use <div align="center"> instead of <div style="text-align: center">? maclema 2009-07-16T22:25:37Z 2009-07-16T22:37:40Z <p>I am using TinyMCE 3.2.5 and by default when you click the center align button it uses an inline style &lt; div style="text-align=center" >. I would like tinyMCE to use &lt; div align="center" > instead of the inline style.</p> <p>I know setting inline_styles: false in the configuration works. But I would like to use inline styles for everything but alignment.</p> <p>How would I go about changing this?</p> <p>Thanks,</p> <p>Matt</p> http://stackoverflow.com/questions/5982/how-do-i-get-rid-of-the-multiple-describetype-entries-warning 1 How do I get rid of the "multiple describeType entries" warning? maclema 2008-08-08T14:18:09Z 2009-07-10T15:30:23Z <p>Does anyone know why when using BindingUtils on the selectedItem property of a ComboBox you get the following warning? Any ideas how to resolve the issue?</p> <p>The binding still works properly, but it would be nice to get rid of the warning.</p> <pre><code>warning: multiple describeType entries for 'selectedItem' on type 'mx.controls::ComboBox':<br>&lt;accessor name="selectedItem" access="readwrite" type="Object" declaredBy="mx.controls::ComboBase"&gt;<br> &lt;metadata name="Bindable"&gt;<br> &lt;arg key="" value="valueCommit"/&gt;<br> &lt;/metadata&gt;<br> ...<br></code></pre> <p>Thanks,</p> <p>Matt</p> http://stackoverflow.com/questions/731932/how-can-i-get-a-mxtextarea-height-to-be-the-same-as-the-content/732111#732111 1 Answer by maclema for How can I get a mx:textarea height to be the same as the content maclema 2009-04-08T22:20:22Z 2009-04-09T19:21:12Z <p>If you extend Text, you can add a getter/setter that allows you to set the styleSheet of the underlying UITextField object.</p> <pre><code>package { import flash.events.Event; import flash.text.StyleSheet; import mx.controls.Text; import mx.core.mx_internal; use namespace mx_internal; public class StyledText extends Text { public function StyledText() { super(); } private var _styleSheet:StyleSheet = null; [Bindable("stylesheetChanged")] public function get styleSheet():StyleSheet { return _styleSheet; } public function set styleSheet(value:StyleSheet):void { _styleSheet = value; if ( textField ) { textField.styleSheet = _styleSheet; } dispatchEvent(new Event("stylesheetChanged")); } override protected function createChildren():void { super.createChildren(); //textField is created in the createChildren //method of the Label class if ( textField &amp;&amp; styleSheet ) { textField.styleSheet = _styleSheet; } } } } </code></pre> <p>Then you can use the component like so:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" xmlns:ns1="*" preinitialize="onInit()"&gt; &lt;mx:Script&gt; &lt;![CDATA[ public function onInit():void { var style:StyleSheet = new StyleSheet(); var aLink:Object = new Object(); aLink.color = "#0000FF"; var aHover:Object = new Object(); aHover.color = "#00FF00"; aHover.textDecoration = "underline"; style.setStyle( "a:hover", aHover ); style.setStyle( "a:link", aLink ); text.styleSheet = style; } ]]&gt; &lt;/mx:Script&gt; &lt;ns1:StyledText id="text" x="0" y="79"&gt; &lt;ns1:htmlText&gt; &lt;![CDATA[&lt;a href='event:http://www.adobe.com'&gt;Navigate to Adobe.com.&lt;/a&gt; this is testing nothing at all really]]&gt; &lt;/ns1:htmlText&gt; &lt;/ns1:StyledText&gt; &lt;/mx:Application&gt; </code></pre> http://stackoverflow.com/questions/731949/html-to-pdf-keeping-look-and-feel/732047#732047 0 Answer by maclema for HTML to PDF Keeping Look and Feel maclema 2009-04-08T21:59:40Z 2009-04-08T21:59:40Z <p>I have used <a href="http://pd4ml.com/index.htm" rel="nofollow">pd4ml</a> for a few things. It seems to work pretty well.</p> <p>Here is a list html tags/attributes that pd4ml supports: <a href="http://pd4ml.com/html.htm" rel="nofollow">http://pd4ml.com/html.htm</a></p> http://stackoverflow.com/questions/731810/can-someone-explain-the-following-javascript-code/731891#731891 9 Answer by maclema for Can someone explain the following javascript code? maclema 2009-04-08T21:15:43Z 2009-04-08T21:15:43Z <blockquote> <p>Can someone explain the following javascript code?</p> </blockquote> <pre><code>//Shorthand for document.getElementById function $(id) { return document.getElementById(id); } var ZebraTable = { bgcolor: '', classname: '', stripe: function(el) { //if the el cannot be found, return if (!$(el)) return; //get all the &lt;tr&gt; elements of the table var rows = $(el).getElementsByTagName('tr'); //for each &lt;tr&gt; element for (var i=1,len=rows.length;i&lt;len;i++) { //for every second row, set the className of the &lt;tr&gt; element to 'alt' if (i % 2 == 0) rows[i].className = 'alt'; //add a mouseOver event to change the row className when rolling over the &lt;tr&gt; element Event.add(rows[i],'mouseover',function() { ZebraTable.mouseover(this); }); //add a mouseOut event to revert the row className when rolling out of the &lt;tr&gt; element Event.add(rows[i],'mouseout',function() { ZebraTable.mouseout(this); }); } }, //the &lt;tr&gt; mouse over function mouseover: function(row) { //save the row's old background color in the ZebraTable.bgcolor variable this.bgcolor = row.style.backgroundColor; //save the row's className in the ZebraTable.classname variable this.classname = row.className; //add the 'over' class to the className property //addClassName is some other function that handles this addClassName(row,'over'); }, mouseout: function(row) { //remove the 'over' class form the className of the row removeClassName(row,'over'); //add the previous className that was stored in the ZebraTable.classname variable addClassName(row,this.classname); //set the background color back to the value that was stored in the ZebraTable.bgcolor variable row.style.backgroundColor = this.bgcolor; } } window.onload = function() { //once the page is loaded, "stripe" the "mytable" element ZebraTable.stripe('mytable'); } </code></pre> http://stackoverflow.com/questions/719987/actionscript-variable-assignment-without-reference/720182#720182 2 Answer by maclema for Actionscript - Variable Assignment without reference? maclema 2009-04-06T03:33:04Z 2009-04-06T03:33:04Z <pre><code>var newObj:Object = Object(ObjectUtil.copy(oldObj)); </code></pre> <p>"Copies the specified Object and returns a reference to the copy. The copy is made using a native serialization technique. This means that custom serialization will be respected during the copy.</p> <p>This method is designed for copying data objects, such as elements of a collection. It is not intended for copying a UIComponent object, such as a TextInput control. If you want to create copies of specific UIComponent objects, you can create a subclass of the component and implement a clone() method, or other method to perform the copy."</p> <p><a href="http://livedocs.adobe.com/flex/3/langref/mx/utils/ObjectUtil.html#copy%28%29" rel="nofollow">http://livedocs.adobe.com/flex/3/langref/mx/utils/ObjectUtil.html#copy()</a></p> http://stackoverflow.com/questions/41763/what-is-the-best-way-to-calculate-age-using-flex/542129#542129 1 Answer by maclema for What is the best way to calculate Age using Flex? maclema 2009-02-12T16:25:16Z 2009-02-12T16:25:16Z <p>Here is a little more complex calculation, this calculates age in years and months. Example: User is 3 years 2 months old.</p> <pre><code>private function calculateAge(dob:Date):String { var now:Date = new Date(); var ageDays:int = 0; var ageYears:int = 0; var ageRmdr:int = 0; var diff:Number = now.getTime()-dob.getTime(); ageDays = diff / 86400000; ageYears = Math.floor(ageDays / 365.24); ageRmdr = Math.floor( (ageDays - (ageYears*365.24)) / 30.4375 ); if ( ageRmdr == 12 ) { ageRmdr = 11; } return ageYears + " years " + ageRmdr + " months"; } </code></pre> http://stackoverflow.com/questions/15949/javatomcat-dying-databse-connection 2 Java+Tomcat, Dying databse connection? maclema 2008-08-19T10:17:24Z 2009-02-09T13:21:44Z <p>I have a tomcat instance setup but the database connection I have configured in context.xml keeps dying after periods of inactivity.</p> <p>When I check the logs I get the following error:</p> <p>com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: The last packet successfully received from the server was68051 seconds ago. The last packet sent successfully to the server was 68051 seconds ago, which is longer than the server configured value of 'wait_timeout'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property 'autoReconnect=true' to avoid this problem.</p> <p>Here is the configuration in context.xml:</p> <pre><code>&lt;Resource name="dataSourceName" auth="Container" type="javax.sql.DataSource" maxActive="100" maxIdle="30" maxWait="10000" username="username" password="********" removeAbandoned = "true" logAbandoned = "true" driverClassName="com.mysql.jdbc.Driver" url="jdbc:mysql://127.0.0.1:3306/databasename?autoReconnect=true&amp;amp;useEncoding=true&amp;amp;characterEncoding=UTF-8" /&gt; </code></pre> <p>I am using autoReconnect=ture like the error says to do, but the connection keeps dying. I have never seen this happen before.</p> <p>I have also verified that all database connections are being closed properly.</p> http://stackoverflow.com/questions/277327/algorithm-to-determine-if-a-component-is-fully-visible-in-flex/280876#280876 1 Answer by maclema for Algorithm to determine if a component is fully visible in Flex? maclema 2008-11-11T13:31:15Z 2008-11-11T13:31:15Z <p>here is a method for calculating if the component is within the bounds of the stage, it will not however tell you if the component is being hidden by another component, or if the component is being hidden because it is outside the bounds of another container.</p> <pre><code>public function isComponentWithinStage(c:UIComponent):Boolean { var tl:Point = c.localToGlobal(new Point(0, 0)); var br:Point = c.localToGlobal(new Point(c.width, c.height)); //are we off the left or top of stage? if ( tl.x &lt; 0 || tl.y &lt; 0 ) { return false; } var stage:Stage = Application.application.stage; //off the right or bottom of stage? if ( br.x &gt; stage.width || br.y &gt; stage.height ) { return false; } return true; } </code></pre> http://stackoverflow.com/questions/1644976/add-properties-file-to-output-folder-of-flex-project/1646062#1646062 Comment by maclema on Add .properties file to output folder of Flex project maclema 2009-10-29T20:17:03Z 2009-10-29T20:17:03Z Is the .properties file inside the src folder? http://stackoverflow.com/questions/1609041/blazeds-destination-destroy/1609331#1609331 Comment by maclema on BlazeDS Destination destroy()? maclema 2009-10-22T19:10:31Z 2009-10-22T19:10:31Z Cannot mark this as an answer for 2 days :( http://stackoverflow.com/questions/1609041/blazeds-destination-destroy/1609175#1609175 Comment by maclema on BlazeDS Destination destroy()? maclema 2009-10-22T18:57:54Z 2009-10-22T18:57:54Z I have many handlers in the service, but I always want destroy() to be called. http://stackoverflow.com/questions/1343327/flex-3-alert-text-doesnt-stretch-to-fill-space Comment by maclema on Flex 3 Alert text doesn't stretch to fill space? maclema 2009-08-28T13:58:35Z 2009-08-28T13:58:35Z Do you have any special css for the Alert? http://stackoverflow.com/questions/1346387/adding-dynamic-controls-to-tabbar-flex-3-air-as3/1346412#1346412 Comment by maclema on Adding dynamic controls to TabBar,Flex 3 Air As3 maclema 2009-08-28T13:53:44Z 2009-08-28T13:53:44Z If that is the answer please click the check mark on the left, that way others can see that the question has been answered. http://stackoverflow.com/questions/1276425/file-flex-air-exec Comment by maclema on file flex air exec maclema 2009-08-28T11:28:31Z 2009-08-28T11:28:31Z you have already asked this question 5 times http://stackoverflow.com/questions/1334749/custom-itemrender-in-datagrid-with-datatip/1341580#1341580 Comment by maclema on Custom Itemrender in Datagrid with Datatip maclema 2009-08-28T08:16:59Z 2009-08-28T08:16:59Z Ah yes, that is correct. Try looking into the DataGridItemRenderer class, in the validateProperties method there is code that handles the dataTip's. You may be able to implement this in your custom renderer. http://stackoverflow.com/questions/1333912/how-can-i-specify-which-properties-of-a-flex-object-are-encoded-in-xml/1341596#1341596 Comment by maclema on How can I specify which properties of a flex object are encoded in XML? maclema 2009-08-27T14:49:46Z 2009-08-27T14:49:46Z Please note, if you are using BlazeDS this will also prevent that property from being sent back to the server. http://stackoverflow.com/questions/622178/how-can-i-drag-and-drop-canvases-within-a-vbox-to-re-order/627219#627219 Comment by maclema on How can I drag and drop canvases within a Vbox to re-order? maclema 2009-07-21T13:57:47Z 2009-07-21T13:57:47Z I think it is actually setChildIndex(child:DisplayObject, index:int):void http://stackoverflow.com/questions/1140652/tinymce-use-div-aligncenter-instead-of-div-styletext-align-center Comment by maclema on TinyMCE use <div align="center"> instead of <div style="text-align: center">? maclema 2009-07-17T15:11:42Z 2009-07-17T15:11:42Z I am using the YUI resize library inside tinyMCE and it does not function correctly when using text-align:center. http://stackoverflow.com/questions/731932/how-can-i-get-a-mxtextarea-height-to-be-the-same-as-the-content/732111#732111 Comment by maclema on How can I get a mx:textarea height to be the same as the content maclema 2009-04-27T00:58:42Z 2009-04-27T00:58:42Z Are you still using the &quot;override protected function initializationComplete():void&quot;? If so maybe try the createChildren(). Maybe also try adding invalidateDisplayList() in the stylesheet setter. http://stackoverflow.com/questions/731932/how-can-i-get-a-mxtextarea-height-to-be-the-same-as-the-content/732111#732111 Comment by maclema on How can I get a mx:textarea height to be the same as the content maclema 2009-04-09T19:21:34Z 2009-04-09T19:21:34Z I updated the code to handle textField being null. Try it out, let me know if it works.