Blog Detail
Tips & Tricks for Struts 2, Adobe Flex and ATG
http://www.spltech.co.uk/blog
In this blog I concentrate on web development, Java/J2EE, JBOSS, Adobe Flex, Struts 2, SEO and performance optimization.
Recent Posts
Integrating Adobe Flex with Struts 2 and JBOSS Using BlazeDS
The first step of this process will be to able to run BlazeDS on JBOSS without struts 2. If that is not working yet for you please do that first. The main reason that Struts 2 and BlazeDS out of the box fail to work together is because most configura...
Native Drag and Drop in Adobe Air with example
In this tutorial I will teach you how to create a simple adobe air application with native drag and drop support using a file system manager as example, that can copy/move files dragged to/from the OS desktop. What does it mean to create an applicati...
Adding Drag and Drag functionality in Adobe Air
In this tutorial I will teach you step by step how to use the out of the box drag & drop functionality provided by flex list controls. Just some basic theory before we go into code. The drag & drop process has three stages – initiation, ...
How to apply effects to components inside containers with automated layout
In this tutorial I will explain how to apply a tween effect to a component inside a container with automated layout. Containers like VBox, HBox, Panel(except for layout=absolute), Grid, … automatically position items for you. Lets try to apply...
Creating a File Manager in Adobe Air
In my previous post I taught you how to create a simple Adobe Air application. This time we are going to be a bit more ambitious. I want to show how easy is to create an Adobe Air application. So let’s create a simple file manager with drag ...
Generating a random number in actionscript 3
Generating a random number in actionscript 3 is very similar to java. To generate a random number betwen 0 and 100: var number:Number = Math.round(Math.random() * 100); Where Math.random() generates a random number between 0 and 1 and Math.round(),...

