-
Recent Posts
Recent Comments
Archives
- December 2012
- November 2012
- August 2012
- August 2011
- March 2011
- February 2011
- September 2010
- July 2010
- April 2010
- January 2010
- November 2009
- September 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- May 2008
- April 2008
- December 2007
- September 2007
- August 2007
- July 2007
- February 2007
- March 2006
- September 2005
- July 2005
Categories
Meta
Category Archives: flex
Getting started with Glare-DataServices
Glare-DataServices is a framework for building Flex Remoting services in VisualWorks Smalltalk. In this post, I will guide you through the steps for creating a small application that demonstrates the use of the framework. Install the bundle First, you have … Continue reading
Executable operation specifcations in Glare-DataServices
Glare is a Flex Remoting and Messaging server written in VisualWorks Smalltalk by Philipp Bunge. I am extending his work with Glare-DataServices which basically provides a HttpServlet that dispatches operation invocations send from a AMF client (Flex,AIR) to Smalltalk objects. … Continue reading
Flex Remoting ignores class mapping
if your application does not yet actually use that client Class. In my application, the result of a remote invocation kept returning a dynamic Object instead of the intended ValueObject class “Slot” although I specified the mapping and the RemoteClass … Continue reading
Tiny, single-purpose class: ResultToFunctionAdaptor
Every now and then I need a small piece of functionality that perfectly fits into a single, minimal-behavior thus single-purpose class. Continue reading
Sorting XMLListCollection by attribute
Just want to share the result of a small puzzle I had about sorting elements of an XMLListCollection by one of the attributes of such an element. At first, I tried sorting the elements of the XMLList I had, but … Continue reading
Flex Project version and buildnumber
I wanted to associate version and build information with every compilation of a Flex project. Such information is useful when deploying to different staging environments (e.g. are you sure you uploaded the correct SWF ?) and helps tracking feedback (e.g. … Continue reading
Deploying Flex using Capistrano
Capistrano is a deployment tool initially created to support the remote installation of Rails applications. One of the assumptions Capistrano makes is that the application (source) can be pulled out of a source code management system such as Subversion. In … Continue reading
Flex Bindable Hash
For the Dunelox library, I needed a simplified Flex version of the Spring ApplicationContext which is a generic Hash object containing model objects accessed by a key (String). Visual components that are wired to these models objects need to be … Continue reading