Can this be achieved in Flash rather than Flex

Hi
I found something that's similar to some functionality I need:
http://blog.flexexamples.com/2007/09/19/dragging-rows-between-two-different-flex-datagrid- controls/
I was wondering if this is possible in As3 using Flash CS5?
Thanks
Shaun

well, you'd make one movieclip that contains dynamic textfields so you can add the dragged rows data to the textfields' text properties.
and i don't know of any tutorials for this.  using google is the best way i've found to find tutorials.  but this is such a narrow task i doubt you'll be successful finding a tutorial.
on the other hand, this is pretty easy if you break it up into a few steps:
1.  create a movieclip (with a linkage id (as2) or class (as3) that contains as many dynamic textfields as columns in your dragged datagrid.  and now that i'm typing this, i can see that this step could be supplanted by dynamically creating a movieclip and adding textfields to it.  that way if you had several datagrids with varying number of columns you wouldn't be restricted or stuck making several movieclips,
2. retrieve the data from the clicked row of the datagrid.
3. apply the data to the text property of your textfields.
4.  drag this movieclip until a mouseup is detected.
5.  on mouseup drop the movieclip.  if it's over a drop-enabled datagrid, add the data to this datagrid and possibly remove the data from the drag-enabled datagrid and remove the movieclip.

Similar Messages

  • Can i upload  first  Transaction data rather than master data what will hap

    hai,
    can i upload  first  Transaction data rather than master data what happends going in bw regarding performance issues like indexes
    let me know
    regards,
    murali

    Hi Murali,
    you can load the transaction data before master data. The main impact will be, that the system has to generate sid's and has to populate the sid-table of the master data objects while loading the data to a data target (cube or ods that is activated for bex reporting). This basically means that your data loads will take some more time. Additionally, if you need the master data attributes somewhere in your update or transfer rules, you will not get the correct information.
    So basically it is always a good approach to load and activate the master data before loading the transactional data. But anyway, specially in the development environment I usually don't load all the necessary master data.
    regards
    Siggi
    PS: navigational attributes of the data targets will not be available until you loaded the master data and scheduled the attribute and hierarchy change run.
    Message was edited by: Siegfried Szameitat

  • Can I install the online version rather than using my dvd? it successfully installed (up to a point) that way, it just wont accept my serial number for some reason. my dvd isnt working properly.

    Can I install the online version rather than using my dvd? it successfully installed (up to a point) that way, it just wont accept my serial number for some reason. my dvd isnt working properly.

    If it gets far enough to reject your serial number, it won't help to download it. It must have installed ok.
    What is the message you get (DON'T tell us the serial number!!)?
    Does it mention a "qualifying product" by any chance?

  • I have 2 ipad2s on one account. can i share the apps purchased rather than having to purchase same app for each.  I am only user.

    I have 2 ipad2s on one apple/itunes account.  can i share the apps purchased rather than purchase the same apps for each ipad2
    . i am only user.

    .... And you can put them on as many iDevices as you own. There is no limit as long as you use the same Apple ID and iTunes account for all of the devices.

  • How can I use "t3://becluster:6001" rather than "t3://dcsv02,dcsv01:6001"

              I have 2 machines in a cluster (dcsv01 and dcsv02) (HP UNIX with weblogic server
              5.1 sp8) and 1 Windows PC with weblogic 5.1 sp10.
              I try to make a t3 connection between the PC and the cluster of machines.
              On the Windows PC I have the following configuration for the
              "c:\windows\system32\drivers\etc\Hosts" :
              171.1.70.61     becluster
              171.1.70.62     becluster
              where
              "171.1.70.61 is dcsv01 and
              171.1.70.62 is dcsv02 "
              If I connect my PC to the cluster with :
              hp.put(Context.PROVIDER_URL, "t3://dcsv01, dcsv02:6001"); :
              I have a great failover mechanism : if any of the machine (dcsv01 or dcsv02) are
              down the requests are routed to the other one.
              BUT!! If I connect my PC to the cluster with :
              hp.put(Context.PROVIDER_URL, "t3://becluster:6001"); :
              I have a not great failover mechanism :
              say that my windows hosts file looks like :
              171.1.70.61(dcsv01)     becluster
              171.1.70.62(dcsv02)     becluster
              then if dcsv02 is down then all requests are routed to dcsv01 and that is fine.
              BUT!! if dcsv01 is down then I got on my PC the
              "Bootstrap unable to get a t3 connection to dcsv01" exception and failover does
              not work. (not the way that it does with t3://dcsv01, dcsv02:6001 )
              So how can I use
              "t3://beclsuter:6001" rather than
              "t3://dcsv01, dcsv02:6001" with the same failover service????
              Thanks
              

              Thanks mike,
              In a UNIX or windows environment how can I get a DNS server that round robin?
              "Michael Reiche" <[email protected]> wrote:
              >You need to have becluster defined in a DNS that round-robins.
              >
              >Mike
              >
              >"Martial" <[email protected]> wrote in message
              >news:[email protected]...
              >>
              >> I have 2 machines in a cluster (dcsv01 and dcsv02) (HP UNIX with weblogic
              >server
              >> 5.1 sp8) and 1 Windows PC with weblogic 5.1 sp10.
              >>
              >> I try to make a t3 connection between the PC and the cluster of machines.
              >>
              >> On the Windows PC I have the following configuration for the
              >> "c:\windows\system32\drivers\etc\Hosts" :
              >> 171.1.70.61 becluster
              >> 171.1.70.62 becluster
              >> where
              >> "171.1.70.61 is dcsv01 and
              >> 171.1.70.62 is dcsv02 "
              >>
              >> If I connect my PC to the cluster with :
              >> hp.put(Context.PROVIDER_URL, "t3://dcsv01, dcsv02:6001"); :
              >> I have a great failover mechanism : if any of the machine (dcsv01 or
              >dcsv02) are
              >> down the requests are routed to the other one.
              >>
              >> BUT!! If I connect my PC to the cluster with :
              >> hp.put(Context.PROVIDER_URL, "t3://becluster:6001"); :
              >> I have a not great failover mechanism :
              >> say that my windows hosts file looks like :
              >> ..
              >> 171.1.70.61(dcsv01) becluster
              >> 171.1.70.62(dcsv02) becluster
              >> ..
              >> then if dcsv02 is down then all requests are routed to dcsv01 and that
              >is
              >fine.
              >> BUT!! if dcsv01 is down then I got on my PC the
              >> "Bootstrap unable to get a t3 connection to dcsv01" exception and failover
              >does
              >> not work. (not the way that it does with t3://dcsv01, dcsv02:6001 )
              >> So how can I use
              >> "t3://beclsuter:6001" rather than
              >> "t3://dcsv01, dcsv02:6001" with the same failover service????
              >>
              >> Thanks
              >>
              >>
              >>
              >
              >
              

  • Need to pass out parameter in middle of a process. How can this be achieved

    Package test_pkg
    procedure main_prc(x_stat out varchar2)
    insert_prc(l_stat);
    x_stat:=l_stat;
    valid_prc
    end main_prc;
    procedure insert_prc(x_stat1 out varchar2)
         insert into staging table
         x_stat:='S';
    end insert_prc;
    procedure valid_prc
         validate staging table data
    end valid_prc;
    end test_pkg;
    Requirement: Need to pass out parameter in middle of a process. How can this be achieved?

    Use return at any time to get the out variable, but this will stop the process.

  • HT201976 With Family sharing can you share specific iTunes Playlists rather than the complete library?

    With Family sharing can you share specific iTunes Playlists rather than the complete library?

    With Family sharing can you share specific iTunes Playlists rather than the complete library?

  • HT201976 With Home sharing can you share specific iTunes Playlists rather than the complete library?

    With Home sharing can you share specific iTunes Playlists rather than the complete library?

    With Home sharing can you share specific iTunes Playlists rather than the complete library?

  • How can I download to the desktop rather than preview, preview is a nuisance

    How can I download items to my desktop rather than "preview"? Preview is a nuisance.

    You can set up a default download location through your browser(s) Preferences.
    If you do not want Preview to open the files, do the following:
    Highlight your file>File>Get Info>
    In the Get Info window, scroll down to "Open with:"
    Select the application you want to open the file with.
    Click the "Change All..." button if you want to "Use this application to open all documents like this.”
    ==========================
    Short cut:
    Control mouse click (right mouse click if available), Open With...-> Other
    Pick Preview on a PDF document, and make sure to check Always Open With before hitting Open.
    Thanks to a brody for the above short cut.

  • How can I file at last location rather than location of current file?

    I have Abobe Reader X.  In the old Adobe, when I saved a file, it took me to the last folder I was in, not the location of the current file.  Thus far, I have not been able to find out how to get Adobe Reader X to do this.  I even asked work help desk for help and their solution to unclick 'Automatically save document changes to temp file' worked once. 
    Is it possible?  This is what I want.
    Example:
    I open file that is saved at Y:Scanned Files and save it at
    X:Dogs/Breeds/Hounds/Sighthounds/Basenjis.  I open the next file that is at Y:Scanned Files and click on File:Save As/PDF and window opens to save at Y:Scanned Files rather than at X:Dogs/Breeds/Hounds/Sighthounds/Basenjis, where I just was.  I want to save file at X:Dogs/Breeds/Hounds/Sighthounds/Afghans so instead of just one click, I now have to go through six.  Now imagine you have 30 or 40 documents you have to save.  That's minimum 180 clicks versus 30.  A big difference.  And if you multiply it further by daily and weekly, it's a lot.
    How can I get Adobe Reader X to open the 'save as' window at the last location rather than the current file's address?  I also have Adobe Acrobat, but can't figure out how to get it work in that either.
    I do not like Adobe Reader X.   Unfortunately, it got downloaded automatically at work. 
    Another complaint I have is when I have Adobe Acrobat open and I click on a pdf to open, rather than open in Adobe Acrobat, it opens in Adobe Reader X (which was not the case with the previous Reader).  If I want to open a doc in Acrobat, I have to go to Acrobat and File/Open, which is a pain.
    Another complaint is, why do you have 'save as' and then 'pdf' or 'text'?  This is another time consuming click I have to make.  Add it to the 180 I'm already making above and you can see why I'm extremely unhappy and frustated with this version of Adobe. 
    Please let me know if the above is feasible or not and if it is, how to do it.  If it isn't feasible, please make the above adjustments to Reader Y and put it out pronto.  Thank you.

    If you would like to contact one of the UK based BT Care Team who moderate this forum, they may be able to help you.
    They can be contacted using this link BT Care Team
    They normally respond by phone or e-mail, within three working days, however you should get an immediate confirmation, with a tracking number.
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • Can I only bridge my network, rather than extending it?

    I have an airport extreme, which I'm trying to use as a bridge for the wired devices in my entertainment system for HD streaming.  It mostly works, but has problems with multiple devices are active on the network.   The other end of the connection is a current model Time Capsule.  The Extreme is a previous generation (the flat style).
    What I really want is only a bridge, but the option in the Airport utility is to "Extend a wireless network".   So, clients connect to the airport in the living room rather than the access point farther away.
    Can this be controlled?

    Unfortunately, if you try to configure the AirPort Extreme to operate only as a bridge (Join a wireless network)...and not an extender....the Ethernet ports are not enabled on the device in that type of configuration, so it is virtually useless in that regard.
    Try to minimize the obstructions in the wireless signal path between the Time Capsule and AirPort Extreme as much as possible. Ideally, you want line-of-sight between the devices.
    Ironically, a less expensive AirPort Express can be configured to "join" a wireless network....and....the Ethernet port is enabled when you do this.
    The only way to try to control what device that computers connect to is temporarily turn off the WiFi on a Mac or iOS device, move it near the wireless access point and turn the WiFi back on to see if the device will pick up a signal from the closest and strongest access point.
    Actually, a Mac laptop will usually automatically switch access points as it moves from one area to another and pick up the best signal from the closest access point, but iOS devices like the iPhone and iPad will not usually do this, since they have much simpler operating systems.

  • Can I have @*businessname*.co.uk rather than @btin...

    I'm wondering if it's possible to set up my emails so that I have my business name rather than @btinternet.co.uk?
    Can this be done on the primary and sub accounts?
    I'd be very grateful if anyone can tell me how to do this?
    Many thanks, in advance.
    Solved!
    Go to Solution.

    Have you tried to get an email address along the lines of "[email protected] by using one of the sub accounts?
    (If I have helped you in any way to say "Thank You" please click on the star next to the message. Thank You)
    If I have solved your Issue please click the "Mark as accepted solution" button.

  • Can I download Snow leopard/Lion rather than order hard copy delivery?  Not finding in iTunes nor on apple website..

    I currently have Mac OSx and looking to upgrade to Lion (sounds like I need to go through Snow Leopard upgrade first).  Is there an easy way to simply download these upgrades rather than order via the mail?  Any way to avoid updgrading two separate times and have the ability to go direct to the Lion upgrade?
    Thanks!

    You cannot download Snow Leopard. You have to buy it on disk.
    Once you've installed that, and updated it to 10.6.8, you can download Lion from the App Store.
    Apple also sells Lion on a USB stick, but I don't know if it is possible to install that on a disk with just Leopard.
    Also, make sure your MacBook can run Lion: http://www.apple.com/macosx/specs.html

  • How can I sent photos as attachment rather than embedded in the email?

    For work, I need to send photos to my editor via email. In Mail, the jpgs automatically become embedded in the body of the the email, but my editor would prefer to receive them as attachments. Is there any way to send photos as attachments in Mail, rather than embedded email itself?

    LaSylphide, the Mail forum shows up as one of the categories within the "Mac OS and System Software" forum. Click on whichever version of OSX you're using, and you'll see the list of categories.
    There are several threads on this topic, and I've seen three solutions:
    1. Check the "Send Windows-Friendly Attachments" box. Some people say it works, some say it doesn't.
    2. Open Terminal and type:
    defaults write com.apple.mail DisableInlineAttachmentViewing -bool yes
    Some people say this works, some say it doesn't.
    3. In Mail > Preferences > Composing, make sure "Message Format" is set to "Plain Text." Once again, some say this works, some say it doesn't.
    Hopefully, one of those will solve your problem. There may also be a setting in your editor's email program that would solve it, but I'm assuming that's a Windows app and I haven't worked with Windows since 1993, so I'm no help there.

  • Can I use a SD Card rather than a USB stick when using Lion Recovery Disk Assistant

    I'm using a MB Pro 2010, can I use a SD Card in the SD Card slot rather than a USB stick when using Lion Recovery Disk Assistant.  I would like to use the 16GB chip with a single 1GB partition so I can dump a bunch of other backup stuff into the same chipper.

    Yes, you could certainly do that, provided you have a card reader or an SD card slot available on both Macs and what you are copying is smaller than the capacity of your SD card.
    But that's an awfully slow way to transfer GB's of files.  32GB SD cards cost anywhere from about $20 to $90 and of course the cheaper cards will be the slowest cards.  Also need to consider that your iPhoto, iTunes and especially iMovie libraries may be larger than your SD card's capacity, and there is no easy way to 'split' them to save partial libraries and reassemble them on your new Mac.
    A better solution is an external hard drive connected via FW or USB2.  Much faster and without the capacity limit of an SD card.  For example, you could get a 500GB OWC Mercury Elite Pro mini drive (5400 rpm) for $115 and after you are done using it for file transfer it would be a nice backup drive.  Or build your own with an OWC mini case and a 500GB WD Scorpio 7200 rpm drive for about $120.   Both support eSATA, FW400/800 and USB2.
    Or you could just network the two Macs together and use the Finder to transfer files that way.  Cheap, fast, and it works.

Maybe you are looking for

  • Read timed out error while executing a web service

    hi, i have a remote funtion module which takes around 31 seconds in AAD (developing enviroment) server which has around 4 select queries,the same RFC is taking around 25 mins in AAT (testing environment) due to more data. Now when i am releasing the

  • Adobe Flash Player 11.3 r300 has stopped working

    I have Firefox 13.0.1, Win 7 Home Edition 64 bit, latest adobe flash player version 11.3.300.262. Latest nvidia drivers 301.42 - WHQL, 260 gtx nvidia card. I did a clean reinstall for nvidia drivers, and flash drivers, still same problem. Everytime I

  • Intra date file processing in EBS

    Hi, While processing Intra date file, we are unable to post the opening balance (BAI code 040) in EBS processing.I have configured 040 External transaction and activated the 21 process type but still we are unable to post the opening balance with 040

  • Opening Project First Time from Version Control.  RoboSource Node

    Four writers have upgraded successfully.  My fifth is having issues... She has Serena Dimensions SCC installed as well (another source control product - used by Applications, not the authors or Infra. Problem: When she is establishing the root path (

  • How to track stolen laptops?

    I lost my Lenovo G580 Laptop last week. It doesn't have any tracking programs installed. But i have the serial number and MAC id of my Laptop. Is there a way that i can be able to track my laptop...