User Christophe Herreman - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T01:28:25Z http://stackoverflow.com/feeds/user/17255 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1730933/disable-button-tooltip-in-as3/1733546#1733546 1 Answer by Christophe Herreman for Disable button tooltip in AS3 Christophe Herreman 2009-11-14T06:56:00Z 2009-11-14T06:56:00Z <p>You can disable the tooltip on a button (and any other UIComponent) by setting its "toolTip" property to null</p> <pre><code>myButton.toolTip = null; </code></pre> http://stackoverflow.com/questions/1730727/delete-xmllist-element-with-a-given-index-flex/1730832#1730832 1 Answer by Christophe Herreman for Delete XMLList element with a given index - Flex Christophe Herreman 2009-11-13T17:44:36Z 2009-11-13T17:44:36Z <p>Try this</p> <pre><code>delete myList[i]; </code></pre> http://stackoverflow.com/questions/1723158/advanceddatagrid-with-two-providers/1723214#1723214 0 Answer by Christophe Herreman for advancedDataGrid with two providers Christophe Herreman 2009-11-12T15:49:49Z 2009-11-12T15:49:49Z <p>The easiest is to </p> <ul> <li>create a static property on your itemrenderer and pass in the data</li> <li>or, lookup the data in the itemrenderer via a global variable</li> </ul> http://stackoverflow.com/questions/1722326/watching-an-arraycollections-length-property-in-as3-flex/1722524#1722524 2 Answer by Christophe Herreman for Watching an ArrayCollection's length property in AS3/Flex Christophe Herreman 2009-11-12T14:22:38Z 2009-11-12T14:22:38Z <p>ArrayCollection will dispatch a "collectionChange" event when its items changed. So you can listen to that event and check the "length" property each time the event is dispatched. Alternatively you can also just bind to the length property via BindingUtils.bindSetter();</p> http://stackoverflow.com/questions/1649664/best-practice-keep-alive-session-in-flex/1656561#1656561 0 Answer by Christophe Herreman for best practice - keep alive session in flex Christophe Herreman 2009-11-01T06:50:39Z 2009-11-01T06:50:39Z <p>There is no standard way of doing this. We do a ping-pong with the server every n-seconds (check the AS3 Timer class), where n must be lower than the session timeout. It's best to keep your session timeout as low as possible to reduce memory consumption on the server, especially when you have a lot of concurrent users.</p> http://stackoverflow.com/questions/1599336/difference-flex-flash-netconnection-and-consumer-producer/1609861#1609861 1 Answer by Christophe Herreman for Difference Flex/Flash NetConnection and Consumer/Producer Christophe Herreman 2009-10-22T20:48:20Z 2009-10-22T20:48:20Z <p>NetConnection is a low-level Flash Player class that enables bidirectional communication between the Flash Player and a server. Both the RMI (remote objects) and Messaging (producer/consumer) implementations use NetConnection in their channels to do the actual communication to and from the server.</p> http://stackoverflow.com/questions/1502210/flex-remoteobject-synchronous-call/1503442#1503442 1 Answer by Christophe Herreman for Flex RemoteObject Synchronous call Christophe Herreman 2009-10-01T11:38:59Z 2009-10-01T11:38:59Z <p>The chkAuthentication method should not return a String since it is asynchronous. Instead, just create an instance variable and set its String value in the loginResult method. You can then use a binding or dispatch an event to update the UI.</p> http://stackoverflow.com/questions/1503267/change-titlewindow-close-button/1503420#1503420 2 Answer by Christophe Herreman for Change Titlewindow close button Christophe Herreman 2009-10-01T11:35:27Z 2009-10-01T11:35:27Z <p>It seems like the width and height are set to 16 pixels in the Panel class' createChildren() method:</p> <pre><code>closeButton.explicitWidth = closeButton.explicitHeight = 16; </code></pre> <p>You could try setting the explicitWidth and explicitHeight to the values you need in your window. Don't forget to scope closeButton to mx_internal, and import and use that namespace.</p> <pre><code>import mx.core.mx_internal; use namespace mx_internal; // in creationComplete for instance mx_internal::closeButton.explicitWidth = ...; mx_internal::closeButton.explicitHeight = ...; </code></pre> http://stackoverflow.com/questions/1498823/factory-strategy-patterns/1499040#1499040 1 Answer by Christophe Herreman for Factory & Strategy patterns... Christophe Herreman 2009-09-30T15:54:30Z 2009-09-30T19:01:31Z <p>We have used this is many different parsing scenarios and it certainly works. I have blogged about this with a code example: <a href="http://www.herrodius.com/blog/136" rel="nofollow">http://www.herrodius.com/blog/136</a></p> <p>The trick we use is to give the strategy interface an extra "canProcess" method which simply returns a boolean if the strategy is able to deal with the data. The factory then simply loops through all its strategies and asks each one if it can work with the data. If one can, we return that strategy or execute the strategy.</p> http://stackoverflow.com/questions/1499079/communicate-between-airflex-and-c-applications/1499100#1499100 3 Answer by Christophe Herreman for Communicate between AIR(Flex) and C++ Applications Christophe Herreman 2009-09-30T16:01:21Z 2009-09-30T16:01:21Z <p>As for now yes, you'll need to use sockets.</p> <p>AIR 2.0 will provide access to native processes, but that will require a native (per OS) installer. More info: <a href="http://www.mikechambers.com/blog/2009/09/22/fotb-slides-advanced-desktop-development-with-adobe-air/" rel="nofollow">http://www.mikechambers.com/blog/2009/09/22/fotb-slides-advanced-desktop-development-with-adobe-air/</a></p> http://stackoverflow.com/questions/1495380/accessing-jboss-conf-file-from-flex/1498962#1498962 0 Answer by Christophe Herreman for Accessing JBoss conf file from Flex Christophe Herreman 2009-09-30T15:43:02Z 2009-09-30T15:43:02Z <p>Unless you deploy the properties file with your web app, you won't be able to access them directly in Flex. So you'll need a remote object or a httpservice to retrieve these values.</p> <p>If you do deploy the properties file with the web app, Spring ActionScript has support for loading properties files: <a href="http://www.springactionscript.org/docs/reference/html/container-documentation.html#external%5Fproperty%5Ffiles" rel="nofollow">http://www.springactionscript.org/docs/reference/html/container-documentation.html#external_property_files</a></p> http://stackoverflow.com/questions/1496081/adobe-air-flex-filtering-large-datasets/1498925#1498925 1 Answer by Christophe Herreman for Adobe Air/Flex filtering large datasets Christophe Herreman 2009-09-30T15:34:02Z 2009-09-30T15:34:02Z <p>I guess there are 2 options:</p> <ol> <li><p>don't worry about performance: even if you have multiple collections, they will all point to the same data objects via references. Just create new ArrayCollections and pass in the objects as an array. You can then apply filters to the individual collections.</p></li> <li><p>process the filters eagerly by applying a filter for each view and then copy the result into a new ArrayCollection. Once you filtered a collection, create a new one with as the source filteredCollection.toArray(). The same applies as the above: the collections will contain references to objects, not value copies.</p></li> </ol> http://stackoverflow.com/questions/1498413/as3-date-not-serializing-to-java-date-using-blazeds/1498871#1498871 0 Answer by Christophe Herreman for AS3 Date not serializing to Java Date using BlazeDS Christophe Herreman 2009-09-30T15:25:51Z 2009-09-30T15:25:51Z <p>Sending several Date objects in the same class should not be a problem.</p> <p>Are you sure you don't have a small error somewhere in the getter or the setter? Do you have both a getter and a setter for the property?</p> http://stackoverflow.com/questions/574942/using-a-non-english-ubiquitous-language 0 Using a non-English ubiquitous language? Christophe Herreman 2009-02-22T13:46:27Z 2009-09-26T22:01:35Z <p>While discussing specifications and functional requirements for a recent project, we were talking with the domain experts about accounting terms in Dutch since the whole team and the customers were all native Dutch speakers.</p> <p>When development started, we naturally implemented the domain classes and interfaces in English since we write all code in English. I noticed though that the follow-up meetings with the customers were confusing for them at times, especially when the developers were discussing implementation details and hence used the English terms.</p> <p>What are your experiences with this?</p> <p>PS: I know there are some other posts on Stack Overflow about whether or not you should write code in your native language, but this question is more about creating and using a ubiquitous language that all developers, customers and domain experts can understand.</p> http://stackoverflow.com/questions/1462187/how-can-i-use-one-service-definition-for-testing-and-another-for-deployment-with/1465139#1465139 0 Answer by Christophe Herreman for How can I use one service definition for testing and another for deployment with Flex Builder? Christophe Herreman 2009-09-23T10:17:21Z 2009-09-23T10:17:21Z <p><a href="http://www.springactionscript.org/" rel="nofollow">Spring ActionScript</a> allows you to do this by externalizing service endpoint configuration in xml and properties files. I blogged about this <a href="http://www.herrodius.com/blog/158" rel="nofollow">here</a>.</p> <p>Basically, you define your services/remote objects in an external xml file and use placeholders for the properties which you define in a properties file. You don't need to do any parsing yourself since Spring ActionScript does that for you.</p> http://stackoverflow.com/questions/552904/disable-rows-in-flex-datagrid 0 Disable rows in Flex DataGrid Christophe Herreman 2009-02-16T10:39:14Z 2009-09-23T01:00:00Z <p>Unless I'm missing something obvious here, there is no way of disbabling one or more rows in a DataGrid. I would expect a disabledRows or disabledRowIndidices property on the DataGrid or List component but that doesn't seem to exist.</p> <p>I found a "rendererArray" property which is scoped to mx_internal and contains all itemrenderers of all cells in the datagrid. So I can check the type and the value of the data inside the renderer and enable or disable all cells of the same row, but that feels too much like a hack.</p> <p>Any suggestions?</p> <p><strong>Edit</strong>: I realize that disabling a row could mean different things. In my case it means not being able to edit the row even when the editable property of the datagrid is set to true. It could however also mean not being able to select a row, but that's not what I'm looking for.</p> http://stackoverflow.com/questions/1374833/how-can-i-tell-if-an-instance-implements-an-interface-in-actionscript-3-0/1377574#1377574 2 Answer by Christophe Herreman for How can I tell if an instance implements an interface in ActionScript 3.0 Christophe Herreman 2009-09-04T06:35:45Z 2009-09-04T06:35:45Z <p>To add to the answer of Joel: if you want more information about the interfaces a class implements (and its subclasses, parent classes, etc), the <a href="http://www.as3commons.org" rel="nofollow">AS3Commons</a> library has a <a href="http://www.as3commons.org/as3-commons-reflect/asdoc/org/as3commons/reflect/ClassUtils.html" rel="nofollow">ClassUtils</a> class that has a number of convenience methods.</p> http://stackoverflow.com/questions/1361200/open-local-files-in-as3/1363969#1363969 1 Answer by Christophe Herreman for open local files in AS3 Christophe Herreman 2009-09-01T18:40:04Z 2009-09-01T18:40:04Z <p>You can use a FileReference object to browse for a file and then access the raw bytes via the "data" property on the FileReference when the "complete" event is dispatched.</p> http://stackoverflow.com/questions/772579/swf-is-not-a-loadable-module 1 SWF is not a loadable module Christophe Herreman 2009-04-21T13:24:50Z 2009-08-26T01:19:26Z <p>We are creating an app that uses modules which are dynamically loaded into the main swf. The problem we run into, is that we are unable to load the modules located on a test server when we are debugging the main app locally. The error we get is "SWF is not a loadable module".</p> <p>I looked this up and found out that we need a crossdomain file on the server that grants permission to load the modules from external locations. So we created a simple crossdomain file and put that on the server, but this does not seem to help.</p> <p>Here's the crossdomain file:</p> <pre><code>&lt;cross-domain-policy&gt; &lt;allow-access-from domain="*"/&gt; &lt;/cross-domain-policy&gt; </code></pre> <p>We are loading the module via the ModuleLoader class and all default settings, no custom app domain etc. When we deploy the main swf onto the server we are able to load the modules without problems.</p> <p>Any clues? Is the crossdomain file perhaps missing some settings?</p> <p><strong>Update</strong>: It seems that the external module is loaded successfully (I can verify in my HTTP sniffer) but fails to initialize when loaded in the main app. The error still is "SWF is not a loadable module)</p> http://stackoverflow.com/questions/1277820/what-are-the-benefits-of-spring-actionscript-considering-dynamic-proxies-and-refl/1281714#1281714 1 Answer by Christophe Herreman for What are the benefits of Spring Actionscript considering Dynamic Proxies and Reflection is limited Christophe Herreman 2009-08-15T11:34:35Z 2009-08-15T12:12:51Z <p>Besides XML configuration, Spring ActionScript also supports MXML configuration. The type of config (XML, MXML) depends on the use cases your application needs to support. For the reasons you mention, it makes perfect sense to configure most of the context in MXML, but I would encourage you to externalize the config of service endpoints in every case.</p> <p>In a past project we opted for XML config since the configuration was generated at runtime when a user logged on to the application. Depending on the user credentials, different endpoints and various different settings were used. We could not have done this elegantly with static MXML configs.</p> <p>Both config types have their strengths and weaknesses, and it's up to you to decide what type you want to use. I think we could even support a mixture of MXML and XML quite easily actually if that would make sense. As soon as we have Dynamic Proxies and class loading, XML config will make a lot more sense.</p> http://stackoverflow.com/questions/767697/rtsp-in-flex 1 RTSP in Flex Christophe Herreman 2009-04-20T10:29:16Z 2009-08-12T02:46:30Z <p>We are currently working on a Flex application that needs to connect to a set a traffic detection cameras via RTSP. Being totally new to the world of video streaming in general, I was wondering if that is possible.</p> <p>AFAIK it is not possible to consume an RTSP feed in the Flash player, so I'm thinking that we would need some sort of a converter on the server that takes the RTSP stream and converts it to RTMP so we can consume the feed in our Flex app. We were hoping that Red5 could helps us do that.</p> <p>Am I correct in my assumption and has anyone done this?</p> http://stackoverflow.com/questions/1238767/how-do-i-make-my-ant-generated-swf-as-small-as-possible/1238941#1238941 0 Answer by Christophe Herreman for How do I make my Ant Generated swf as small as possible? Christophe Herreman 2009-08-06T13:36:49Z 2009-08-06T13:36:49Z <p>You'll probably need to specify the paths to the external libs using the <strong>-external-library-path</strong> option.</p> <p>See <a href="http://livedocs.adobe.com/flex/201/html/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs%5FBook%5FParts&amp;file=rsl%5F124%5F4.html" rel="nofollow">the docs</a> for more info. </p> <blockquote> <p>To use RSLs when compiling your application, you use the following application compiler options:</p> </blockquote> <pre><code>* runtime-shared-libraries Provides the run-time location of the shared library. * external-library-path|externs|load-externs Provides the compile-time location of the libraries. The compiler requires this for dynamic linking. </code></pre> <blockquote> <p>Use the runtime-shared-libraries option to specify the location of the SWF file that the application loads as an RSL at run time. You specify the location of the SWF file relative to the deployment location of the application. For example, if you store the library.swf file in the web_root/libraries directory on the web server, and the application in the web root, you specify libraries/library.swf.</p> <p>You can specify one or more libraries with this option. If you specify more than one library, separate each library with a comma.</p> <p>Use the external-library-path option to specify the location of the library's SWC file or open directory that the application references at compile time. The compiler provides compile-time link checking by using the library specified by this option. You can also use the externs or load-externs options to specify individual classes or an XML file that defines the contents of the library.</p> <p>The following command-line example compiles the MyApp application that uses two libraries:</p> <p>mxmlc -runtime-shared-libraries= ../libraries/CustomCellRenderer/library.swf, ../libraries/CustomDataGrid/library.swf -external-library-path=../libraries/CustomCellRenderer, ../libraries/CustomDataGrid MyApp.mxml</p> <p>The order of the libraries is significant because the base classes must be loaded before the classes that use them.</p> <p>You can also use a configuration file, as the following example shows:</p> <p> ../libraries/CustomCellRenderer ../libraries/CustomDataGrid ../libs/playerglobal.swc ../libraries/CustomCellRenderer/library.swf ../libraries/CustomDataGrid/library.swf </p> <p>The runtime-shared-libraries option is the relative location of the library.swf files when the application has been deployed. The external-library-path option is the location of the SWC file or open directory at compile time. Because of this, you must know the deployment locations of the libraries relative to the application when you compile it. You do not have to know the deployment structure when you create the library, because you use the compc command-line compiler to create a SWC file.</p> </blockquote> http://stackoverflow.com/questions/1231042/how-to-mute-entire-flex-application/1234013#1234013 1 Answer by Christophe Herreman for How to mute entire flex application? Christophe Herreman 2009-08-05T15:31:42Z 2009-08-05T15:31:42Z <p>I'm pretty sure there is no way to do that with ActionScript out of the box. You'll need to have some manager class that keeps track of all the sounds (Sound, SoundChannel, SoundTransform, etc and your video streams) in your application and that has logic for muting.</p> <p>If you can force your users to use firefox, there is a plugin available to mute swf files. Mute Flash - <a href="https://addons.mozilla.org/en-US/firefox/addon/5453" rel="nofollow">https://addons.mozilla.org/en-US/firefox/addon/5453</a></p> http://stackoverflow.com/questions/1233724/send-form-data-to-httpservice-how-to-approach-it-in-cairngorm/1233934#1233934 2 Answer by Christophe Herreman for Send form data to HTTPService: how to approach it in Cairngorm? Christophe Herreman 2009-08-05T15:15:11Z 2009-08-05T15:15:11Z <p>The best thing is to keep the credentials in the CreateSessionEvent class. You can then dispatch the event, the controller will pick it up and execute the corresponding command. In your command, you should invoke a business delegate that will make the httpservice call and respond back to the command. If you ever change the server communication to for instance Remoting, you can create another business delegate that knows how to handle remote object calls.</p> http://stackoverflow.com/questions/1224853/flex-arraycollection-removing-sort/1227607#1227607 2 Answer by Christophe Herreman for Flex: ArrayCollection removing sort. Christophe Herreman 2009-08-04T13:42:18Z 2009-08-04T13:42:18Z <p>Setting the sort to null should indeed remove the sort for the collection. You might need to do an optional refresh().</p> http://stackoverflow.com/questions/1226995/using-two-embedded-fonts-on-one-string/1227590#1227590 0 Answer by Christophe Herreman for Using two embedded fonts on one string Christophe Herreman 2009-08-04T13:39:22Z 2009-08-04T13:39:22Z <p>You can do this by applying 2 different <a href="http://livedocs.adobe.com/flex/3/langref/flash/text/TextFormat.html" rel="nofollow">TextFormat</a> objects to the text. Also see <a href="http://livedocs.adobe.com/flex/3/langref/flash/text/TextField.html#setTextFormat%28%29" rel="nofollow">setTextFormat()</a> on the TextField class that allows you to specify a begin- and endIndex of the text range on which you want to set the textformat.</p> http://stackoverflow.com/questions/1227475/flex-button-event-listeners-in-class/1227563#1227563 1 Answer by Christophe Herreman for flex button event listeners in Class Christophe Herreman 2009-08-04T13:34:08Z 2009-08-04T13:34:08Z <p>Since the click event of Button bubbles, you can just listen for a click event on the main application file and delegate to a handler function in a class.</p> <p>Or you can call the handler directly on the click of your button.</p> <pre><code>private var controller:ButtonListener = new ButtonListener(); &lt;mx:Button id="btnT1" x="252.5" y="10" label="t1" click="controller.handleClick(event)"/&gt; </code></pre> http://stackoverflow.com/questions/1227155/how-to-set-the-border-color-of-a-circleitemrenderer/1227486#1227486 0 Answer by Christophe Herreman for How to set the border color of a CircleItemRenderer Christophe Herreman 2009-08-04T13:16:36Z 2009-08-04T13:25:20Z <p>From the docs: </p> <blockquote> <p>It renders its area on screen using the fill and stroke styles of its associated series.</p> </blockquote> <p>So you'll have to assign a stroke to the dayEnergieLineSeries series.</p> <pre><code>[Bindable] private var _stroke:Stroke = new Stroke(...); &lt;mx:LineSeries id="dayEnergieLineSeries" stroke="{_stroke}"/&gt; </code></pre> <p>or if you don't need the data binding, just set it as a style.</p> <p>PS: There is a good chart explorer available here: <a href="http://demo.quietlyscheming.com/ChartSampler/app.html" rel="nofollow">http://demo.quietlyscheming.com/ChartSampler/app.html</a></p> http://stackoverflow.com/questions/1227266/how-do-i-open-a-connection-back-to-the-server-using-flex/1227401#1227401 1 Answer by Christophe Herreman for How do I open a connection back to the server using Flex? Christophe Herreman 2009-08-04T13:03:06Z 2009-08-04T13:03:06Z <p>You'll have to use a messaging server software and then use the Producer and Consumer classes in the Flex framework to send and receive messages.</p> <p>What you need depends on what server you are running on. If you are on a Java stack, you can use <a href="http://opensource.adobe.com/wiki/display/blazeds/BlazeDS/" rel="nofollow">BlazeDS</a> and <a href="http://activemq.apache.org/" rel="nofollow">ActiveMQ</a>.</p> <p>If you are streaming/consuming from and to different domains, you'll need to setup a <a href="http://www.adobe.com/devnet/articles/crossdomain%5Fpolicy%5Ffile%5Fspec.html" rel="nofollow">crossdomain</a> file that allows the inter-domain communication.</p> http://stackoverflow.com/questions/1224926/printing-arraycollection-in-text-fields-in-flex/1227375#1227375 -1 Answer by Christophe Herreman for Printing ArrayCollection in Text Fields in FLex Christophe Herreman 2009-08-04T12:57:45Z 2009-08-04T12:57:45Z <p>You can bind to the text property of the TextInput:</p> <pre><code>&lt;mx:TextInput id="keyword" styleName="glass" width="100%" text="{appSes}"/&gt; </code></pre> <p>(Not sure why you would want to do this though)</p> http://stackoverflow.com/questions/1649664/best-practice-keep-alive-session-in-flex/1650167#1650167 Comment by Christophe Herreman on best practice - keep alive session in flex Christophe Herreman 2009-11-01T06:53:46Z 2009-11-01T06:53:46Z We have a read-only view on a messaging system. The session will timeout since there are no requests send from the client explicitly. I think doing a ping-pong with the server is the only way to keep the session alive in this scenario. http://stackoverflow.com/questions/1498413/as3-date-not-serializing-to-java-date-using-blazeds/1498871#1498871 Comment by Christophe Herreman on AS3 Date not serializing to Java Date using BlazeDS Christophe Herreman 2009-09-30T15:57:32Z 2009-09-30T15:57:32Z did you already check with a http debugger (Charles for instance) if the date is not null when you send it out? That is before it is received on the server and parsed in BlazeDS. http://stackoverflow.com/questions/1227155/how-to-set-the-border-color-of-a-circleitemrenderer/1227486#1227486 Comment by Christophe Herreman on How to set the border color of a CircleItemRenderer Christophe Herreman 2009-08-04T13:50:15Z 2009-08-04T13:50:15Z The CircleItemRenderer uses the stroke of the series to draw itself, so you'll need to set a stroke on the series. This will not only affect your linestroke, but also the data point stroke. Check the sources (right click) of the link I posted. There are some helpful code examples there. http://stackoverflow.com/questions/1198018/how-to-make-source-path-dynamic/1198774#1198774 Comment by Christophe Herreman on how to make source path dynamic Christophe Herreman 2009-07-30T04:50:29Z 2009-07-30T04:50:29Z That is because userName is a variable. You need to declare it in your code and assign it a proper value. [Bindable] public var userName:String = &quot;Mahedi&quot;; http://stackoverflow.com/questions/1198831/clicking-on-the-flex-datagrid-must-check-the-checkbox-too Comment by Christophe Herreman on Clicking on the Flex datagrid must check the checkBox too.... Christophe Herreman 2009-07-29T11:26:36Z 2009-07-29T11:26:36Z seriously, at least take the time to formulate a proper question... http://stackoverflow.com/questions/1192246/flex-3-what-component-to-extend-for-drawing-application/1192257#1192257 Comment by Christophe Herreman on Flex 3 - What Component to extend for drawing application Christophe Herreman 2009-07-28T10:43:03Z 2009-07-28T10:43:03Z There is no special need to extend Canvas or any other UIComponent subclass. You can extend one of the classes listed above or Canvas or any other UIComponent if you want. http://stackoverflow.com/questions/1029158/how-to-handle-entity-creation-editing-in-a-master-detail/1032353#1032353 Comment by Christophe Herreman on How to handle entity creation/editing in a master-detail Christophe Herreman 2009-07-01T09:18:37Z 2009-07-01T09:18:37Z The master holds a cached list of persisted entities. When the user clicks an item from the master list, a popup opens with the details of the selected item which the user can edit. We use a copy of the selected item to edit, so we can undo the changes to the item just by closing the details window. However when we click OK in the details, we close the popup and need to merge the changes. The changes are not persisted immediately. There is a save action on the master that persists all changes in the database via (async) remote calls. The unit of work pattern might be interesting here. http://stackoverflow.com/questions/1029158/how-to-handle-entity-creation-editing-in-a-master-detail/1032353#1032353 Comment by Christophe Herreman on How to handle entity creation/editing in a master-detail Christophe Herreman 2009-06-25T07:58:49Z 2009-06-25T07:58:49Z Thanks for your feedback. The problem with passing references to edit is that you can't just cancel or undo the changes without storing the original values of the entity. http://stackoverflow.com/questions/905844/e4x-query-based-on-sub-attributes/913819#913819 Comment by Christophe Herreman on e4x query based on sub attributes Christophe Herreman 2009-05-27T05:59:58Z 2009-05-27T05:59:58Z That will return all metadata nodes. What I need is all accessor nodes that have a metadata node with a name attribute set to &quot;Required&quot;. http://stackoverflow.com/questions/905844/e4x-query-based-on-sub-attributes/905877#905877 Comment by Christophe Herreman on e4x query based on sub attributes Christophe Herreman 2009-05-25T08:52:34Z 2009-05-25T08:52:34Z Nope that didn't do it. http://stackoverflow.com/questions/772579/swf-is-not-a-loadable-module/853350#853350 Comment by Christophe Herreman on SWF is not a loadable module Christophe Herreman 2009-05-14T10:35:13Z 2009-05-14T10:35:13Z Thanks. The proposed workaround did the trick. http://stackoverflow.com/questions/772579/swf-is-not-a-loadable-module/772651#772651 Comment by Christophe Herreman on SWF is not a loadable module Christophe Herreman 2009-04-21T13:54:52Z 2009-04-21T13:54:52Z The crossdomain is in the ROOT directory of our Tomcat installation and I can verify this by browsing to it. The problem seems to be locally, see my update. http://stackoverflow.com/questions/661661/can-someone-explain-this-bit-manipulation-code/661677#661677 Comment by Christophe Herreman on Can someone explain this bit manipulation code? Christophe Herreman 2009-03-19T13:14:29Z 2009-03-19T13:14:29Z Thanks for your answer. So if I understand correctly, I could just replace 1&lt;&lt;2 or 2&lt;&lt;1 with 4, right? Is there any benefit in using the bit shift instead of the constant number 4? http://stackoverflow.com/questions/621680/what-is-the-purpose-of-remove-unused-references/621686#621686 Comment by Christophe Herreman on What is the purpose of "remove unused references" Christophe Herreman 2009-03-07T11:34:30Z 2009-03-07T11:34:30Z It's better because your source files will not be bloated will unused code/imports and hence will be easier to read and understand. Additionally, I think that the compiler will have less work to do and compiling will be a tiny bit faster. (I'm not 100% sure about that and this is compiler specific) http://stackoverflow.com/questions/621682/what-is-a-good-amount-of-code-to-have-in-a-single-file/621691#621691 Comment by Christophe Herreman on What is a good amount of code to have in a single file? Christophe Herreman 2009-03-07T11:21:21Z 2009-03-07T11:21:21Z I would certainly leave them in separate files since that will allow you to swap different modules more easily. Say you come up with a new implementation of particle, it will be easier to replace if the sources are split up (and it will be much better Object Oriented design)