Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7934633
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T21:41:58+00:00 2026-06-03T21:41:58+00:00

I am trying to create Adobe Air application in which I require the components

  • 0

I am trying to create Adobe Air application in which I require the components below:

Sample Image

Allow me to elaborate this mockup:

There are 2 panels on each side, and the items inside these panels can be drag and drop on each other, just like moving items around in 2 folders. Several tutorials have shown that a list with

dragEnabled = "true"
dropEnabled = "true"
dragMoveEnabled = "true"

will do the job. However, here comes the crucial part. I want my item in the list to have such a structure that I have an image on the left and TextArea on the right as specified above. When the user drags this “structured item”, I want the whole thing to go together to another side, regardless of where the user initially drags this “structured item” – meaning if the user clicks from the image and drag and drop it to the other side, this “structured item” will appear on the other side. Should the user drags from the TextArea, the same thing should happen.

The TextArea, a part of this “structured item”, which is inside the scrolling panel, should also allow the user to scroll its text as well.

So how do we do this in Adobe Air?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T21:42:00+00:00Added an answer on June 3, 2026 at 9:42 pm

    Flextras is right. It is always best to show the effort you have put in to trying different things and trying to figure it out on your own. However, I am in a good mood yet again today so here you go 🙂

    Main application:

            import mx.collections.ArrayCollection;
    
            [Bindable]
            private var list1Array:ArrayCollection = new ArrayCollection([
                {text: "a"},
                {text: "b"},
                {text: "c"},
                {text: "d"},
                {text: "e"}]);
            [Bindable]
            private var list2Array:ArrayCollection = new ArrayCollection();
    
        ]]>
    </fx:Script>
    
    <fx:Declarations>
        <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <s:HGroup>
        <s:List dataProvider="{list1Array}" dragEnabled="true" dragMoveEnabled="true" dropEnabled="true" itemRenderer="listItemRenderer"/>
        <s:List dataProvider="{list2Array}" dragEnabled="true" dragMoveEnabled="true" dropEnabled="true" itemRenderer="listItemRenderer"/>
    </s:HGroup>
    </s:Application>
    

    listItemRenderer:

    <?xml version="1.0" encoding="utf-8"?>
    <s:ItemRenderer xmlns:fx="http://ns.adobe.com/mxml/2009" 
                xmlns:s="library://ns.adobe.com/flex/spark" 
                xmlns:mx="library://ns.adobe.com/flex/mx" 
                autoDrawBackground="true">
    
    <fx:Script>
        <![CDATA[
            private function updateData():void
            {
                data.text = textArea.text;
            }
        ]]>
    </fx:Script>
    <s:HGroup>
        <mx:Image width="50" height="50"/>
        <s:TextArea id="textArea" text="{data.text}" change="updateData()"/>
    </s:HGroup> 
    </s:ItemRenderer>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to create an Adobe Air Application, or making basic Mobile Apps
I am trying to create a video player in Adobe AIR. I want to
I am trying to use the SecureSWF demo to package an Adobe AIR application
For my AIR based application I am trying to create a custom component based
I'm trying create a bot which automatically likes Facebook posts. Using Mechanize I can
Trying to create a macro which can be used for print debug messages when
Trying to create a background-image slideshow and am getting this error... This is the
Im trying to create a board game generator in ruby which takes images from
I am trying to package air runtime and air application in a native installer.
Good afternoon I was wandering if this is possible to do with adobe air.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.