<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Armindo Cachada&#039;s Blog: Struts 2, Adobe Flex and ATG &#187; Adobe Flex</title>
	<atom:link href="http://www.spltech.co.uk/blog/tag/adobe-flex/feed" rel="self" type="application/rss+xml" />
	<link>http://www.spltech.co.uk/blog</link>
	<description>In this blog I talk about Struts 2, Adobe Flex, JBOSS, ATG and other technologies.</description>
	<lastBuildDate>Sun, 14 Feb 2010 15:33:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Adding Drag and Drag functionality in Adobe Air</title>
		<link>http://www.spltech.co.uk/blog/adobe-flex/ui/adding-drag-and-drag-functionality-in-adobe-air</link>
		<comments>http://www.spltech.co.uk/blog/adobe-flex/ui/adding-drag-and-drag-functionality-in-adobe-air#comments</comments>
		<pubDate>Wed, 09 Sep 2009 16:18:34 +0000</pubDate>
		<dc:creator>Armindo Cachada</dc:creator>
				<category><![CDATA[Adobe Air]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[Adobe Flex]]></category>
		<category><![CDATA[drag and drop]]></category>
		<category><![CDATA[flex 3]]></category>

		<guid isPermaLink="false">http://www.spltech.co.uk/blog/?p=95</guid>
		<description><![CDATA[In this tutorial I will teach you step by step how to use the out of the box drag &#038; drop functionality provided by flex list controls.

Just some basic theory before we go into code. The drag &#038; drop process has three stages – initiation, dragging and dropping.

The initiation is when the user clicks on a flex component and keeps the button pressed. In this case the component that the user clicks on is the drag initiator. Any flex component that supports dragging will handle either the mouseDown() or mouseMove() event to initiate the drag &#038; drop operation. The event handler will then create a DragSource object which contains data related to the object being dragged. For example if you are dragging a file between two components, the DragSource object will contain a reference to a File object. Once the DragSource is constructed the DragManager.doDrag() method is called where the first argument is a reference to the object that initiated the drag, the second argument is the DragSource object and the third argument is a reference to the mouse event that called the event handler. There is a fourth optional argument that allows to specify a drag proxy that may be used to represent the object being dragged on the screen(e.g. a semi-transparent version of the drag initiator)

In the Dragging stage the user moves the flex component across the screen up to the drop target. If you specify a drag proxy image, that is what is shown on the screen when dragging the component. If not specified a rectangle will be shown instead.

In the dropping stage when the component being dragged arrives to a potential drop target, a dragEnter event is raised. The event handler that handles this event should check whether the DragSource object contains data that is of an acceptable format.  If that’s the case then DragManager.acceptDragDrop() is called indicating that the drop target is happy in accepting the dragged data.]]></description>
		<wfw:commentRss>http://www.spltech.co.uk/blog/adobe-flex/ui/adding-drag-and-drag-functionality-in-adobe-air/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Integrate Adobe Flex and JBOSS using BlazeDS &#8211; Part II</title>
		<link>http://www.spltech.co.uk/blog/jboss/integrate-adobe-flex-and-jboss-using-blazeds-part-ii</link>
		<comments>http://www.spltech.co.uk/blog/jboss/integrate-adobe-flex-and-jboss-using-blazeds-part-ii#comments</comments>
		<pubDate>Mon, 31 Aug 2009 12:22:45 +0000</pubDate>
		<dc:creator>Armindo Cachada</dc:creator>
				<category><![CDATA[Data Services]]></category>
		<category><![CDATA[Integration]]></category>
		<category><![CDATA[JBOSS]]></category>
		<category><![CDATA[Adobe Flex]]></category>
		<category><![CDATA[BlazeDS]]></category>
		<category><![CDATA[EJB]]></category>
		<category><![CDATA[EJB 3]]></category>
		<category><![CDATA[flex 3]]></category>

		<guid isPermaLink="false">http://www.spltech.co.uk/blog/?p=47</guid>
		<description><![CDATA[In the first part of this tutorial I showed you an example on how to integrate flex with JBOSS using BlazeDS. In this example we used RemoteObject in Actionscript to create a new instance of uk.co.spltech.remote.RemoteService and call the callMe() method remotely. The method returned a list of strings that we used to populate a [...]]]></description>
		<wfw:commentRss>http://www.spltech.co.uk/blog/jboss/integrate-adobe-flex-and-jboss-using-blazeds-part-ii/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Integrate Adobe Flex and JBOSS using BlazeDS &#8211; Part I</title>
		<link>http://www.spltech.co.uk/blog/jboss/integrate-adobe-flex-and-jboss-using-blazeds-part-i</link>
		<comments>http://www.spltech.co.uk/blog/jboss/integrate-adobe-flex-and-jboss-using-blazeds-part-i#comments</comments>
		<pubDate>Mon, 31 Aug 2009 12:21:27 +0000</pubDate>
		<dc:creator>Armindo Cachada</dc:creator>
				<category><![CDATA[Data Services]]></category>
		<category><![CDATA[Integration]]></category>
		<category><![CDATA[JBOSS]]></category>
		<category><![CDATA[Adobe Flex]]></category>
		<category><![CDATA[Adobe LiveCycle DS]]></category>
		<category><![CDATA[BlazeDS]]></category>
		<category><![CDATA[Struts 2]]></category>

		<guid isPermaLink="false">http://www.spltech.co.uk/blog/?p=45</guid>
		<description><![CDATA[In this tutorial I will give you step by step instructions on how to integrate Adobe Flex and JBOSS using BlazeDS.
Although in this tutorial I am addressing BlazeDS, the steps in this tutorial should also apply to Adobe Flex LiveCycle Data Services. The only difference are the jars that you copy to your WEB-INF/lib directory. [...]]]></description>
		<wfw:commentRss>http://www.spltech.co.uk/blog/jboss/integrate-adobe-flex-and-jboss-using-blazeds-part-i/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Adobe Flex with Struts 2 using HttpService</title>
		<link>http://www.spltech.co.uk/blog/struts-2/adobe-flex-with-struts-2-using-httpservice</link>
		<comments>http://www.spltech.co.uk/blog/struts-2/adobe-flex-with-struts-2-using-httpservice#comments</comments>
		<pubDate>Mon, 31 Aug 2009 12:10:15 +0000</pubDate>
		<dc:creator>Armindo Cachada</dc:creator>
				<category><![CDATA[Integration]]></category>
		<category><![CDATA[Struts 2]]></category>
		<category><![CDATA[Adobe Flex]]></category>
		<category><![CDATA[flex 3]]></category>
		<category><![CDATA[HttpService]]></category>
		<category><![CDATA[struts+flex]]></category>
		<category><![CDATA[struts2+flex]]></category>

		<guid isPermaLink="false">http://www.spltech.co.uk/blog/?p=33</guid>
		<description><![CDATA[Using HttpService is the easiest way in which you can integrate Adobe Flex and Struts 2. As an example I will show you how you can create a registration form in Adobe Flex which calls a struts 2 action to create new users. Note that this example is very simple and for demonstration purposes. I [...]]]></description>
		<wfw:commentRss>http://www.spltech.co.uk/blog/struts-2/adobe-flex-with-struts-2-using-httpservice/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
