User maclema - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T05:54:48Zhttp://stackoverflow.com/feeds/user/22http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/240163/corrupt-form-data-premature-ending-resolved0Corrupt form data: premature ending (Resolved)maclema2008-10-27T14:53:06Z2009-11-23T12:03:15Z
<p>I am trying to upload files using the FileReference class. Files >2MB all work correctly but files <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.<init>(MultipartParser.java:205)
at com.oreilly.servlet.MultipartRequest.<init>(MultipartRequest.java:222)
at com.oreilly.servlet.MultipartRequest.<init>(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#17086361Answer by maclema for Multiple text areas with different rotation values causes borders to be very very wrongmaclema2009-11-10T15:06:15Z2009-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#17085201Answer by maclema for Flex JSON: ignore certain properties?maclema2009-11-10T14:51:47Z2009-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#17085031Answer by maclema for Flex: Remove OK Button from Alert.Show?maclema2009-11-10T14:49:50Z2009-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-headers1Flex DataGrid, Row Group Headers.maclema2009-10-27T20:29:18Z2009-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#16460620Answer by maclema for Add .properties file to output folder of Flex projectmaclema2009-10-29T19:38:05Z2009-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-destroy0BlazeDS Destination destroy()?maclema2009-10-22T18:13:47Z2009-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#16093310Answer by maclema for BlazeDS Destination destroy()?maclema2009-10-22T19:05:44Z2009-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-trigger1Throw Error In MySQL Triggermaclema2008-08-01T12:12:19Z2009-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#14555150Answer by maclema for Circular dependencies in flex librariesmaclema2009-09-21T16:44:50Z2009-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#13472340Answer by maclema for Flex 3 Alert text doesn't stretch to fill space?maclema2009-08-28T14:08:58Z2009-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#13464470Answer by maclema for Corrupt form data: premature ending (Resolved)maclema2009-08-28T11:33:54Z2009-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#13464121Answer by maclema for Adding dynamic controls to TabBar,Flex 3 Air As3maclema2009-08-28T11:24:21Z2009-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#13415961Answer by maclema for How can I specify which properties of a flex object are encoded in XML?maclema2009-08-27T14:47:16Z2009-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-1Answer by maclema for Custom Itemrender in Datagrid with Datatipmaclema2009-08-27T14:44:55Z2009-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#13415431Answer by maclema for Detecting different quit options in AIR application on Macmaclema2009-08-27T14:38:25Z2009-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><?xml version="1.0" encoding="utf-8"?>
<mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="onCreationComplete()">
<mx:Script>
<![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 && !nativeWindow.visible ) {
nativeWindow.visible = true;
nativeWindow.activate();
}
});
}
}
]]>
</mx:Script>
</mx:WindowedApplication>
</code></pre>
http://stackoverflow.com/questions/1341224/mysql-ordering-table-as-desired-before-adding-primary-key-column/1341250#13412501Answer by maclema for mySQL - Ordering table as desired, before Adding Primary Key columnmaclema2009-08-27T13:51:36Z2009-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#13030010Answer by maclema for How can I get a Flex container to scroll to the last position?maclema2009-08-19T22:38:30Z2009-08-19T22:38:30Z<p>This should work for you.</p>
<pre><code> <mx:Script>
<![CDATA[
protected function addChat():void
{
collection.addItem(new String(input.text));
callLater(function() {
list.verticalScrollPosition = list.maxVerticalScrollPosition;
});
input.text = "";
}
]]>
</mx:Script>
</code></pre>
http://stackoverflow.com/questions/1276667/file-flex-air-exec/1302982#13029820Answer by maclema for file flex air execmaclema2009-08-19T22:34:11Z2009-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#13029682Answer by maclema for Flex DataGrid Column Widthmaclema2009-08-19T22:29:18Z2009-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-object3Actionscript 3 - Fastest way to parse yyyy-mm-dd hh:mm:ss to a Date object?maclema2008-08-06T08:33:53Z2009-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 && month == 0 && 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-center0TinyMCE use <div align="center"> instead of <div style="text-align: center">?maclema2009-07-16T22:25:37Z2009-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 < div style="text-align=center" >. I would like tinyMCE to use
< 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-warning1How do I get rid of the "multiple describeType entries" warning?maclema2008-08-08T14:18:09Z2009-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><accessor name="selectedItem" access="readwrite" type="Object" declaredBy="mx.controls::ComboBase"><br> <metadata name="Bindable"><br> <arg key="" value="valueCommit"/><br> </metadata><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#7321111Answer by maclema for How can I get a mx:textarea height to be the same as the contentmaclema2009-04-08T22:20:22Z2009-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 && styleSheet ) {
textField.styleSheet = _styleSheet;
}
}
}
}
</code></pre>
<p>Then you can use the component like so:</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" xmlns:ns1="*" preinitialize="onInit()">
<mx:Script>
<![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;
}
]]>
</mx:Script>
<ns1:StyledText id="text" x="0" y="79">
<ns1:htmlText>
<![CDATA[<a href='event:http://www.adobe.com'>Navigate to Adobe.com.</a> this is testing nothing at all really]]>
</ns1:htmlText>
</ns1:StyledText>
</mx:Application>
</code></pre>
http://stackoverflow.com/questions/731949/html-to-pdf-keeping-look-and-feel/732047#7320470Answer by maclema for HTML to PDF Keeping Look and Feelmaclema2009-04-08T21:59:40Z2009-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#7318919Answer by maclema for Can someone explain the following javascript code?maclema2009-04-08T21:15:43Z2009-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 <tr> elements of the table
var rows = $(el).getElementsByTagName('tr');
//for each <tr> element
for (var i=1,len=rows.length;i<len;i++) {
//for every second row, set the className of the <tr> element to 'alt'
if (i % 2 == 0) rows[i].className = 'alt';
//add a mouseOver event to change the row className when rolling over the <tr> element
Event.add(rows[i],'mouseover',function() {
ZebraTable.mouseover(this);
});
//add a mouseOut event to revert the row className when rolling out of the <tr> element
Event.add(rows[i],'mouseout',function() {
ZebraTable.mouseout(this);
});
}
},
//the <tr> 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#7201822Answer by maclema for Actionscript - Variable Assignment without reference?maclema2009-04-06T03:33:04Z2009-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#5421291Answer by maclema for What is the best way to calculate Age using Flex?maclema2009-02-12T16:25:16Z2009-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-connection2Java+Tomcat, Dying databse connection?maclema2008-08-19T10:17:24Z2009-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><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;useEncoding=true&amp;characterEncoding=UTF-8" />
</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#2808761Answer by maclema for Algorithm to determine if a component is fully visible in Flex?maclema2008-11-11T13:31:15Z2008-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 < 0 || tl.y < 0 ) {
return false;
}
var stage:Stage = Application.application.stage;
//off the right or bottom of stage?
if ( br.x > stage.width || br.y > stage.height ) {
return false;
}
return true;
}
</code></pre>
http://stackoverflow.com/questions/1644976/add-properties-file-to-output-folder-of-flex-project/1646062#1646062Comment by maclema on Add .properties file to output folder of Flex projectmaclema2009-10-29T20:17:03Z2009-10-29T20:17:03ZIs the .properties file inside the src folder?http://stackoverflow.com/questions/1609041/blazeds-destination-destroy/1609331#1609331Comment by maclema on BlazeDS Destination destroy()?maclema2009-10-22T19:10:31Z2009-10-22T19:10:31ZCannot mark this as an answer for 2 days :(http://stackoverflow.com/questions/1609041/blazeds-destination-destroy/1609175#1609175Comment by maclema on BlazeDS Destination destroy()?maclema2009-10-22T18:57:54Z2009-10-22T18:57:54ZI 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-spaceComment by maclema on Flex 3 Alert text doesn't stretch to fill space?maclema2009-08-28T13:58:35Z2009-08-28T13:58:35ZDo you have any special css for the Alert?http://stackoverflow.com/questions/1346387/adding-dynamic-controls-to-tabbar-flex-3-air-as3/1346412#1346412Comment by maclema on Adding dynamic controls to TabBar,Flex 3 Air As3maclema2009-08-28T13:53:44Z2009-08-28T13:53:44ZIf 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-execComment by maclema on file flex air execmaclema2009-08-28T11:28:31Z2009-08-28T11:28:31Zyou have already asked this question 5 timeshttp://stackoverflow.com/questions/1334749/custom-itemrender-in-datagrid-with-datatip/1341580#1341580Comment by maclema on Custom Itemrender in Datagrid with Datatipmaclema2009-08-28T08:16:59Z2009-08-28T08:16:59ZAh 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#1341596Comment by maclema on How can I specify which properties of a flex object are encoded in XML?maclema2009-08-27T14:49:46Z2009-08-27T14:49:46ZPlease 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#627219Comment by maclema on How can I drag and drop canvases within a Vbox to re-order?maclema2009-07-21T13:57:47Z2009-07-21T13:57:47ZI think it is actually setChildIndex(child:DisplayObject, index:int):voidhttp://stackoverflow.com/questions/1140652/tinymce-use-div-aligncenter-instead-of-div-styletext-align-centerComment by maclema on TinyMCE use <div align="center"> instead of <div style="text-align: center">?maclema2009-07-17T15:11:42Z2009-07-17T15:11:42ZI 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#732111Comment by maclema on How can I get a mx:textarea height to be the same as the contentmaclema2009-04-27T00:58:42Z2009-04-27T00:58:42ZAre you still using the "override protected function initializationComplete():void"? 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#732111Comment by maclema on How can I get a mx:textarea height to be the same as the contentmaclema2009-04-09T19:21:34Z2009-04-09T19:21:34ZI updated the code to handle textField being null. Try it out, let me know if it works.