User cliff.meyers - Stack Overflowmost recent 30 from stackoverflow.com2009-12-14T23:22:32Zhttp://stackoverflow.com/feeds/user/41754http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1894480/how-to-upload-csv-file-in-flex/1894672#18946720Answer by cliff.meyers for How to Upload CSV file in flex ?cliff.meyers2009-12-12T20:55:51Z2009-12-12T20:55:51Z<p>Use the FileReference class:</p>
<p><a href="http://livedocs.adobe.com/flex/3/langref/flash/net/FileReference.html" rel="nofollow">http://livedocs.adobe.com/flex/3/langref/flash/net/FileReference.html</a></p>
http://stackoverflow.com/questions/1850754/what-is-faster-flex-and-java-or-flex-and-php/1856111#18561110Answer by cliff.meyers for what is faster flex and Java or flex and php?cliff.meyers2009-12-06T18:16:33Z2009-12-06T18:16:33Z<p>Java is faster than PHP in terms of pure execution time. Here is an interesting algorithm performance comparison that ranks a number of languages, showing Java to be approximately 300 times faster than PHP:</p>
<p><a href="http://blog.dhananjaynene.com/2008/07/performance-comparison-c-java-python-ruby-jython-jruby-groovy/" rel="nofollow">http://blog.dhananjaynene.com/2008/07/performance-comparison-c-java-python-ruby-jython-jruby-groovy/</a></p>
<p>With that said, this is NOT a good approximation of the speed differences for real-world applications. A major bottleneck will typically be your database. However if your application requires a lot of processing that doesn't occur in the database, you may see performance improvement with Java.</p>
<p>One advantage in terms of remoting is that Adobe offers Blaze DS which is a standard implementation of AMF for Flex. They also include some messaging capabilities ("data push") which I don't believe are implemented in AMFPHP.</p>
http://stackoverflow.com/questions/1080281/good-e-commerce-platform-for-java-or-net3Good e-commerce platform for Java or .NETcliff.meyers2009-07-03T17:37:30Z2009-11-21T23:54:08Z
<p>I'm looking for an e-commerce "platform" in Java or .NET that can satisfy the following requirements:</p>
<ul>
<li>Product / Service Management</li>
<li>Customer Account Management</li>
<li>Shopping Cart</li>
<li>Checkout / Merchant Integration</li>
<li>Localization (especially for currency)</li>
<li>Coupons</li>
<li>Multiple Storefronts</li>
<li>Reporting</li>
<li>Possible PayPal / Google Checkout Integration</li>
</ul>
<p>The goal here is to integrate this with a RIA written in Adobe Flex. We are comfortable with writing a thin backend layer to support the Flex app, so the solution doesn't require a remotely-accessible API, rather just one that we can invoke from our own backend code.</p>
http://stackoverflow.com/questions/1749345/flex-make-advanced-data-grid-height-of-rows/1749706#17497061Answer by cliff.meyers for Flex: Make advanced data grid height of rows?cliff.meyers2009-11-17T15:36:25Z2009-11-17T15:36:25Z<p>You could bind the ADG's "rowCount" property to the length of the data provider:</p>
<pre><code>rowCount="{ dataProvider.length }"
</code></pre>
<p>If that doesn't handle the rested rows property, then you could write a function that calculates the total number of rows:</p>
<pre><code>rowCount="{ getRowCount( dataProvider ) }"
private function getRowCount( dataProvider:ArrayCollection ):int
{
// walk through dataProvider and count up rows + nestedRows
}
</code></pre>
http://stackoverflow.com/questions/1725445/in-flex-how-do-wrap-lists-into-columns/1730380#1730380-1Answer by cliff.meyers for In Flex, how do wrap Lists into columns?cliff.meyers2009-11-13T16:37:11Z2009-11-13T16:37:11Z<p>Try setting the following two properties on List:</p>
<pre><code>wordWrap=true
variableRowHeight=true
</code></pre>
http://stackoverflow.com/questions/1726510/best-practices-server-side-scripting-or-web-services/1730345#17303451Answer by cliff.meyers for Best Practices Server Side Scripting or Web Servicescliff.meyers2009-11-13T16:32:34Z2009-11-13T16:32:34Z<p>Flash / Flex uses a simple HTTP POST approach for file uploads, so trying to do that using SOAP web services will be problematic. Your approach of using ASHX here sounds reasonable to me.</p>
<p>To send / receive data that isn't file based (e.g. a list of files the user has uploaded previously), I would recommend looking at the open source <a href="http://fluorinefx.com/" rel="nofollow">Fluorine FX</a> library. Fluorine uses AMF which is a highly performant way of doing data transfer with Flash. It's also purely configuration-based, which means you don't need to code against any of its APIs, just configure Fluorine to expose your .NET service classes. You could easily add attributes to those same classes to expose them as SOAP web services via WCF if you need that in the future. I would not recommend using SOAP with Flex however, due to the performance losses and also because the Flex implementation of SOAP has a history of bugs and interoperability problems.</p>
http://stackoverflow.com/questions/1716859/flex-application-loading-and-synchronicity/1717597#17175970Answer by cliff.meyers for Flex application loading and synchronicitycliff.meyers2009-11-11T19:48:06Z2009-11-11T19:48:06Z<p>Similar to what Mike suggested, all you need to do is have a single Container (Canvas, VBox, etc) with creationPolicy="none"; when you are ready to initialize the application, you can call createComponentsFromDescriptors() on the Container.</p>
<p>Another approach would be put that content into a Module and load it after your configuration is loaded.</p>
http://stackoverflow.com/questions/1715296/client-error-messagesend-problem-with-flex-blazeds-on-jboss/1716714#17167140Answer by cliff.meyers for Client.Error.MessageSend problem with Flex/BlazeDS on JBosscliff.meyers2009-11-11T17:19:26Z2009-11-11T17:19:26Z<p>If you browse to <a href="http://your.application.root/crossdomain.xml" rel="nofollow">http://your.application.root/crossdomain.xml</a>, does the file load? The simplest configuration is to put the file at the root of the domain.</p>
http://stackoverflow.com/questions/1715951/is-creating-the-model-as-a-singleton-the-only-way-to-share-data-in-the-mode-betwe/1716693#17166930Answer by cliff.meyers for is creating the model as a singleton the only way to share data in the mode between viewscliff.meyers2009-11-11T17:15:56Z2009-11-11T17:15:56Z<p>I would declare the data as public properties. You almost always need to update data in a View based on user gestures, so using constructor arguments alone isn't very flexible and can be problematic for MXML-based Views.</p>
<p>Then you can either use binding expressions in the parent View to supply the data or use an IoC framework such as Swiz or Mate to inject the data. The disadvantage to the former approach is that you end up putting a lot of public properties in your parent views just so they can "relay" data to the child views. The nice thing about IoC is that you can add only the properties each View actually uses and then inject the data only where it's really needed.</p>
http://stackoverflow.com/questions/1711786/in-flex-what-is-the-difference-between-a-skin-and-an-itemrenderer/1712275#17122753Answer by cliff.meyers for In Flex, What is the difference between a skin and an itemRenderer?cliff.meyers2009-11-11T00:42:34Z2009-11-11T00:42:34Z<p>A skin is a graphical element that can be applied to various UIComponents. Containers can have borderSkins and Buttons can have various up/over/down skins. They can be implemented in several ways, including the use of the drawing API ("Programmatic skins") or through embedding assets ("Graphical skins"). Skins are usually pretty lightweight and may only be a Flash DisplayObject rather than a Flex UIComponent, which is more heavyweight but contains much more functionality.</p>
<p>An itemRenderer is typically a UIComponent that a List-based control uses to display an item. You also usually use itemRenderers when using a DataGrid/DataGridColumn. Most components that use itemRenderers recycle them, meaning that they create about as many as are needed to display on the screen, and as the user scrolls through the data the same itemRenderers are repositioned and get new data plugged into them. This is one of the reason why Lists and DataGrid can support large quantities of data and why trying to accomplish similar things with a Repeater leads to apps with terrible performance.</p>
http://stackoverflow.com/questions/1688996/flex-list-displaying-wrong-until-scrolled/1694279#16942791Answer by cliff.meyers for Flex: List displaying wrong until scrolled.cliff.meyers2009-11-07T20:20:50Z2009-11-07T20:20:50Z<p>Also trying adding </p>
<pre><code>super.data = value
</code></pre>
http://stackoverflow.com/questions/1687326/unable-to-create-snapshot-of-canvas/1688860#16888600Answer by cliff.meyers for Unable to create snapshot of Canvascliff.meyers2009-11-06T16:49:10Z2009-11-06T16:49:10Z<p>You could take multiple snapshots of your large Canvas, scale down and then stitch them back together. But any kind of bitmap capture for a component that large is going to be very intensive.</p>
http://stackoverflow.com/questions/1681440/weborb-flex-how-to-call-a-method-on-a-remoteclass-returned-by-a-remoteobject/1682122#16821220Answer by cliff.meyers for WebOrb/Flex: How to call a method on a RemoteClass returned by a RemoteObjectcliff.meyers2009-11-05T17:12:42Z2009-11-05T17:12:42Z<p>You cannot invoke methods that are defined on the server class from within a Flex application. AMF only supports serialization of data, i.e. properties or public fields. If you just want to set values to the properties of the object after it's been returned, you set them like any other variable</p>
<pre><code>schedule.startDate = new Date();
</code></pre>
http://stackoverflow.com/questions/1672668/flex-java-blazeds-dashboard-use-spring-jdbc-or-hibernate/1674774#16747741Answer by cliff.meyers for Flex Java BlazeDS Dashboard - use Spring/JDBC or Hibernate ?cliff.meyers2009-11-04T15:59:51Z2009-11-04T15:59:51Z<p>The key difference between Hibernate (and most other ORMs) versus Spring/JDBC is that most ORM's support "lazy loading" which can actually be very problematic in remoting applications. Suppose you are using Hibernate and have a Person class which has a collection of Address objects. If you ask Hibernate for a Person instance, by default it will load only the simple properties of Person and the "addresses" collection will be an empty proxy. When you access "addresses" for the first time, Hibernate will execute some SQL to magically "lazy load" the data into the addresses collection for you. When you pass Person with the lazy addresses up to whichever serializer in use, it will walk the entire object graph and trigger lazy loading of every lazy proxy it can reach. In a complex object model, this can result in literally thousands of SQL queries to fully load the object graph before sending it to the server, to say nothing of the multiple megabytes of data that will be send over the wire.</p>
<p>One of the other posters mentioned using DTO's with Hibernate and this is not a bad recommendation because it helps work around this lazy loading issue. You essentially wrap all of your entities with the DTO's and then return only DTO's to the serializer. Expanding the previous example, suppose Person also has a single Department object tied to it. PersonDto can instead have a "departmentId" property, which when accessed pulls only the "id" property from the underlying Department object. Since Hibernate lazy entity proxies are always populated with their identifier, you can can access this data without having to lazy load the object. Since PersonDto doesn't actually expose a Department object to the serializer, it will not be able to walk it and try to load all of the data.</p>
<p>There is one alternative to using DTO's with Hibernate, which is to do some very fancy things to those Hibernate lazy proxies so they play nicely with the serializer. Take a look at a project called <a href="http://noon.gilead.free.fr/gilead/" rel="nofollow">Gilead</a> if you want to learn more.</p>
<p>You also mentioned scalability and of course the answer is "it depends." :) In terms of handling more users, it will be easier to tune the SQL using Spring/JDBC which may increase performance and lessen load on the database, possibly allowing you to support more users. However, in terms of code maintainability and the sheer amount of work you'll need to do, Hibernate may offer a better option since it automates a lot of tedious crud functionality.</p>
http://stackoverflow.com/questions/1191037/getter-and-setter-methods-versus-public-properties-in-flex/1191607#11916075Answer by cliff.meyers for Getter and Setter methods Versus Public properties in FLexcliff.meyers2009-07-28T02:11:15Z2009-11-04T15:37:05Z<p>Exposing a bindable public property using either of the approaches below are considered best practice in Flex:</p>
<pre><code>[Bindable] public var dataProvider:Object;
[Bindable] public function get dataProvider():Object { ... }
</code></pre>
<p>The get/set function pairs are a little more flexible then regular public properties. You can still easily make the property bindable by annotating the get function with the [Bindable] tag. However you can implement some custom logic in the "set" function, including setting dirty flags and invalidating properties, size or the display list. eg:</p>
<pre><code>private var _dataProvider:Object;
private var dataProviderChanged:Boolean;
public function set dataProvider(value:Object):void
{
if (_dataProvider != value)
{
_dataProvider = value;
dataProviderChanged = true;
invalidateProperties();
}
}
[Bindable] public function get dataProvider():Object
{
return _dataProvider;
}
</code></pre>
<p>This pattern is used heavily in Flex framework components. The invalidation model is very clean and also leads to the best performance in your custom components.</p>
<p>You can also specify a custom event for the bindable property so you can trigger its binding from multiple places, instead of just by invoking the setter:</p>
<pre><code>[Bindable( "dataProviderChanged" )]
public function get dataProvider():Object
{
return _dataProvider;
}
public function someRandomMethod():void
{
// ...
// pretend that we just finished some processing
_dataProvider = newValue;
dispatchEvent( new Event( "dataProviderChanged" ) );
}
</code></pre>
<p>This also works nicely if you want to make the property read-only, meaning that it has no matching "set" method.</p>
http://stackoverflow.com/questions/1670982/binding-custom-components-values/1671039#16710390Answer by cliff.meyers for Binding custom components valuescliff.meyers2009-11-04T00:31:58Z2009-11-04T00:31:58Z<p>Below is one way that you can listen to the change of TileList.selectedItem. I would recommend against putting this in a global variable, although if you must you could use a pattern like ModelLocator to do so.</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<mx:Application
xmlns:mx="http://www.adobe.com/2006/mxml"
layout="vertical">
<mx:Script>
<![CDATA[
[Bindable] public var selectedItem:Object;
]]>
</mx:Script>
<mx:Binding source="listTile.selectedItem" destination="selectedItem"/>
<mx:Label text="{ selectedItem }"/>
<mx:TileList
id="listTile"
width="400"
height="300"
dataProvider="{ ['A','B','C'] }"/>
</mx:Application>
</code></pre>
http://stackoverflow.com/questions/1572976/air-flex-vs-java/1573986#15739862Answer by cliff.meyers for AIR (Flex) vs Javacliff.meyers2009-10-15T17:46:41Z2009-10-15T17:46:41Z<p>I'll try to address each of your points below:</p>
<p><strong>needing to securely connect to web services and JMS</strong></p>
<p>Flex/AIR supports SOAP although it does not support most (any?) of the WS-standards, such as WS-Security. Flex/AIR cannot directly communicate with JMS however you can add the Blaze DS Java component to the backend, which can adapt a JMS endpoint for use with Flex/AIR's Consumer/Producer messaging architecture.</p>
<p><strong>have a very interactive UI (lots of little and big features)</strong></p>
<p>I think overall Flex/AIR wins here. Not that you can't do cool UI's in Java / JavaFX but Flex/AIR will let you build a cool UI with significantly less code / effort.</p>
<p><strong>displaying video</strong></p>
<p>I haven't worked with video much in Java but it's easy to do video in any Flash environment. You probably want to consider which formats you need to support to help steer your decision.</p>
<p><strong>Communicate with a C++ application</strong></p>
<p>AIR 2.0 will allow for direct communication with native processes, so depending on your timeline you might be able to use native AIR functionality instead of Merapi. Java obviously has this capability already.</p>
http://stackoverflow.com/questions/1566624/dispatching-a-variable-in-mate-framework/1566935#15669352Answer by cliff.meyers for Dispatching a variable in Mate Framework.cliff.meyers2009-10-14T15:07:35Z2009-10-14T15:24:00Z<p>Add a public var (called "navi" in the code below) to the DepManagementEvent that's of the same type as the item in the grid, then dispatch the event like this instead:</p>
<pre><code>var event:DepManagementEvent = new DepManagementEvent( DepManagementEvent.EDIT_NAVI );
event.navi = grid.selectedItem;
dispatchEvent( event );
</code></pre>
<p>To listen to the event on the other side, you add an event listener for a function...</p>
<pre><code>addEventListener( DepManagementEvent.EDIT_NAVI, onEditNavi);
private function onEditNavi( event:DepManagementEvent ):void
{
// add logic here
}
</code></pre>
<p>Since you're in an itemRenderer, you can dispatch a bubbling event that will move up to the parent List/DataGrid and continue to bubble up to other parent views in the display hierarchy. When you create the event, pass the second argument ("bubbles") as true:</p>
<pre><code>new DepManagementEvent( DepManagementEvent.EDIT_NAVI, true );
</code></pre>
http://stackoverflow.com/questions/1556836/flex-cairngrom-getter-setter-on-a-bound-vo/1567011#15670110Answer by cliff.meyers for Flex + Cairngrom + getter setter on a bound VOcliff.meyers2009-10-14T15:18:23Z2009-10-14T15:18:23Z<p>It sounds like what he did was add a getter/setter for the collection property in the VO which recalculates that summed value based on the contents of the new collection, i.e. This is a pretty standard approach and the code below is not difficult.</p>
<pre><code>private _yourCollection:ArrayCollection;
public function set yourCollection( value:ArrayCollection ):void
{
if ( _yourCollection != value)
{
_yourCollection = value;
// calculate new sum
var sum:Number = 0;
for each ( var obj:SomeVOType in _yourCollection )
sum += obj.valueToSum;
sumProperty = sum;
}
}
</code></pre>
http://stackoverflow.com/questions/1535347/blazeds-service-time-stats/1544488#15444880Answer by cliff.meyers for Blazeds service time statscliff.meyers2009-10-09T15:26:02Z2009-10-09T15:26:02Z<p>In order to use the ServletFilter it will need to deserialize the raw HTTP request content from AMF into a graph of Java objects. If you can find an instance of AsyncMessage in the graph you can examine its "destination" property which maps directly to the service in question. It looks like you could use the MessageDeserializer from the BlazeDS APIs to do this but it also depends on some other objects to work.</p>
<p>Are you using Spring? If so, doing this with AOP is very easy.</p>
http://stackoverflow.com/questions/1543352/flex-treedatadescriptor/1544380#15443800Answer by cliff.meyers for Flex TreeDataDescriptorcliff.meyers2009-10-09T15:03:00Z2009-10-09T15:03:00Z<p>Start by creating a custom descriptor that extends the DefaultDataDescriptor class, which has XML support out of the box. I would start by overriding the following methods:</p>
<p>isBranch
getChildren
hasChildren</p>
http://stackoverflow.com/questions/1536803/comboboxs-dynamic-event-in-flex/1538531#15385311Answer by cliff.meyers for Combobox's Dynamic event in flexcliff.meyers2009-10-08T15:24:49Z2009-10-08T15:24:49Z<p>Put your Forms inside of a ViewStack container. You can then bind the ViewStack's selectedIndex to the selectedIndex of your ComboBox:</p>
<pre><code><mx:ComboBox id="comboBox" />
<mx:ViewStack selectedIndex="{comboBox.selectedIndex}">
<mx:Form id="formA">
...
</mx:Form>
<mx:Form id="formB">
...
</mx:Form>
</mx:ViewStack>
</code></pre>
http://stackoverflow.com/questions/1499191/flex-display-alert-object-once-only-inheritance/1504935#15049350Answer by cliff.meyers for Flex: Display Alert object once only. Inheritance? cliff.meyers2009-10-01T16:13:07Z2009-10-01T16:13:07Z<p>Static methods are not inherited in ActionScript. Your best bet is to write a class which delegates to the Alert class' static methods. It can also have a private static var which holds the "current" Alert dialog instead of a "count" variable.</p>
<p>Also in your code you are confusing the assignment operator (single equal sign) with the equality operator (double equal sign).</p>
http://stackoverflow.com/questions/1496081/adobe-air-flex-filtering-large-datasets/1496280#14962801Answer by cliff.meyers for Adobe Air/Flex filtering large datasetscliff.meyers2009-09-30T05:44:00Z2009-09-30T05:44:00Z<p>You could use a class that acts as a proxy for the original ArrayCollection and the data stored in it. You can set the filter function on the proxy and have the proxy delegate most of its other functionality to the referenced ArrayCollection. You can probably start by subclassing ListCollectionView to do this.</p>
http://stackoverflow.com/questions/1488571/does-flex-not-support-hashmaps/1495777#14957770Answer by cliff.meyers for Does flex not support hashmaps?cliff.meyers2009-09-30T01:55:17Z2009-09-30T01:55:17Z<p>You want to use "Object" as per the Blaze DS "data serialization" documentation:</p>
<p><a href="http://livedocs.adobe.com/blazeds/1/blazeds%5Fdevguide/serialize%5Fdata%5F3.html#304283" rel="nofollow">http://livedocs.adobe.com/blazeds/1/blazeds%5Fdevguide/serialize%5Fdata%5F3.html#304283</a></p>
http://stackoverflow.com/questions/1494905/how-to-show-progress-messages-in-flex-from-c-initiated-batch-process/1495770#14957700Answer by cliff.meyers for How to show progress messages in Flex from C# initiated Batch processcliff.meyers2009-09-30T01:51:16Z2009-09-30T01:51:16Z<p>What it sounds like you're looking for is a messaging bus that can push messages back to the Flex client, rather than having the Flex client poll for status.</p>
<p>Just in case you are open to polling, you could do that very easily by standing up a ASPX page that returns XML data about the progress of the batch process. Since you're already kicking off the batch process from Flex I'm assuming you're familiar with that approach.</p>
<p>If you want a true messaging solution, you can use the open source Fluorine FX product and its implementation of RTMP:</p>
<p><a href="http://www.fluorinefx.com/" rel="nofollow">http://www.fluorinefx.com/</a></p>
<p>If you download the installer it comes with a sample application called DateFeed which includes the client and server code for setting up a simple RTMP endpoint and subscribing to it from Flex.</p>
http://stackoverflow.com/questions/1481448/spring-flex-blazeds-multi-user-global-chat-messaging/1482715#14827151Answer by cliff.meyers for Spring-Flex BlazeDs Multi-User + Global Chat Messagingcliff.meyers2009-09-27T03:23:07Z2009-09-27T03:28:12Z<p>A selector is basically an expression you can use to filter which messages will be dispatched through your consumer. According to the docs, it uses SQL 92 conditional expression syntax:</p>
<p><a href="http://livedocs.adobe.com/blazeds/1/blazeds%5Fdevguide/help.html?content=messaging%5F6.html" rel="nofollow">http://livedocs.adobe.com/blazeds/1/blazeds%5Fdevguide/help.html?content=messaging%5F6.html</a></p>
<p>A subtopic is sort of a special case of a selector, filtering out messages whose "DSSubtopic" header don't match the provided value.</p>
<p>The important thing to understand with both of these is that the <em>client</em> determines which messages are sent to it, and as such it cannot be relied upon entirely for security.</p>
<p>To implement secure server-based filtering of messages based on an authenticated user's identity, see my answer to a related question here:</p>
<p><a href="http://stackoverflow.com/questions/916437/flex-messaging-security/917189#917189">http://stackoverflow.com/questions/916437/flex-messaging-security/917189#917189</a></p>
<p>As far as multiple Consumers vs. MultiTopicConsumer, not sure there. They're both going to use the same underlying ChannelSet, so it ought not to have a big performance difference. I think it's mostly a question of whether it's convenient to have one event handler that responds to all messages from the MultiTopicConsumer or whether it's easier to have separate event handlers for each Consumer.</p>
http://stackoverflow.com/questions/1435954/flex-custom-component-communication/1436860#14368602Answer by cliff.meyers for Flex Custom Component Communicationcliff.meyers2009-09-17T05:36:32Z2009-09-17T05:36:32Z<p>You could use Flash's built-in Event mechanism, which has no external dependencies. </p>
<p><a href="http://livedocs.adobe.com/flex/3/html/help.html?content=events%5F01.html" rel="nofollow">http://livedocs.adobe.com/flex/3/html/help.html?content=events%5F01.html</a></p>
http://stackoverflow.com/questions/864744/can-relative-paths-be-used-when-using-include-libraries-in-the-flex-mxmlc-compi2Can relative paths be used when using "include-libraries" in the Flex mxmlc compiler?cliff.meyers2009-05-14T17:45:23Z2009-09-16T16:00:01Z
<p>I am trying to force all of the classes in a .swc to be linked into my Flex project's resulting SWF file. From the docs:</p>
<p><a href="http://livedocs.adobe.com/flex/3/html/help.html?content=compilers_03.html" rel="nofollow">http://livedocs.adobe.com/flex/3/html/help.html?content=compilers_03.html</a></p>
<blockquote>
<p>include-libraries library [...] </p>
<p>Links all classes inside a SWC file to the resulting application SWF file, regardless of whether or not they are used. Contrast this option with the library-path option that includes only those classes that are referenced at compile time. To link one or more classes whether or not they are used and not an entire SWC file, use the includes option. This option is commonly used to specify resource bundles. </p>
</blockquote>
<p>Unfortunately this only seems to work in my Flex Builder project when I specify the absolute path to my .swc as an argument. My .swc is in the "lib" directory which is added as a "SWC Folder" in my Flex project config. Does anyone know the syntax to reference it relatively?</p>
http://stackoverflow.com/questions/1424892/what-are-the-pros-and-cons-of-migrating-an-application-from-as2-to-as3/1424937#14249372Answer by cliff.meyers for What are the pros and cons of migrating an application from AS2 to AS3?cliff.meyers2009-09-15T03:14:34Z2009-09-15T03:14:34Z<p>Wikipedia has a decent list of new features by Flash Player version:</p>
<p><a href="http://en.wikipedia.org/wiki/Adobe%5FFlash%5FPlayer" rel="nofollow">http://en.wikipedia.org/wiki/Adobe%5FFlash%5FPlayer</a></p>
<p>Everything starting at version 9 is only available to AS3. Here are some highlights, including some additions of my own:</p>
<ul>
<li>Support for Flex 2+ (version 4 is coming out early next year)</li>
<li>Support for Adobe AIR</li>
<li>Binary sockets</li>
<li>H264 / AAC support</li>
<li>3-D transformations</li>
<li>New text layout engine</li>
<li>Hardware acceleration</li>
</ul>
<p>Having written Flex applications that ran under FP8 (Flex 1.5) and FP9+ (Flex 2+) I can tell you that it's significantly faster. For a business application that people spend a lot of time in on a daily basis I think it can be a noticeable improvement that would reduce end-user hair pulling. There are performance metrics out there for low-level operations like string concatenation and array sorting but those metrics don't equate to the performance gains you'd see in a real world application. In reality, they will be smaller, but measurable.</p>
<p>Ultimately the best you can do is estimate to them the cost of maintaining the application as-is versus the rewrite and addition of subsequent features. If they don't plan on changing much in the application then the rewrite likely won't be worth it. But if the app is having a lot of features added and you feel you can be significantly more productive using Flex and AS3 then you should be able to show them the numbers and let them make the decision based on that.</p>
http://stackoverflow.com/questions/1756755/how-do-i-get-a-strongly-typed-collection-from-blazeds/1756875#1756875Comment by cliff.meyers on How do I get a strongly typed collection from BlazeDS?cliff.meyers2009-11-19T16:29:21Z2009-11-19T16:29:21ZDo you have a reference to the Folder class in your application, i.e. "new Folder()" or similar? If you don't, the Folder class will not be compiled into your app, and Flex will not generate the registerClassAlias calls you need.http://stackoverflow.com/questions/1756755/how-do-i-get-a-strongly-typed-collection-from-blazeds/1756875#1756875Comment by cliff.meyers on How do I get a strongly typed collection from BlazeDS?cliff.meyers2009-11-18T21:44:24Z2009-11-18T21:44:24ZCan you download the Charles web debugging proxy (google it) and post what Charles sees coming back from the server? It will give us some insight into whether your objects are being encoded as strongly-typed objects by BlazeDS, or not.http://stackoverflow.com/questions/1743178/freemarkers-configuration-setclassfortemplateloading-wont-work-in-eclipse/1743305#1743305Comment by cliff.meyers on Freemarker's Configuration.setClassForTemplateLoading() won't work in Eclipse?cliff.meyers2009-11-16T16:39:29Z2009-11-16T16:39:29ZYou're absolutely right; I saw the same pathing behavior when I debugging into those classes. Unfortunately the issue was a classpath issue (see my "answer" below).http://stackoverflow.com/questions/1715296/client-error-messagesend-problem-with-flex-blazeds-on-jboss/1716714#1716714Comment by cliff.meyers on Client.Error.MessageSend problem with Flex/BlazeDS on JBosscliff.meyers2009-11-13T16:21:15Z2009-11-13T16:21:15ZIt sounds like you've resolved the cross domain issue then. You're now receiving only the NetConnection.Call.BadVersion error?http://stackoverflow.com/questions/1725445/in-flex-how-do-wrap-lists-into-columnsComment by cliff.meyers on In Flex, how do wrap Lists into columns?cliff.meyers2009-11-12T22:14:41Z2009-11-12T22:14:41ZDo you mean a second row?http://stackoverflow.com/questions/1716859/flex-application-loading-and-synchronicity/1717597#1717597Comment by cliff.meyers on Flex application loading and synchronicitycliff.meyers2009-11-12T05:21:01Z2009-11-12T05:21:01ZThis is probably because other child containers are inheriting the creationPolicy from the parent container. What if you use a ViewStack which has its first child as an empty Canvas and its second child as the main application view? Then after your configuration loads you can just set ViewStack.selectedIndex = 1 ?http://stackoverflow.com/questions/926807/flex-is-it-possible-to-style-a-flex-app-without-going-insane/927164#927164Comment by cliff.meyers on Flex: is it possible to style a Flex app without going insane?cliff.meyers2009-11-11T00:35:17Z2009-11-11T00:35:17ZI should add that there are some styles that can affect the positioning of child elements such as the horizontal/verticalGap and top/bottom/let/rightPadding styles of the Box component. If you look at the source for BoxLayout you'll see how these are used to control positioning of children. Writing a custom component that makes use of similar layout styles might help you.http://stackoverflow.com/questions/1689811/database-with-flex-and-asp-net/1690106#1690106Comment by cliff.meyers on Database with Flex and ASP.NETcliff.meyers2009-11-07T20:18:40Z2009-11-07T20:18:40ZThe web service support in Flex in pretty flaky. As Lieven suggest, using Fluorine or WebOrb will lead to much better performance in the client.http://stackoverflow.com/questions/1673109/flex-error-1120-access-of-undefined-property-xxx-when-using-constants-in-mxmlComment by cliff.meyers on Flex error 1120 (Access of undefined property XXX) when using constants in MXMLcliff.meyers2009-11-04T15:41:34Z2009-11-04T15:41:34ZAre you using Flash Builder 4 beta? I've noticed that imports frequently get stripped out of files due to some bugs that have yet to be fixed.http://stackoverflow.com/questions/1566624/dispatching-a-variable-in-mate-framework/1566935#1566935Comment by cliff.meyers on Dispatching a variable in Mate Framework.cliff.meyers2009-10-14T15:25:26Z2009-10-14T15:25:26ZI added a few examples above.http://stackoverflow.com/questions/1500155/how-do-i-make-sure-the-text-of-an-actionscript-textinput-is-updated-when-the-obje/1500193#1500193Comment by cliff.meyers on How do I make sure the text of an ActionScript TextInput is updated when the Object property defining that text is updated?cliff.meyers2009-10-01T16:09:04Z2009-10-01T16:09:04ZYou must be doing something wrong since BindingUtils is essentially how all of the MXML-based bindings in Flex are implemented in generated ActionScript. Can you post the code you tried to use?http://stackoverflow.com/questions/1494905/how-to-show-progress-messages-in-flex-from-c-initiated-batch-process/1495770#1495770Comment by cliff.meyers on How to show progress messages in Flex from C# initiated Batch processcliff.meyers2009-09-30T15:43:06Z2009-09-30T15:43:06ZHow does the Perl program output its progress? Does it write to standard output or to a file?http://stackoverflow.com/questions/1482789/flex-newbie-can-mxml-be-generated-on-the-fly/1483382#1483382Comment by cliff.meyers on flex newbie: can MXML be generated on the flycliff.meyers2009-09-30T02:01:19Z2009-09-30T02:01:19ZMore info on that compiler: <a href="http://livedocs.adobe.com/flex/3/html/apache_1.html" rel="nofollow">livedocs.adobe.com/flex/3/…</a>http://stackoverflow.com/questions/1424892/what-are-the-pros-and-cons-of-migrating-an-application-from-as2-to-as3/1424909#1424909Comment by cliff.meyers on What are the pros and cons of migrating an application from AS2 to AS3?cliff.meyers2009-09-15T03:02:24Z2009-09-15T03:02:24ZThese are client side technologies. You can't just force end users to upgrade.http://stackoverflow.com/questions/1407672/invalid-token-n-found-on-line-31-at-column-0Comment by cliff.meyers on Invalid token '\n' found on line 31 at column 0.cliff.meyers2009-09-10T21:00:03Z2009-09-10T21:00:03ZPlease post the source code if you can.