Drag and Drop - response schema complex

Hi guys out there.

I've set up interaction drag-and - drop, who's looking good, but I can't Captivate to recognize the answers correctly. Please could you help?

I have three sets of slide sources one (2), B | (7 sources) and C (7 Sources).

I have two boxes X and Y.

I want has to be deleted only in X

I would like to B to be deleted only in Y.

I want that C had to be abandoned in X or Y - or the other is a good answer.

For some reason, Captivate is never correctly mark the answers. I suspect it is the sources of drag 'C' the origin of the problem, but I'm not sure.

Can you advise how I should set up correctly?

Here is a link to the output: http://blendedlanguagelearning.com/portfolio/Test/10Sept2014/TestOnly.htm

I can provide the source files if needed, but they are great.

Thank you very much!


Seth

Well, I think I have a solution feasible for you, if it'll take a bit of tedious configuration. I'll assume that you are familiar with the Types of Interaction, or watch this video (http://youtu.be/B_wVtH1Vsck?list=UULpsk3UF7lh5l9fVkLIqu6g) because they are essential to keep this manageable configuration.

In short, you put each set of sources in his own Type of Interaction and then create a combination of answers separate for each of the 8 possible indictments of category C.

If there is a more simple or more elegant solution, I can't think about it right now. Maybe someone else can, but this will produce the functionality you're looking for, I think.

(1) name your drop targets in the property inspector. I used Drop_X and Drop_Y in the screenshot below.

(2) select your category 'A' Sources of drag. On the Drag and Drop tab, click on the button + to create a new type of interaction. Name the type of something easy to distinguish (I used "InteractionType_A).

(3) repeat step 2 for your category 'B' and 'C' Sources of drag, so each has it's own unique Interaction of its kind.

(4) Begin defining the right answers. I began by assigning A-> X, B-> Y and C-> X. You can see on the left side of the screenshot below.

(5) now the difficult part. Click on the button «Set Correct answers...» ». You should see a "Answer1" just like mine in the screenshot below, but with two target Drop names and names of all Type of Interaction you have used instead.

6) click on the 'Add a new reply' button at the bottom of the window. You should now see a Virgin "answer2" below your "Answer1".

7A) make your "answer2" look just like mine. The first two lines will always be the same, (target Drop = X, drag Source = A, Count = 2) and (target Drop = Y, drag Source = B, Count = 7). Unfortunately there is no copy and paste or duplicate function here so you'll have to implement from scratch every time. You also need to click on the + to add the fourth line.

7 (b) the only thing that will change for each new answer you add will be the 'Count' on lines 3 and 4. Start with (Count = 6), and (Count = 1) and adjust the number by 1 for each new answer, making sure they always add up to 7. (5, 3 4, 3 4, 2 5, 6 1, 2and 0 7).  When you are finished, you should have 8 combinations of single response and a strong desire to never touch another drag and drop interaction.

I hope that all makes sense. Good luck!

Tags: Adobe Captivate

Similar Questions

  • AS2 Drag and Drop - completion response

    I do a drag and drop alphabet learning game. There are 27 Movie Clips (letters) in total that are able to drag.  I made sure 12 Movie clips will drop in a specific DropZone, while the rest will just snap back to their original position.

    I want to do is create a completion response which moves to a separate screen 'Good Job!' when all 12 Movie Clips have been droped in the DropZone.  How can I do this?  I searched online for more help, but nothing seems to be particularly relevant.

    Thank you!

    Avoid putting code "on the" points at all costs... you will learn a bad habit if you start to do that.

    What you have would be something like the following.  I don't know if this code refers to the 12 pieces that you mention, but I hope you can see the logic and apply for them.

    var dropCount = 0;

    {food1_mc.onRelease = food1_mc.onReleaseOutside = Function ()}

    stopDrag();

    If (this ._droptarget == ' / DropZone4 ') {}

    this.onTarget = true;

    _root. DropZone4.gotoAndStop (2);

    dropCount += 1;  Add 1 to dropCount

    if(dropCount == 12) {}

    gotoAndStop ("goodjob");  go to the section called goodjob

    }

    } else {}

    this.onTarget = false;

    _root. DropZone4.gotoAndStop (1)

    }

    }

  • Drag and drop with a Flash response... Help, please

    Hello

    I just started with flash and actionscript3 about 5 weeks ago. I am in my first year uni and I have an assignment to slide / move (for a kindergarten class). His "little red hen" and they place the correct image to the right holder.

    I got drag and drop work but I can't seem to find a way display a check mark when they place in the correct holder.

    Help, please...

    It's my script (it may seem messy... still new)

    import flash.events.MouseEvent;

    / * Mouse event that ensures the function of hen movieclip to start dragging
    When the mouse is pressed * /.

    hen1_mc.addEventListener (MouseEvent.MOUSE_DOWN, opportunity);
    hen2_mc.addEventListener (MouseEvent.MOUSE_DOWN, opportunity);
    hen3_mc.addEventListener (MouseEvent.MOUSE_DOWN, opportunity);
    hen4_mc.addEventListener (MouseEvent.MOUSE_DOWN, opportunity);
    hen5_mc.addEventListener (MouseEvent.MOUSE_DOWN, opportunity);
    hen6_mc.addEventListener (MouseEvent.MOUSE_DOWN, opportunity);


    Ability to function (event: MouseEvent): void
    {
    event.target.startDrag ();
    }

    / * Mouse event that ensures the function of hen movieclip to drop
    When the mouse button is released with Condition statement, if
    owner = hen, hen snaps into place * /.

    hen1_mc.addEventListener (MouseEvent.MOUSE_UP, dragStop1);
    function dragStop1 (event: MouseEvent): void
    {
    hen1_mc.stopDrag ();
    If (hen1_mc.hitTestObject (holder1_mc) is true)

    {
    hen1_mc.x = holder1_mc.x;
    hen1_mc.y = holder1_mc.y;
    }
    }


    hen2_mc.addEventListener (MouseEvent.MOUSE_UP, dragStop2);
    function dragStop2 (event: MouseEvent): void
    {
    hen2_mc.stopDrag ();
    If (hen2_mc.hitTestObject (holder2_mc) == true)
    {
    hen2_mc.x = holder2_mc.x;
    hen2_mc.y = holder2_mc.y;
    }
    }


    hen3_mc.addEventListener (MouseEvent.MOUSE_UP, dragStop3);
    function dragStop3 (event: MouseEvent): void
    {
    hen3_mc.stopDrag ();
    If (hen3_mc.hitTestObject (holder3_mc) == true)
    {
    hen3_mc.x = holder3_mc.x;
    hen3_mc.y = holder3_mc.y;
    }
    }

    hen4_mc.addEventListener (MouseEvent.MOUSE_UP, dragStop4);
    function dragStop4 (event: MouseEvent): void
    {
    hen4_mc.stopDrag ();
    If (hen4_mc, hitTestObject (holder4_mc) is true)
    {
    hen4_mc.x = holder4_mc.x;
    hen4_mc.y = holder4_mc.y;
    }
    }

    hen5_mc.addEventListener (MouseEvent.MOUSE_UP, dragStop5);
    function dragStop5 (event: MouseEvent): void
    {
    hen5_mc.stopDrag ();
    If (hen5_mc.hitTestObject (holder5_mc) == true)
    {
    hen5_mc.x = holder5_mc.x;
    hen5_mc.y = holder5_mc.y;
    }
    }

    hen6_mc.addEventListener (MouseEvent.MOUSE_UP, dragStop6);
    function dragStop6 (event: MouseEvent): void
    {
    hen6_mc.stopDrag ();
    If (hen6_mc.hitTestObject (holder6_mc) == true)
    {
    hen6_mc.x = holder6_mc.x;
    hen6_mc.y = holder6_mc.y;
    }
    }

    You alreadsy have conditional statements in place as far as I can tell, you just need to add the ActionScript to display the tick...

    function dragStop1 (event: MouseEvent): void

    {

    hen1_mc.stopDrag ();

    If (hen1_mc.hitTestObject (holder1_mc))

    {

    hen1_mc.x = holder1_mc.x;

    hen1_mc.y = holder1_mc.y;

    View the tick code goes here

    }

    }

  • Display collection ArrayCollection in a list and the ArrayCollection with Drag and Drop collection reorgnize

    I have an ArrayCollection collection created like this

    qaAC = new ArrayCollection();

    for (var i: int = 0; i < 10; ++ i) {}
    var o: Object = {question: ' what is "+ i +"? ", answer:" it's "+ i"};
    qaAC.addItem (o);
    }

    The ArrayCollection collection is an array of object that has properties "question" and "answer to" custimized.

    I want to put 'issues' in the ArrayCollection collection in a list. 'qaAC.question' does not return an array of questions for me.

    I have to extract the ArrayCollection collection to form a new String table, and use the new array as the dataProvider of the list of questions.

    Is there a way better and clean?

    My goal is to use a list to reorgnize an ArrayCollection collection that contains complex objects (not simple string) with Drag & Drop. Is this possible?

    Any suggestions?

    I put two lists in my example to show how the ArrayCollection collection could be displayed in two different ways. You don't have to have two lists if you do not need them.

    When you change the order of the list made with drag and drop, you change the order of the collection ArrayCollection qaAC, so all the controls that display the qaAC will also be updated to reflect the new order. You can test this in the example I posted earlier. Change the order in the list of question and you will see the order change also in the list of responses. This is because they are both bound to the same collection of ArrayCollection. If you want to behave independently, you need two separate ArrayCollections.

    Chris

  • Windows XP SP3: Unable to start, System Restore cannot drag and drop ALL the files/folders on the desktop and applications, many unable to start, services cannot search, cannot copy or transfer the any files folders...

    After a recent power outage, my system has restarted with a weird and very common Windows problems range. The system boots fine, all my personal files/folders/apps are intact, have suddenly stopped almost all functions of applications, but many crucial functions of the Windows kernel. Everything seems to point to several Windows Services are unable to start (administrative tools on the start menu). I am running Win XP SP3 and that he was going to upgrade to Windows 7, but I wanted to backup everything in advance. As I have 29 000 hours on my C: drive and a lot of time invested in my system, files, and applications, I am extremely reluctant to risk losing my files and applications by performing any type of reinstalling Windows. Strangely, begin to almost all my apps and all my files are accessible for the most part, but I've lost the ability to drag and drop files, folders or items in a list within the applications COMPLETELY. I can't copy or paste anything, can't move the desktop icons (although I can create new files and folders). So at the moment I can't save anything or even a single file transfer to a hard drive on another storage medium. Immediate reaction: try safe mode and try the system restore safe mode has the same problems (likely due to the large number of system services that inexplicably refuses to start) and the system restore says an error window saying "system restore is not able to protect your computer at this time. try restoring the system running and restart again", which of course NEVER changes. It's the equivalent of getting a tire on your car in the middle of nowhere to find the spare tire flat and the missing Jack. I have used to be fanatical about the definition of the regular restore points, but now can not access them. I have backups of most of my personal files, but over years have lost most of the original installation CD for many of my applications (there are over 100 applications on my system) and I don't want to lose the file associations and architecture of directory tree that it took my so long to implement. I started with Win XP media center edition of first (circa 2004 or almost) and have migrated twice more of 3 hard disks and 2 computers. All this time (5 years of daily use), I have NEVER known so many malfunctions for as many Windows basic and vital functions at the same time. I tried a lot of 3rd party "windows fix - it / registry repair" apps, all have no effect. Everything I can speculate is there was some serious damage to the registry and have no idea how/why so many Services refuse to start. In MMC, more than half of the services actually start and run, the rest all give the error message "the service or dependencies is not start (error 1068).» In addition, very oddly, no. APPS or windows appear in the toolbar AT ALL, but the Quick Launch toolbar works very well, just like the tray button and start tasks (?! )!). If I reduce a window, it "disappears" (Nothing on the task bar), but I can restore it using the alt - tab keyboard shortcut to switch apps, so all applications/windows appear on the list of the Task Manager. A few apps is paralyzed bad, as the player windows media, itunes, etc. (I guess because the service windows audio can not not start), some won't start at all, but 90% of them work fine, except to try to copy or back up all files. I can create new files, however. I'm desperate to find a solution to repair XP3 Win WITHOUT losing my installed applications and files, before I try and switch to WIndows 7. Any help/suggestions/links/advice would be much appreciated. I'm an experienced user, but I've never met so many malfunctions based on the OS at a time. I, however, very painfully learned (years before that my system so complex) it's been almost a re-installation of Windows guarantees to lose my installed apps and files, the directory tree architecture associations.

    Help, please!

    I'll be honest with you - your message is so difficult to read that I don't bother to go through all that. Next time consider using white space, ball or points numbered, etc. to make your message more readable. I stopped reading after your first sentence and only scanned the rest quickly. I do not mean to hurt your feelings; just trying to help you get targeted answers you need for the future.

    The blackout has corrupted your Windows installation. Back up your data now. Since you have problems so much, it would be probably best is to remove the hard drive, put it in a USB drive enclosure and attach it to another computer to copy the data OR start the target with Linux Livecd such as Knoppix system and copy the data to an external hard drive. IOW, do not use the damaged windows to try to get your data.

    You can try a repair that will leave your programs and facility data intact, but with this widespread bribery, it is unlikely to work. However, it takes only a few minutes and is so worth a try. If the repair facility does not work there is nothing to do, but a clean install. And Yes, it will mean that over again.

    Consider buying a UPS to help prevent future damage by power outages. For a single computer, you should look for one in the area of $60 to 80. A more expensive UPS is not necessary. Another good disaster recovery strategy is to buy an external hard drive and Acronis True Image. You can image your system (and can make an incremental backup image so that your image is still current). You can apply your image and be back running that you were in relatively few minutes after a hard drive or Windows to fail.

    http://www.michaelstevenstech.com/XPrepairinstall.htm - repair install how-to
    http://michaelstevenstech.com/cleanxpinstall.html - Clean install - how-to
    http://www.elephantboycomputers.com/page2.html#Reinstalling_Windows - you will need at hand MS - MVP - Elephant Boy computers - Don ' t Panic!

  • Enhancement request: improvement of Drag and Drop dashboards

    Hello

    I opened a ticket for this but I was told all requests for improvements have been conveyed by here now.  My end-users like foglight drag and drop dashboards and have created many custom edge tables specific to their groups or roles of the work.  I had a lot of requests for improvements to this feature a lot of them are cosmetic.

    Ability to control the fill color or the line color of data points.

    So that creating more of a host of table a still blue will overall of all charts.  Currently the colors match only if data points are added in the order of a chart to a chart

    Possibility to choose the maximum number on the axis Y

    Ability to set intervals on the axis Y (example: number 5, 10, 25, etc...)

    Possibility to set the threshold for a specific schema. (example: a red line to 80%)

    Ability points of label data manually with a label not in foglight (example: instead of the host name able to type in an application name)

    mivy00,

    Best thing to do is to enter the ideas section of the community where they can be read by all and voted.  I copy and paste is there for you, but it's better when it's a customer initiated entry.

    http://communities.quest.com/community/Foglight?view=idea

    Thank you

    Ken Barrette

  • Apex schedule 5, disable drag and drop (only!) to specific entries

    Hi all

    (in particular, the gurus of js/jquery)

    I have 5 Apex calendar I let slip and fall in informaciones. However, for some special entries (for example .apex-cal-red) I want to disable drag and drop.

    Would be great if someone could go an example to illustrate how this can be accomplished.

    Thanks in advance!

    André

    Hi andreml,

    andreml wrote:

    I have 5 Apex calendar I let slip and fall in informaciones. However, for some special entries (for example .apex-cal-red) I want to disable drag and drop.

    Would be great if someone could go an example to illustrate how this can be accomplished.

    This feature will be introduced in the next version 5.0 of the APEX.

    Refer (response by Patrick M-Oracle): Re: APEX 5.0 Calendar disable the links for the last days

    The time being, you can use validation-based approach.

    Reference: Apex 5: calendar, how can I restrict only one entry per date of

    Kind regards

    Kiran

  • Drag and Drop exercise: buttons disappear

    Hello

    When I hit the button 'Send' an exercise slide / move quiz buttons 'Back', 'Reset' and 'Send' (that come automatically with the Drag and Drop exercise) disappear.

    Any idea what goes wrong?

    I see, in English these are the buttons cancel, restore, and submit. Only the last is really necessary. The other two buttons can be selected in the Actions tab, but are not mandatory.

    If you have kept the default settings, which means 1 attempt and the two actions on the success and failure are left to continue it is normal that all the buttons disappear after clicking on the submit button. They will also disappear when you gave a correct answer, even if efforts are not exhausted. They will remain on the slide when you have an incorrect answer and attempts are not exhausted: in this case, the buttons will remain and the legend of the failure appears. With undo the last action can be cancelled, with reset all sources of drag are returned to their original location. The two buttons are also active before the submission of the response.

    You can find more tips on D & D:

    http://blog.lilybiri.com/drag-and-drop-tips

    & Slipped in 2016 with Captivate 9 - Captivate blog

  • Interaction drag-and - drop - time after the presentation of the self.

    Captivate 8.0.1.242 - Windows 7 - 64 bit - SWF - sensitive Format format not


    I drag and drop interactions in my class. I allowed for the correct drag auto shipping option and file the response. But when I publish the course and run the course online, there is a delay after drag / drop the right answer. There is no sign of loading or whatever it is. Just a delay, then I see the next slide. Its strange to students they start clicking on random areas, thinking that they have made a mistake.


    I would like to know as to why there is this delay and how to remove it.



    Hello

    I think the problem is with Actions that are currently assigned to the interaction. If you look closely, you will probably find that the slide is a break to 1.5 seconds. And the action assigned to the right answer is probably "continue." This means that play resumes and it takes another 1.5 seconds to visit the next slide.

    Try changing the action "Go to the next slide" and the delay must be eliminated.

    See you soon... Rick

  • Questions about the reorganization of the rows in the table by drag-and - drop feature

    I am referring to the demo: 106. Drag-and-drop the reorganization of the rows of the table in aCorner of Code DF to implement my case.

    I am facing some problems:

    1. the view object (bound to the table) is read only and it is created directly by very complex SQL queries, without entity objects. When it is run the code: dragRow.removeAndRetain () in the method: DnDAction processDrop (DropEvent dropEvent), it throws the error so that a guest view object is read-only. I want to know if there is another way to delete the moved collection line?

     public DnDAction processDrop(DropEvent dropEvent) {
    ...       
           CollectionModel collectionModel = (CollectionModel) table.getValue();        
            JUCtrlHierBinding treeBinding = (JUCtrlHierBinding) collectionModel.getWrappedData();
            
            //get access to the ADF iterator binding used by the table and the underlying RowSetIterator.
            //The RowSetIterator allows us to remove and re-instert the dragged row
            DCIteratorBinding departmentsIterator = treeBinding.getDCIteratorBinding();               
            RowSetIterator rsi = departmentsIterator.getRowSetIterator(); 
    
            int indexOfDropRow= rsi.getRangeIndexOf(dropRow);
           //get access to the oracle.jbo.Row instance represneting this table row
           Row dragRow = (ViewRowImpl)table.getRowData(draggedRowKey);
           //remove dragged row from collection so it can be added back
           dragRow.removeAndRetain();
           rsi.insertRowAtRangeIndex(indexOfDropRow, dragRow);
          ...
    }
    

    2. When you click on a button, I need to save the command results in the database using the command update # of each rank. Here it is the handler method for the event of the action (in MB) button.

    I want to use RowSetIterator table for encode it from all ranks and update the value # order of each rank.   I call a data control method to run sql update. is it ok? any suggestion?

        public void processSaveOrder(ActionEvent actionEvent) {
            CollectionModel collectionModel = (CollectionModel) mytable.getValue();        
            JUCtrlHierBinding treeBinding = (JUCtrlHierBinding) collectionModel.getWrappedData();
            
            //get access to the ADF iterator binding used by the table and the underlying RowSetIterator.
            //The RowSetIterator allows us to remove and re-instert the dragged row
            DCIteratorBinding iterator = treeBinding.getDCIteratorBinding();               
            RowSetIterator rsi = iterator.getRowSetIterator();
            Row row =rsi.first();
            System.out.println(0+"="+ row);
            int i = 1;
            while(rsi.hasNext()){
                row = rsi.next();
                System.out.println(i+"="+ row.getKey());
                i++;
            }
    
        }
    

    A workaround solution was found:

    In ADF 12 c, it can be solved by changing Updatable "Always" in the details tab of each attributes to read-only view object without entity object.

  • Drag and drop the interactive report

    HY!

    For an interactive report, I would like to implement and drag to order lines.

    It's a request complex abandoned behind the report (joints, ect.)

    I need an element hidden like this

    apex_item.hidden(1, rowid) AS Sort
    

    The problem is, that rowid is not here (ORA-00918: column ambiguously defined).

    Because of this article, I'm sure that the joints in my query are problems

    ORA-00918: column ambiguously defined

    But I need the rowid for the sorting process.

    How to implement Drag and Drop, I learned from here:

    Read the Article - Drag & amp; amp; Drop the rows in a table

    Does anyone know of a workaround?

    Thanks for your help!

    ILB.

    Hello

    You can do also, update for example the primary key.

    In the table of the witch you have the column where you store the sort order?

    Use this table for example name as apex_item.hidden (3, ENDGUELTIGEWARTELISTESORT.rowid)

    Kind regards

    Jari

  • Drag and drop - moved outside the target object

    Hello

    It's my first drag and drop object.  It went pretty well except for nitpicking a few things.  I'm hoping to get help on one of these.

    A sample of my screen is below.  The basic idea is that you drag one of the words in the dotted box, and I'll give you a sound feedback, whether good or bad.  I'm tiling the answers and this is my question.  Sometimes, if I already have one correct answer in the box and drag each other directly on the existing answer, he'll put it on the side and it seems that it is in the next box.  An example is below.  This happens very rarely, but I still want to go to the bottom of it.  I resized the boxes, made the smaller font and I reduce the size of the response when he goes inside the box.  But it still exists.  If they hang out below the existing response response then it works fine.  Does anyone know what is the answer?  I have the screen below, as well as the settings of the target in the example below that.  any help would be greatly appreciated.  Thank you!

    dnd question.gif

    target settings.gif

    That's the problem with tiling. You can reduce the size of drop even more (90%), try one of the other options in the second row of tiles. Or choose absolute, which means that it has no real alignment, control, but text will stay where the user puts.

  • Correct answers for drag and drop dialog box

    I'm trying to get a better handle on the different options for drag and drop interactions.

    The right answers dialog box is used only for the edition of the correct answers after a drag and drop interaction has already been created?

    What does the column 'Number' and what is its purpose?

    Hi jay,.

    With the correct answers dialog box, you can get the following,

    1. can I change the answers correct configured.

    2. can define several correct answers to the same question.

    3. can we do good response as a 'combination', or a sequence

    The "count" column allows you to set the correct answer in the following scenario.

    Suppose you have a bunch of oranges (Say 12) while sources drag on and a fruit basket is in the form of the target, and the question is to drag and drop five oranges in the fruit basket; Then, you can configure a drag and drop interaction as follows,

    1. Select all the oranges, mark them as source and add them to the custom type orange

    2. mark "Basket of fruit" as target.

    3. create a correct answer between the oranges and the basket link.

    Now when you open the correct answers dialog box, it shows the correct answer as follows.

    Orange > basketball > 12 fruits.

    You can change the number of 5, the question being 'Drag and Drop five oranges' at the fruit basket.

    I hope this helps.

    Thank you

    VERALINE Sukumaran.

  • CP 7 - only return incorrect drag and drop answers

    Product: Captivate 7

    Feature: Drag and Drop

    When you click on submit, is there a way for CP 7 to return only incorrect drag and drop of responses to their starting position?

    The following two positions was asked the same thing, but no one has had a chance to respond.

    http://Captivate.Adobe.com/Captivate/topics/drag_and_drop_send_back_incorrect_answers_only

    http://forums.Adobe.com/thread/1280177

    Thank you!

    Micky

    I don't think it's possible to reset after clicking on the "submit" button. (May be it is possible using advanced actions).

    However, you can set the target to reject the wrong answer, the incorrect source of the moment is placed on it. Select the target, choose accordion Drop Target, click on accept, deselect the checkboxes against unacceptable options.

    Anthony

  • MovieClip only, Drag and Drop to multiple targets

    So I've been sitting for the last few hours trying to search the Web for solutions to be able to drag and drop a MovieClip between multiple targets. I have no idea and I am struggling to find something that will help me with this. This is for a class assignment slide / move and I would like to help, please let. This is the general pattern.

    The scene is a multiple-choice questionnaire. There are 3 statements aligned next to 3 boxes, these are my targets. A movieclip appears in the corner, that's the question I want to activate him drag / drop in one of the 3 targets. These targets are named separately as target1_mc, target2_mc and target3_mc. The movieclip that is the 'selector' for the multiple choice is named selector_mc.

    I only know the basic drag and drop the script that has been taught in class, but it's only for one target, not 3. A picture has been provided below. Again, selector_mc is the blue square in the upper part of the screen. Targets (target1_mc, target2_mc, target3_mc) are on the right side of the screen. I want to leave this blue square to be able to drag and drop on targets and areas nod to one of them, invoking a response to it.

    Capture.PNG

    selector_mc.origX = selector_mc._x;

    selector_mc.origY = selector_mc._y;

    {selector_mc.onPress = Function ()}

    this.startDrag ();

    }

    {selector_mc.onRelease = Function ()}

    this.stopDrag ();

    {if (Eval (this._droptarget) == target1_mc)}

    do something. Red Dragon has been selected

    This ._x = target1_mc._x;

    This ._y = target1_mc._y;

    } else

    {if (Eval (this._droptarget) == target2_mc)}

    do something. White Dragon has been selected

    This ._x = target2_mc._x;

    This ._y = target2_mc._y;

    } else

    {if (Eval (this._droptarget) == target3_mc)}

    something.blackdragon has been selected

    This ._x = target3_mc._x;

    This ._y = target3_mc._y;

    } else {}

    all lack em

    This ._x = this.origX;

    This ._y = this.origY;

    }

    }

Maybe you are looking for

  • in Keynote set the screen to full screen to send to iCloud

    I created 6 slideshows Keynote which I want to share with the family in iCloud.  I tested this point by sending an e-mail to myself but the slide show that's happened for me to see the sidebars all slides showing the Inspector on the right side also

  • My photos are not in chronological order. Why?

    My photos are not in chronological order. Why?. I'm looking at "All Photos".  They are supposed to be in order of date and time, but they are not. Can someone tell me (a) why? (b) how to report a bug? Ta!

  • Satellite P300 - CD does not read DVD

    Purchased by Satellite P300-16 t about a month ago, using Vista Home Premium. Until today, my cd/dvd rom drive worked very well. Now when I try and insert any dvd is not be recognized at all, i.e. that there is no disc in the drive. Audio CD play wel

  • Download from the app store

    I started a download of EL Capitan and there is 'suspended'... do not complete the download, not able to cancel and start again, nothing...

  • Open the folder to browse (aka, open windows Explorer to the known folder)

    Hi guys,. It should be fairly trivial, but I can't find a way to do it. I just want to add a button on my vi, which opens a file to a known path. So let's say, I generate reports in the following folder, c:\Temp, I want to click a button and it will