Can you group emails into conversations by drag and drop?

Conversations in Mail is working fine.  However, sometimes there are messages that don't link because they are from the same person but a different time or not in the current "related" group?
Can you MAKE them group into the conversation somehow?

I never have this problem

Similar Messages

  • Can you use a custom cursor with drag and drop?

    Hi there! I'm a newbie flash user and working on a simulation for a graduate course in instructional design. I'm using Flash Professional CC on Mac. Here's what I'm trying to do. I have several draggable sprites on the stage and three target sprites. I have specified the original x,y locations of the sprites and have set the end x,y locations as those of each of the three targets. Items must be dragged to one of the three targets.
    Some questions:
    1. Can I specify more than one End x,y location for a draggable sprite? I'm creating a lesson to teach kindergartners how to sort lunchroom waste. If they have a napkin, for example, it could either go into the compost OR into the recycling. In cases like this where an item could really be placed into more than one bin, I want them to get it right if they do either of those things, rather than forcing them to choose which one.
    2. To make my project more "fun" for kids, I wanted to customize the cursor with a graphic of  hand. When I tried this in the flash file it works perfectly until I add the drag and drop functionality for the wasted items. Then the cursor will more around  but not pick up any items. Once I revert back to the standard pointer, the correct drag and drop functionality is restored.
    3. I have it set to snap back to the original location if learner attempts to drop the item on the wrong target. I want to be able to play a sound file when that happens, as well as play a sound file when it lands on the correct target, as well as shrink the item and change its opacity so that it appears invisible. I want to give the illusion of it being placed into the bin. I have no idea as to the proper way to code these events so that they happen.
    4. I've watched dozens of hours of youtube tutorials before coming here. I'm a quick study, but am very new to action script. In one of the videos the developer showed referencing an external action script file which I don't think is an option in CC. The coding method he used seemed much more streamlined and "clean" than the chunks I'm working with now. Is there an easy way for me to code information about these objects  than the way I've got it here now? I hate starting new things with bad habits. The perils of self-teaching.
    Thanks!
    I'm pasting my code from the actions panel below so you can see what's going on:
    stop();
    /* Custom Mouse Cursor
    Replaces the default mouse cursor with the specified symbol instance.
    stage.addChild(customcursor);
    customcursor.mouseEnabled = false;
    customcursor.addEventListener(Event.ENTER_FRAME, fl_CustomMouseCursor);
    function fl_CustomMouseCursor(event:Event)
      customcursor.x = stage.mouseX;
      customcursor.y = stage.mouseY;
    Mouse.hide();
    //To restore the default mouse pointer, uncomment the following lines:
    customcursor.removeEventListener(Event.ENTER_FRAME, fl_CustomMouseCursor);
    stage.removeChild(customcursor);
    Mouse.show();
    //set up variables and objects for dragging
    var offset:int = 10;
    var appleStartX:int = 243;
    var appleStartY:int = 156;
    var appleEndX:int = 522;
    var appleEndY:int = 22;
    apple.buttonMode = true;
    apple.addEventListener(MouseEvent.MOUSE_DOWN, startDragging);
    apple.addEventListener(MouseEvent.MOUSE_UP, stopDragging);
    var cupStartX:int = 39;
    var cupStartY:int = 266;
    var cupEndX:int = 520;
    var cupEndY:int = 175;
    cup.buttonMode = true;
    cup.addEventListener(MouseEvent.MOUSE_DOWN, startDragging);
    cup.addEventListener(MouseEvent.MOUSE_UP, stopDragging);
    var barStartX:int = 178;
    var barStartY:int = 234;
    var barEndX:int = 522;
    var barEndY:int = 22;
    bar.buttonMode = true;
    bar.addEventListener(MouseEvent.MOUSE_DOWN, startDragging);
    bar.addEventListener(MouseEvent.MOUSE_UP, stopDragging);
    var orangeStartX:int = 284;
    var orangeStartY:int = 102;
    var orangeEndX:int = 522;
    var orangeEndY:int = 22;
    orange.buttonMode = true;
    orange.addEventListener(MouseEvent.MOUSE_DOWN, startDragging);
    orange.addEventListener(MouseEvent.MOUSE_UP, stopDragging);
    var bottleStartX:int = 172;
    var bottleStartY:int = 303;
    var bottleEndX:int = 520;
    var bottleEndY:int = 175;
    bottle.buttonMode = true;
    bottle.addEventListener(MouseEvent.MOUSE_DOWN, startDragging);
    bottle.addEventListener(MouseEvent.MOUSE_UP, stopDragging);
    var bananaStartX:int = 113;
    var bananaStartY:int = 123;
    var bananaEndX:int = 522;
    var bananaEndY:int = 22;
    banana.buttonMode = true;
    banana.addEventListener(MouseEvent.MOUSE_DOWN, startDragging);
    banana.addEventListener(MouseEvent.MOUSE_UP, stopDragging);
    var napkinStartX:int = 248;
    var napkinStartY:int = 271;
    var napkinEndX:int = 520;
    var napkinEndY:int = 175;
    napkin.buttonMode = true;
    napkin.addEventListener(MouseEvent.MOUSE_DOWN, startDragging);
    napkin.addEventListener(MouseEvent.MOUSE_UP, stopDragging);
    var yogurtStartX:int = 27;
    var yogurtStartY:int = 136;
    var yogurtEndX:int = 518;
    var yogurtEndY:int = 329;
    yogurt.buttonMode = true;
    yogurt.addEventListener(MouseEvent.MOUSE_DOWN, startDragging);
    yogurt.addEventListener(MouseEvent.MOUSE_UP, stopDragging);
    var strawberryStartX:int = 120;
    var strawberryStartY:int = 285;
    var strawberryEndX:int = 522;
    var strawberryEndY:int = 22;
    strawberry.buttonMode = true;
    strawberry.addEventListener(MouseEvent.MOUSE_DOWN, startDragging);
    strawberry.addEventListener(MouseEvent.MOUSE_UP, stopDragging);
    var sandwichStartX:int = 7;
    var sandwichStartY:int = 364;
    var sandwichEndX:int = 522;
    var sandwichEndY:int = 22;
    sandwich.buttonMode = true;
    sandwich.addEventListener(MouseEvent.MOUSE_DOWN, startDragging);
    sandwich.addEventListener(MouseEvent.MOUSE_UP, stopDragging);
    var juiceStartX:int = 88;
    var juiceStartY:int = 347;
    var juiceEndX:int = 518;
    var juiceEndY:int = 329;
    juice.buttonMode = true;
    juice.addEventListener(MouseEvent.MOUSE_DOWN, startDragging);
    juice.addEventListener(MouseEvent.MOUSE_UP, stopDragging);
    var foilStartX:int = 39;
    var foilStartY:int = 416;
    var foilEndX:int = 520;
    var foilEndY:int = 175;
    foil.buttonMode = true;
    foil.addEventListener(MouseEvent.MOUSE_DOWN, startDragging);
    foil.addEventListener(MouseEvent.MOUSE_UP, stopDragging);
    var waxbagStartX:int = 235;
    var waxbagStartY:int = 342;
    var waxbagEndX:int = 522;
    var waxbagEndY:int = 22;
    waxbag.buttonMode = true;
    waxbag.addEventListener(MouseEvent.MOUSE_DOWN, startDragging);
    waxbag.addEventListener(MouseEvent.MOUSE_UP, stopDragging);
    function startDragging (e:MouseEvent) {
      e.currentTarget.startDrag();
    function stopDragging (e:MouseEvent) {
      e.currentTarget.stopDrag();
      switch (e.currentTarget) {
      case apple:
      if (apple.x < appleEndX - offset || apple.x > appleEndX + offset || apple.y < appleEndY - offset || apple.y > appleEndY + offset) {
      apple.x = appleStartX;
      apple.y = appleStartY;
      else {
      apple.x = appleEndX;
      apple.y = appleEndY;
      //checkGame();
      break;
      case sandwich:
    if (sandwich.x < sandwichEndX - offset || sandwich.x > sandwichEndX + offset || sandwich.y < sandwichEndY - offset || sandwich.y > sandwichEndY + offset) {
      sandwich.x = sandwichStartX;
      sandwich.y = sandwichStartY;
      else {
      sandwich.x = sandwichEndX;
      sandwich.y = sandwichEndY;
      //checkGame();
      break;
      case orange:
    if (orange.x < orangeEndX - offset || orange.x > orangeEndX + offset || orange.y < orangeEndY - offset || orange.y > orangeEndY + offset) {
      orange.x = orangeStartX;
      orange.y = orangeStartY;
      else {
      orange.x = orangeEndX;
      orange.y = orangeEndY;
      //checkGame();
      break;
      case strawberry:
    if (strawberry.x < strawberryEndX - offset || strawberry.x > strawberryEndX + offset || strawberry.y < strawberryEndY - offset || strawberry.y > strawberryEndY + offset) {
      strawberry.x = strawberryStartX;
      strawberry.y = strawberryStartY;
      else {
      strawberry.x = strawberryEndX;
      strawberry.y = strawberryEndY;
      //checkGame();
      break;
      case napkin:
    if (napkin.x < napkinEndX - offset || napkin.x > napkinEndX + offset || napkin.y < napkinEndY - offset || napkin.y > napkinEndY + offset) {
      napkin.x = napkinStartX;
      napkin.y = napkinStartY;
      else {
      napkin.x = napkinEndX;
      napkin.y = napkinEndY;
      //checkGame();
      break;
      case bar:
    if (bar.x < barEndX - offset || bar.x > barEndX + offset || bar.y < barEndY - offset || bar.y > barEndY + offset) {
      bar.x = barStartX;
      bar.y = barStartY;
      else {
      bar.x = barEndX;
      bar.y = barEndY;
      //checkGame();
      break;
      case juice:
    if (juice.x < juiceEndX - offset || juice.x > juiceEndX + offset || juice.y < juiceEndY - offset || juice.y > juiceEndY + offset) {
      juice.x = juiceStartX;
      juice.y = juiceStartY;
      else {
      juice.x = juiceEndX;
      juice.y = juiceEndY;
      //checkGame();
      break;
      case foil:
    if (foil.x < foilEndX - offset || foil.x > foilEndX + offset || foil.y < foilEndY - offset || foil.y > foilEndY + offset) {
      foil.x = foilStartX;
      foil.y = foilStartY;
      else {
      foil.x = foilEndX;
      foil.y = foilEndY;
      //checkGame();
      break;
      case banana:
    if (banana.x < bananaEndX - offset || banana.x > bananaEndX + offset || banana.y < bananaEndY - offset || banana.y > bananaEndY + offset) {
      banana.x = bananaStartX;
      banana.y = bananaStartY;
      else {
      banana.x = bananaEndX;
      banana.y = bananaEndY;
      //checkGame();
      break;
      case bottle:
    if (bottle.x < bottleEndX - offset || bottle.x > bottleEndX + offset || bottle.y < bottleEndY - offset || bottle.y > bottleEndY + offset) {
      bottle.x = bottleStartX;
      bottle.y = bottleStartY;
      else {
      bottle.x = bottleEndX;
      bottle.y = bottleEndY;
      //checkGame();
      break;
      case waxbag:
    if (waxbag.x < waxbagEndX - offset || waxbag.x > waxbagEndX + offset || waxbag.y < waxbagEndY - offset || waxbag.y > waxbagEndY + offset) {
      waxbag.x = waxbagStartX;
      waxbag.y = waxbagStartY;
      else {
      waxbag.x = waxbagEndX;
      waxbag.y = waxbagEndY;
      //checkGame();
      break;
      case cup:
    if (cup.x < cupEndX - offset || cup.x > cupEndX + offset || cup.y < cupEndY - offset || cup.y > cupEndY + offset) {
      cup.x = cupStartX;
      cup.y = cupStartY;
      else {
      cup.x = cupEndX;
      cup.y = cupEndY;
      //checkGame();
      break;
      case yogurt:
    if (yogurt.x < yogurtEndX - offset || yogurt.x > yogurtEndX + offset || yogurt.y < yogurtEndY - offset || yogurt.y > yogurtEndY + offset) {
      yogurt.x = yogurtStartX;
      yogurt.y = yogurtStartY;
      else {
      waxbag.x = waxbagEndX;
      waxbag.y = waxbagEndY;
      //checkGame();

    Some questions:
    1. Can I specify more than one End x,y location for a draggable sprite?
    yes, use an if-else statement
    I'm creating a lesson to teach kindergartners how to sort lunchroom waste. If they have a napkin, for example, it could either go into the compost OR into the recycling. In cases like this where an item could really be placed into more than one bin, I want them to get it right if they do either of those things, rather than forcing them to choose which one.
    2. To make my project more "fun" for kids, I wanted to customize the cursor with a graphic of  hand. When I tried this in the flash file it works perfectly until I add the drag and drop functionality for the wasted items. Then the cursor will more around  but not pick up any items. Once I revert back to the standard pointer, the correct drag and drop functionality is restored.
    assign your cursor's mouseEnabled property to false:
    yourcursor.mouseEnabled=false;
    3. I have it set to snap back to the original location if learner attempts to drop the item on the wrong target. I want to be able to play a sound file when that happens, as well as play a sound file when it lands on the correct target, as well as shrink the item and change its opacity so that it appears invisible. I want to give the illusion of it being placed into the bin. I have no idea as to the proper way to code these events so that they happen.
    use the sound class to create a sound:
    // initialize your correct sound once with
    var correctSound:Sound=new CorrectSound();  // add an mp3 sound to your library and assign it class = CorrectSound
    // apply the play() method everytime you want your sound to play:
    correctSound.play();
    // change an object's opacity:
    someobject.alpha = .3;  // partially visible
    someobject.alpha = 1;  // fully visible
    someobject.visible=false;  // not visible, at all.
    // change an object's scale
    someobject.scaleX=someobject.scaleY=.5;  // shink width and height by 2
    someobject.scaleX=someobject.scaleY=1;  // resize to original
    4. I've watched dozens of hours of youtube tutorials before coming here. I'm a quick study, but am very new to action script. In one of the videos the developer showed referencing an external action script file which I don't think is an option in CC. The coding method he used seemed much more streamlined and "clean" than the chunks I'm working with now. Is there an easy way for me to code information about these objects  than the way I've got it here now? I hate starting new things with bad habits. The perils of self-teaching.
    you could google: 
    actionscript 3 class coding
    actionscript 3 object oriented programming
    p.s.  you can simplify and streamline your coding by learning about arrays and using hitTestObject.

  • Can't move files into trash by drag and drop

    with the latest update 10.8.5 I can't move files by drag and drop into the trash on my dock anymore. the files sticks to the cursor.
    anyone expierencing the same issue?

    Hi Joe,
    Welcome to the Support Communities!
    Does this issue persist after you restart your computer?  The following article will provide some additional troubleshooting steps:
    You can't empty the Trash or move a file to the Trash
    http://support.apple.com/kb/ht1526
    Cheers,
    - Judy

  • XfinityConnect Email attachments will not drag and drop.

    DATE (yyyy-mm-dd) : 2015-04-10 15:00PM Email attachments will not drag and drop.   This feature was working for years, then suddenly I only can attach files to an Email by opening up the directory browser to.... aaarg... go get one - file - at - a - time, or zip 'em up for the one fetch, yet still... drag and drop is soooooo much better. Specifications:Using XfinityConnect 'full' version.Do not use an email client.Browser/version Windows Explorer V11Cleared browser cache.Operating system: Windows 7 Ultimate 

    I have the same complaint.  Drag and drop worked until last week, 2015-04-05!    Must now do one at a time through the ATTACH button at top of E-mail.   Why change a good process?

  • Media not copying into event when drag and dropped

    When I add media files into an event by dragging and dropping the file into the project the file does not get moved/copied 'Macintosh's HD Projects' folder.
    Is there a setting somewhere I can change so dragging and dropping behaves the same way as when I use CMD+I to import a file?
    I am using the most up-to-date version of FCPX in Mavericks.

    How are you determining this? And what version are you using? Media doesn't get copied to project folders; it get copied to Original Media sub folders in event folders. Or it gets left in its original location with aliases pointing to the actual media.
    If you're using 10.1, try dragging to the single-star event icon in the Library list pane and then look inside Original Media..
    Russ

  • Outlook 2010 with 365 stripping attachments off of email that have been drag and dropped

    In my office we just switched to 365 and since this I've noticed that roughly 1/3 to 1/2 of my email with drag and drop attachments are having those attachments stripped off.
    Several times a day I send an email that has 6 attachments, mix of excel and pdf, and the excel called 'Checklist' I attach by drag and drop often get stripped off the instant I hit the Send button.  
    I will literally be looking at it, as one of 6 files, hit Send, and in my sent box there are only 5 files, the Checklist is gone!  It's random; about 1/3 to 1/2 of them do this.  Others make it through.
    Please let me know if there is a fix to this?  I'm having to resend attachments about 6 times a day now! 

    Hi,
    Please send several test emails with attachments on OWA, check if this issue will occur.
    If the issue is on client only, we can start Outlook in Safe Mode to test, this can eliminate the influence by 3rd-party add-ins:
    Press Win + R, type "outlook.exe /safe" in the blank box, press Enter.
    In Outlook Safe Mode, send several test emails with attachments to see if the problem will ever occur. If no, we may suspect the issue was caused by some add-ins, go to FILE -> Options -> Add-Ins to disable the suspicious add-ins to verify which one
    caused the problem.
    We can also test with a new profile to setup the account, a new profile will be a new environment for the account, we can check if the problem will occur with the new profile and you don't need to remove the old profile.
    To create a new profile, go to Control Panel -> Mail -> Show Profiles -> Add.
    Regards,
    Melon Chen
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Can I prevent Visio 2010 from allowing drag and drop of swimlanes?

    I am having a pesky issue while putting together my cross functional flow charts that I would like to prevent.  When I accidentally click and drag a swimlane, it moves.  Is there a way to change a flowchart property where it will not allow a user
    to drag and drop columns?  We have multiple people editing the same flowchart and sometimes people accidentally mess it up by dragging and dropping a swimlane instead of the boxes inside the swimlane.  
    Thank you for your help!  I can't seem to find a setting anywhere that disables drag and drop of swimlanes.

    First, ensure you have the Developer tab enabled. Now select a swimlane, then Developer -> Protection
    and check X Position and Y Position.
    Paul Herber, Sandrila Ltd. Engineering and software shapes for Visio
    Sandrila Ltd

  • HT1535 My iphone shows up in the upper right.  there is no devices list on the left with the newest version.  How can I update playlist?  I cant drag and drop where it is appearing

    The newest versions do not post a devices list on the left anymore.  My iphone appears in the upper right.  You can't drag the playlists to the phone.  Cannot figure out how I am suppossed to add content to phone from the computer.

    I think it's edit - view - show left sidebar.

  • Can I move content to ATV using drag and drop?

    Sorry if this question was asked before. Please point me to it if it is, coz I couldn't find it.
    The situation:
    Here's what I am asking for. I have about 400GB of media and many real specific playlists used in the family.
    Now I want to have about 20GB of that on ATV.
    The problem:
    The only way to move the 20GB as I see it right now is to sync the content by creating playlists. And my playlists DO NOT match the content I want to move.
    For eg; I want to move all of ledzeppelin to ATV. Its outrageous that I have to create a playlist called LZ just to move it to ATV.
    Is there any way I can drag/drop selected content to ATV just like I do on my IPOD? Am I doing something wrong?
    Any other ideas?

    Actually, I have an update. Finally yesterday night I spent 2 hours creating Artist playlists for ATV syncing. And I created a seperate folder to keep it away from our family playlists.
    However, when I go to the syn window, it does not display a folder structure so all my playlists are mixed and sorted in ascending order!!!!!11 @#$@#$#$#$^ Geezzz!!
    Come on apple! This is really dissapointing and I hope apple fixes this ASAP.

  • HT203175 drag and drop not working desperate for help

    Can you possibly help me with my drag and drop?
    All of a sudden itunes won't let me drag purchased tracks or tracks from library on to my ipod. I have read you need to make sure you have checked manually manage music and videos and I have done that. It worked one minute and now has stopped. I don't understand why drag and drop has just been fine then suddenly stopped working.
    Thanks.

    Oh right... All my devices are on the SAN and have been set as edit-in-place. The files in question were copied from the regular media watch folder to the media device. So basically just one folder on the SAN to another.
    It has to be more than just the watcher, because two of the files in question were added by a subscription response that has worked fine for me before.
    Thanks,
    Mario

  • Can't drag and drop a file into Photoshop for some reason?

    I don't know what made it stop but at this point it's beginning to bug me to no end. I can no longer simply drag a file into Photoshop. I now have to go to "file --> open" in order to get anything into. Is there anything I can do to restore the ability to drag and drop?
    Just to let you know I reset the preferences already and that did nothing. The other thing is I'm running Windows 7, however I've never had an issue with PS on it. Lastly I'm using CS4.
    Thanks for any and all help.
    Jaleel

    Jaleel215 wrote:
    I don't know what made it stop but at this point it's beginning to bug me to no end. I can no longer simply drag a file into Photoshop. I now have to go to "file --> open" in order to get anything into. Is there anything I can do to restore the ability to drag and drop?
    You should be able to drag an image file from Windows Explorer into the work area if PS is open and maximised.
    At least it works that way with Vista  64. It won't work dragging it on to the task bar button or the PS icon.

  • Can`t drag and drop foto into pages document, it bounces back

    trying to drag and drop a foto from iphoteo to pages document, it doesn`t work properly and steady.
    Eventually it bounces back. I repeated to do so few times, sometimes it works into an blank page or into a fotoframe, sometimes it doesn`t.
    I checked camera type and other informations of the pictures,seems to be not part of the problem.
    I can drag and drop fotos to the desktop without problems, all jpg.
    I did drag and drop a few pictures succsesfully onto the same document or into the same fotoframe and suddenly, again it does not work.
    Any help?
    Andi

    Try making a direct shortcut to the Organizer and then the Editor.
    You should then be able to drag and drop on to the desktop icon.
    On Windows right click on the desktop and select New >> Shortcut
    Browse to Computer OS C:
    And find the PSE Organizer application in Program Files or Program Files (x86) on Windows 7 - 64 bit.
    Inside the Adobe >> Photoshop Elements Organizer (yellow folder) you are looking for an application file “PhotoshopEementsOrganizer” with six small icons (e.g. representing thumbnails - could be different in PSE5 but look for the exe file)
    Select it and click OK
    Click next
    Rename by taking out Photoshop Elements leaving just the word Organizer
    Then click finish
    You should now be able to launch directly form the desktop by double clicking on the icon.
    You can set up a similar direct link to the Editor application.
     

  • Why can I drag and drop a file into A3, but not import it?

    With A2+ I've scanned images (Epson flatbed) and imported them as TIFF, JPG, PNG, whatever.
    Same scanner, software, and A3 refuses to import any of the above formats. However, I can drag and drop the image on a project and it works.
    Any ideas? I looked for relevant threads but didn't see any immediately.
    Thanks

    Image appears in import pane; I can assign metadata, click "import," wait about 10 seconds and it says "import completed with errors," though the file doesn't show up in project.
    I have to say it's inconsistent. I just spend 20 minutes trying to import a one scan in PNG, TIF, JPG formats, and eventually gave up and dragged it in as TIF.
    Just now, I tried importing it into a different A3 project, and the TIF worked. However the PNG (which I didn't drag into A3, still gives the above error.
    I can live with this as long as drag and drop works, but seems like a bug.

  • Can`t drag and drop images into PSE5

    hi,
    i`m from germany, so sorry for my english..
    i use pse5 since a few years and a few month with windows7..today i had to reinstall it and now i can`t drag and drop images from explorer or acdsee to PSE workspace. i get no error-message , only this circle with a diagonal line..
    i CAN drag and drop images from the editor..
    - i reinstalled it and repaired it
    - tried diffferent compatability modes
    - i don`t run the program as a administrator ( tried it- it was the same)
    so can anyone please help me?
    thank you so much!
    mareen

    Try making a direct shortcut to the Organizer and then the Editor.
    You should then be able to drag and drop on to the desktop icon.
    On Windows right click on the desktop and select New >> Shortcut
    Browse to Computer OS C:
    And find the PSE Organizer application in Program Files or Program Files (x86) on Windows 7 - 64 bit.
    Inside the Adobe >> Photoshop Elements Organizer (yellow folder) you are looking for an application file “PhotoshopEementsOrganizer” with six small icons (e.g. representing thumbnails - could be different in PSE5 but look for the exe file)
    Select it and click OK
    Click next
    Rename by taking out Photoshop Elements leaving just the word Organizer
    Then click finish
    You should now be able to launch directly form the desktop by double clicking on the icon.
    You can set up a similar direct link to the Editor application.
     

  • Using grouped objects as drag and drop source

    I am creating a drag and drop interaction. I have an image grouped with a text area and would like to make them draggable together as a single drag source.
    However, even though they are already grouped, when I edit the drag and drop interaction, they can only be specified as separate sources.
    Is it possible to use grouped objects as a single source? How?

    Have tons of workarounds, but none for this. It is simply not possible to indicate a group as a drag object, you have to put everything in one object. Maybe if you explain what is in the group?

Maybe you are looking for

  • Error in OAS with Jservlet.

    I have two problems. I'm begin in java and i have a questions. thanks for answer me to [email protected] this is my enviroment: Version ORACLE: oracle 8i enterprise edition 8.1.5 Version OAS: Oracenterprise edition 4.0.8.1 Version JDEVELOPER: 3.0

  • IPod shutting my computer down.

    Hi. Hope all is well. I have a 30GB iPod Video and it recently started giving me some problems. My iPod would freeze my computer. As seeing other posts, after doing the 5 R's, people did reformats with windows. When I finished, I reset the iPod and p

  • Where is the table-field short description store in ?

    Hi all ,         Has someone can tell me where can i find the field short description in the database ?         Or maybe this informations are only stored in the kernel files ?         Any suggestion are welcome . Best Regrards, Carlos

  • How to make tween animation in SAPUI5 apps?

    Hi Experts, Does anyone know how to make animation in SAPUI5? Let's consider a simple example: I have an image control on the UI, by pressing a button, I want to tween the image control to another postion (furthermore, maybe changing the size and alp

  • How to upload photos of the user that logs in EBP by providing

    there is an option for displaying the photo of the  the user in the iniial page that logs in . this is done by specifying the url that contais the user photo.