I want to do a drag and drop but don't want it to be a test

Hello

Any help would be greatly appreciated.

I use 7 Captivate.

I want to do a drag and drop but don't want it to be a test. It comes to brainstorming - not a test.

None of the elements of drag are correct or incorrect - they are just ideas. For example, the 20 items can be different things, that you might put in your suitcase for the holiday. There is not a lot of answers - just your preference.

There are 20 items to drag. He slide only one target. All 20 items may go to this target 1 drag.

I don't want the learner to have to drag all the elements of the target in order to finish. For example, the learner can omit 3 items because learners don't like these elements. I want that the learner must be able to hit submit (or any other button) at any time and go to the next slide immediately, not obliged to complete the drag and drop. Any ideas?

Thank you!

Set the actions on the success and failure to continue or to go to the next slide.

Ensure that the number of retries is set to 1 and infinity is not checked.

Remove the legend of failure to simply remove this legend of the slide or the deselection of the failure Caption box.

Anthony

Tags: Adobe Captivate

Similar Questions

  • Drag-and - drop but no files Sansa

    Well, I simply formatted and deleted the music that accompanies the "rocket" so that I can start with a slate clean to put only on the CD I have. I went to the Windows Media Player 11, which I had already downloaded previously in preparation to download all my CDs to see if I had Sansa here to see if I could drag & drop. There is no file Sansa. So, I then read the instructions on how to drag-and - drop. I opened Windows Explorer and was supposed to click on Sansa player before I clicked on the internal memory. But there is no Sansa file here or anywhere I looked. Is there another way of drag-and - drop? Just when I thought I had it under control... grrrrr! Thanks, Judy

    Well, now I feel better. I found an answer to my question. So until I have another question, I'll keep feeling. Judy

  • Captivate 8 drag and drop interaction

    Hello

    just have a look at the new captivate 8 and when I try to do a drag - déposer question I go to normal place of window > drag and drop. but the problem is the drag and drop option is grayed out - would it because I have only this class on a copy of the trial?

    Nope.  This is because cannot not have slip and fall in a sensitive to the Cp8 project.

    Try to create a normal inadmissible project and you should find that drag-and - déposer is not disabled.

  • Legend 1 success for multiple targets in a Drag and Drop Interaction

    I can't see how I can add legends of success to each target in an interaction drag-and - drop, but you can apply only 1 legend success multiple targets?

    1. The limits of smartshapes are overlapping with each other. For example, the smartshape on the 1st line was overlapped with the one on the 2nd line. For this reason, whenever you place the text of the 'Investment' legend on the smartshape on the 2nd line, it automatically moved to the smartshape on the 1st line. As a result, you could never get the right answer, and where you've ever seen the legend of success.

    Solution: Move the smartshapes another (or resize them) and make sure that there is no overlap.

    2, the number of attempts for this interaction has been on infinity. So, you have to play it until you get it right, but could not qualify because of the mention of the reasons above. That's why you have never seen the legend of failure.

    Solution: Disable the infinite in the accordion of Action and specify the required number of attempts. You will get the legend of failure if you don't get it right in these attempts.

    I just tested these solutions and it worked fine. Let me know if you still face problems.

  • Newbie question with multiple do drag and drop objects

    I am trying to build a drag and drop quiz where you have a list of countries and move the correct country in an empty space in a paragraph to fill properly the sentence (see attachment).
    I can get the first country to drag and drop correctly. But when I tried the second country in the list of code, I get the following error message:
    "definition of the double function of 1021.
    Here is my code:
    afghanistan_mc.addEventListener (MouseEvent.MOUSE_DOWN, startDragging);
    function startDragging(myevent:MouseEvent):void {}
    afghanistan_mc.startDrag ();
    }
    afghanistan_mc.addEventListener (MouseEvent.MOUSE_UP, stopDragging);
    function stopDragging(myevent:MouseEvent):void {}
    afghanistan_mc.stopDrag ();
    }
    burma_mc.addEventListener (MouseEvent.MOUSE_DOWN, startDragging);
    function startDragging(myevent:MouseEvent):void {}
    burma_mc.startDrag ();
    }
    burma_mc.addEventListener (MouseEvent.MOUSE_UP, stopDragging);
    function stopDragging(myevent:MouseEvent):void {}
    burma_mc.stopDrag ();
    }
    It seems that the problem is that you can't 'startDragging' and "stopDragging" defined in different functions. I saw something on the use of the target property of the MouseEvent object when you have multiple objects drag-and - drop, but I can't find how to do this job.
    I would be grateful any advice!

    You have functions duplicate definitions.  Either use the same function for the two MCs (startDragging and stopDragging) by putting two eventhandler in each function calls, so you have 2 each, or declare a separate name as startDragging and startDragging2, etc.

  • Need to drag and drop video clips over the keyboard to rotate

    My project is to allow visitors to the website drag furniture on a floor plan. I need all items be independent of each other with drag and drop and then be able to rotate each item with an arrow on the keyboard.

    The code I have allows all drag-and - drop, but I can't get the code to rotate an element. If anyone can help, I certainly appreciate. My Action Script 3 following code:


    / * Drag and Drop
    Makes the instance for the specified symbol with drag and drop furniture.
    */

    movieClip_1.addEventListener (MouseEvent.MOUSE_DOWN, fl_ClickToDrag);

    function fl_ClickToDrag(event:MouseEvent):void
    {
    movieClip_1.startDrag ();
    }

    stage.addEventListener (MouseEvent.MOUSE_UP, fl_ReleaseToDrop);

    function fl_ReleaseToDrop(event:MouseEvent):void
    {
    movieClip_1.stopDrag ();
    }

    / * Drag and Drop
    Makes the instance for the specified symbol with drag and drop furniture.
    */

    movieClip_2.addEventListener (MouseEvent.MOUSE_DOWN, fl_ClickToDrag_2);

    function fl_ClickToDrag_2(event:MouseEvent):void
    {
    movieClip_2.startDrag ();
    }

    stage.addEventListener (MouseEvent.MOUSE_UP, fl_ReleaseToDrop_2);

    function fl_ReleaseToDrop_2(event:MouseEvent):void
    {
    movieClip_2.stopDrag ();
    }

    stage.addEventListener (KeyboardEvent.KEY_DOWN, nextQuestion);


    function nextQuestion(event:KeyboardEvent):void {}
    trace (Event.keycode);
    if(Event.keycode == Keyboard.Right)
    {
    movieClip_1.rotation += 5;
    }

    if(Event.keycode == Keyboard.Left)
    {
    movieClip_1.rotation-= 5;
    }

    }

    Thank you, Frankie

    Create a variable to determine the last selected movieclip and allowing to target in the keyboard code.  Here is a smaller version of your code that does this, where drag and drop functions are shared by objects that can be moved...

    var selectedMC:MovieClip;

    movieClip_1.addEventListener (MouseEvent.MOUSE_DOWN, clickToDrag);
    movieClip_2.addEventListener (MouseEvent.MOUSE_DOWN, clickToDrag);
    movieClip_1.addEventListener (MouseEvent.MOUSE_UP, releaseToDrop);
    movieClip_2.addEventListener (MouseEvent.MOUSE_UP, releaseToDrop);

    function clickToDrag(event:MouseEvent):void
    {
    selectedMC = MovieClip (event.currentTarget);
    selectedMC.startDrag ();
    }

    function releaseToDrop(event:MouseEvent):void
    {
    event.currentTarget.stopDrag ();
    }

    stage.addEventListener (KeyboardEvent.KEY_DOWN, nextQuestion);

    function nextQuestion(event:KeyboardEvent):void {}
    trace (Event.keycode);
    if(Event.keycode == Keyboard.Right)
    {
    selectedMC.rotation += 5;
    }
      
    if(Event.keycode == Keyboard.Left)
    {
    selectedMC.rotation-= 5;
    }
    }

  • Drag and Drop CS4

    Hello

    Does anyone know a good tutorial for drag and drop style quizzes? I was able to truly create the drag and drop, but I need for a quiz (as test models are no longer available after CS3) so need to indicate to the user, if they are correct or not is a word drag an image and then click on a button that says that if its correct or not, or something similar.

    Thank you

    Usage: inter.buttonMode = true;  hand to get the cursor to appear

    AS2 and AS3 with some exceptions to the basic commands (play(), stop(), etc.) are completely different programming languages and cannot be combined in the same fla.

  • Drag and drop inside SWFLoader does not

    I have a Flex application that loads a high Flex application via SWFLoader. The secondary application uses drag-and-drop operations to rearrange items, delete them etc.  The secondary application works perfectly when it runs by itself (for example, not "incorporated" via SWFLoader in the main application).

    Once I have load in the main application using a SWFLoader operations drag - move no longer work correctly. All other events seems to work very well. It is only drag and drop that don't always work right.

    Y at - it something that I'm missing that would cause this issue? I think there may be a property that I need to put on the SWFLoader. I hope someone can help.

    You could maybe make a component, implemented as a module and load only for users who need to see it.

  • Lists w / item Renders and misfortunes of drag and drop

    Back-story:

    I have a TileList component with the following characteristics:
    dragEnabled = true, selectable = false, custom itemRenderer = myItemRenderer, correctly renders them "rolls over" correctly

    myItemRenderer extends canvas and contains information (XML) that define its characteristics.

    And I have a canvas that I let fall custom items in which product of other items based on the XML data into the object fell.

    Problem:

    In normal times the drag and drop procedure works perfectly: I can drag on an element of the TileList the canvas and it will produce a "copy" of the item dragged. Although if I scroll the TileList upwards or downwards and then drag an item in the Web article on the canvas is the element to position non - scrolling the TileList (as if I didn't have to scroll at all). To clarify, the item has fallen into the canvas is the item in good visible position in the scroll position zero (0). The drag proxy displayed is the correct item - more befuddling the situation.

    Correct behavior:

    I would like to be able to drag an object of my TileList in the canvas area and have the correct item fall despite the scroll position.

    I don't know if it's an error in my methodology or a bug, but I searched google and the forums without great success. Of course, I may be using the wrong search string and will gladly accept a more fruitful search string.

    "roaet" wrote in message
    News:gfsgj4$DDN$1@forums. Macromedia.com...
    > Moreover, it seems that this is not a matter of drag and drop, but more the
    > the list (not rendered items) is out of control!

    Do you think this could be a problem of recycling? See Q2 in the FAQ I posted
    earlier today.

  • I want out emails in folders of ordinary files, but when I drag-and-drop, the "modification date" gets changed. How I can still see the date?

    To archive my e-mail files until I decided to switch to Thunderbird, I create regular folders in windows and drag and drop emails to outlook express in the appropriate folders. The "update" column displays the original date of the email... which is what I want to do with Thunderbird. In my view, that he treats it as a new file created today... that is not good for my archiving system of these professional work files that I need to find often in approximate date.

    I understand the forum that it is by default in Thunderbird. There is an add-on that can do what I'm doing?

    Thank you in advance,
    Netwon

    I think the reason what OE is the original date because each message is stored in a single file, while TB stores all messages in a folder in a file, an mbox file. Thus, when you save a message as a single eml file, its 'modification date' corresponds to the eml file date was written in the mbox file.

    You can find the ImportExportTools add-on useful because it allows you to add the date of the e-mail eml file name when enamel is exported ("Save selected messages" of the message right-click menu).

  • When I drag and drop a file, it creates a shortcut does not copy the file. I want to copy the file instead create shortcut.

    • Drag
    • drop
    • Drag / move
    • copy
    • short cut
    • create

    If you want to make a COPY of the file you drag (leaving the original where it is and make a copy in the place that you drop the file), and then hold down the control (Ctrl) key on your keyboard while you drag and drop, and she must make a copy in the new location.

    Hold down the ALT key should make a link/shortcut to the original.  Now does no key should MOVE the file from the original location to the new location.

  • Anyone know why my iTunes songs don't drag and drop MP3?

    I just bought a Sandisk Clip Jam MP3 player.  (Sorry, Apple: my new Shuffle was too difficult to use without screen.)  I tried to drag and drop the music files I want on that to his library iTunes x 12 on my Macbook, but no sign appears when I do that, and they don't "stick".  I followed the instructions in the manual. Anyone have this experience with iTunes? Must be a good reason, but I don't know what it is. Thank you!

    If he plays that mp3s are the tracks that you drag in mp3 format?

  • Drag and drop photos to photo streams in folders

    I want to drag and drop photos from my photo stream on my book of mac pro to my photo folders. I am a new user of apple.

    To begin with, that we need details - what version of the operating system and Photos do you use? What are your iCloud on Mac and on every IOS device settings? What exactly do you do? In the Photos files are not for Photos, albums are for Photos and folders for albums or other

    LN

  • Why can I I is no longer drag and drop photos directly from photos of apple in the Pages?

    Until very recently, you can take a photo from iphoto/photos and then quickly drag and drop directly into the Pages. Now, I have to drag and drop the photo on the desktop, then drag and drop again from office to the Pages. Is this just a way more Apple is dumbing things down and make things slower for those who already know how to use their software or some setting I'm not aware of?

    In the Pages v5.6.2, you can click, drag and drop an image from the Photos app in the page document related, just as you can from the media tool in the toolbar of the Pages v5.6.2.

    To get an image from Photos in a Pages ' 09 v4.3 document, you must click on the image you want in Photos and menu editing: copy, right click in the document to Pages ' 09 followed to select Paste from the context menu. There is no drag and drop Photos in Pages ' 09 v4.3. There is no access to the photo library within the Pages ' 09 v4.3 support tool.

    Tested: OS X 10.11.5.

  • 'Most visited' disappeared from the My Places bar. I tried all the suggestions about re: config, drag-and - drop, etc. Nothing works. Thoughts?

    The 'most visited' tabs and an RSS feed I use have disappeared from my places bar. They now sit under 'Favorites' and are very annoying.

    I followed all of the suggestions of Mozilla and other sources about the topic: config. Nothing works. I tried to drag and drop 'most visited' return to the places bar, but this does not work, either.

    Can someone please give me a solution?

    Thank you very much.

    patalarga

    You can drag the "bookmarks toolbar items" in the toolbar bookmarks to the Navigation bar if you want to bookmark is displayed on the toolbar.

Maybe you are looking for

  • Real-time data display

    Hai guyz/galz. Im just a beginner start in the field of labview. I just started to design a temperature measuring VI and Im having a problem at the moment which is I cant seem to leave when I press the QUIT button the VI if it is running unless I hav

  • W510 restarts erratically

    After sorting on the bad memory modules causing sporadic restarts my system is always showing behavior strange but much more less than before... Sometimes the laptop restarts when I work with her without warning, this happens maybe once every 3 days

  • Error while you select my computer, I need to include a screenshot.

    The error is very complicated to put into words. How can I publish a page of paint?

  • X 3475 access recovery partition

    Hello I have a X 3475 demo and you want to do a clean install of Windows 8. Unfortunately I can not access the thing ALT + F10 recovery partition intelligence. It starts just Windows 8 again. Is there a new way to files Windows 8?

  • PDF warning: How can I disable the "this type of file can harm your computer. Are you sure yo... »

    How can I disable the "this type of file can harm your computer. Are you sure? » ... It happens every time I want to move a file to the trash or in my computer... I have "trusted sites" which I get this file type all the time... Can it be disabled be