Flash Drag and Drop Template in Captivate.  *HELP*

Good morning.
I am attempting to use the drag and drop learning interaction
that comes pre-packaged with Flash CS3 and import it into Captivate
for use in a Captivate based e-learning exercise.
I create the drag and drop just fine in Flash, and it looks
perfect when I publish it in Flash, etc.
When I attempt to use the EXACT same SWF in Captivate,
however, it does not work. I can move the drags around the screen,
but they will not "drop" where they are supposed to.
Thinking maybe I broke the template, I went ahead and just
imported it 100% unchanged from Flash into Captivate (without me
messing around with it changing things around) and it does the
exact same thing.
I have successfully used my own homemade flash "widgets" in
Captivate, to include like click and reveal type interactions...for
whatever reason, though, I can't get this one to work, even though
I know it works perfectly in Flash.
The .swf file was developed using ActionScript 2.0 in Flash
and I tried publishing it with Flash 9 and Flash 8 as the setting,
both do the same thing.
Help!!!?
Thanks.
Rob

Hi R
Note that the Border simply adds space to the project so the
playback controls aren't covering part of your movie. Assuming you
want that to continue AND have a playback control, you might resize
the project so the playback control is included in the main movie
as well as being placed in an area that doesn't possibly obscure
any screen activity.
Cheers... Rick

Similar Messages

  • Drag and Drop Template

    Does anyone know where I could find a Flash drag and drop
    template where the drag objects snap to the drop locations, and the
    check answers button has this functionality each time it's clicked:
    - Displays how many answers are correct and incorrect
    - Snaps the incorrect drag objects back to their original
    positions
    - Makes the correct drag objects immovable
    - Displays something like "These are all correct" message
    when all are done correctly
    I also need the drag and drop to work inside of a movie clip.
    I've found a number of drag and drop templates, but none of
    them can do all of these things. My ActionScript programming is
    basic to intermediate at best, so I can't program it from scratch.
    Thanks!

    the errors following the first are probably a result of the
    syntax error in line 5, calls to _root are somewhat unstable, and
    can often get unexpected results, in this case I think I'd go with
    _parent or _level0, where I'm assuming the array is located.
    Additionally, I don't think that the operator 'add' can be
    used as a 'concatenator', but I think you should check the array
    anyway, instead of all instances within the 'root' MC properties
    list.
    PS. this will only check the target array once, when the MC
    is press the first time, if you are going to drag the MC to a
    target point and then determine if it's being hit you should place
    this in the on(release) handler where it's activate when stopDrag
    occurs. If you want it to continuously make the check while being
    dragged, you should place it inside a repeating loop.
    something more like this:

  • Flash drag and drop

    When I import any kind of Flash drag and drop interaction,
    including ones made by Macromedia/Adobe I can get the drag to work
    but not the drop. Anyone any ideas?

    Hi funqueen,
    The question reminds me of a slightly perverted version of
    the tree falling in the forest. Whether or not anyone is there to
    see it, what does a *drop* look and sound like? LOL!
    My best offering is to use Captivate. If you are a Flash
    person, that may sound daft, but give it a try. Just begin your
    recording, making sure that the Full Motion is enabled in your
    preferences, and during the recording, left-click-and-drag an
    object to a new location, then release the left mouse button to
    drop the object.
    It takes a little practice to make this work smoothly, but it
    works every time, and you certainly do not need to import anything
    built in Flash to make it work. If more info is needed, please
    advise your version of Captivate, and exactly what process you are
    having trouble with. Thanks!
    best wishes~
    Larry

  • I have a seagate 1tb hard drive and a 16gb memory stick, how do i transfer avi files from one to another as the click drag and drop wont work, please help?

    i have a seagate 1tb hard drive and a 16gb memory stick, how do i transfer avi files from one to another as the click drag and drop wont work, please help?

    Greetings,
    What happens when you drag it?
    Make sure the drive you are moving the files to has enough available space to receive the file:
    Click on the movie file and go to File >  Get Info and note the "size"
    Check the drive to which you are moving the file to make sure it has enough available space: https://idisk.me.com/madisonfile-Public/web/finder-drive-available-space-and-for mat.html
    Also note the format of the drive you are copying too.  If it is not Mac OS Extended or FAT (not recommended unless you are taking it to a windows computer) then that may be the issue.
    Hope that helps.

  • How do I create a drag and drop interaction using Captivate 8?

    I cannot figure out how to create a drag and drop interaction in Captivate 8. Options to do this are greyed-out.

    You can only use D&D in normal projects, not in responsive projects.
    http://helpx.adobe.com/captivate/kb/top-issues-captivate-8.html

  • Flash drag and drop not finding targets in Captivate

    I created a drag and drop game in Flash CS4 using Actionscript 2 which allows you to pull clothing onto a stick figure. If you get the clothes in the right place, over the target, then they stick, if not they return to their original position. It works fine but when I open it in Captivate 4 the targets no longer hold the objects. No matter where you place the clothes icons they will return to their original position.
    I have captivate set up for the correct Actionscript and the fps in captivate and the swf are the same. I've included the code I wrote below. Please help if you have any answers as to why this is happening.
    shirt_mc.onPress=function(){
    startDrag(this);
    shirt_mc.onRelease=shirt_mc.onReleaseOutside=function(){
    stopDrag();
    if (this._droptarget == "/targetShirt") {
    this.onTarget=true;
    _root.targetShirt.gotoAndStop(2);
    }else{
    this.onTarget=false;
    _root.targetShirt.gotoAndStop(1)
    shirt_mc.myHomeX=shirt_mc._x;
    shirt_mc.myHomeY=shirt_mc._y;
    shirt_mc.onMouseDown=function(){
    //this variable tells us if the mouse is up or down
    mousePressed=true;
    shirt_mc.onMouseUp=function(){
    mousePressed=false;
    shirt_mc.onEnterFrame=function(){
    //all these actions basically just say "if the mouse is up (in other words - the clip is not being dragged)
    // then move the MC back to its original starting point (with a smooth motion)
    if(mousePressed==false&&this.onTarget==false){
    this._x-=(this._x-this.myHomeX)/5;
    this._y-=(this._y-this.myHomeY)/5;
    pants_mc.onPress=function(){
    startDrag(this);
    pants_mc.onRelease=pants_mc.onReleaseOutside=function(){
    stopDrag();
    if (this._droptarget == "/targetPants") {
    this.onTarget=true;
    _root.targetPants.gotoAndStop(2);
    }else{
    this.onTarget=false;
    _root.targetPants.gotoAndStop(1)
    pants_mc.myHomeX=pants_mc._x;
    pants_mc.myHomeY=pants_mc._y;
    pants_mc.onMouseDown=function(){
    //this variable tells us if the mouse is up or down
    mousePressed=true;
    pants_mc.onMouseUp=function(){
    mousePressed=false;
    pants_mc.onEnterFrame=function(){
    //all these actions basically just say "if the mouse is up (in other words - the clip is not being dragged)
    // then move the MC back to its original starting point (with a smooth motion)
    if(mousePressed==false&&this.onTarget==false){
    this._x-=(this._x-this.myHomeX)/5;
    this._y-=(this._y-this.myHomeY)/5;

    Hi all,
    Thanks for the informative replies.  My main issue seems to be when adding animations.  For example (I have included one below
    ).  I add this animation to my project and it runs perfectly.  I then add another, very similar animation, and the sound dissapears completely in the previous one! I remove the one added, preview the project again and the first animation works again!
    The only access I make to Root is through the successful click on the otherTARGET, that tells captivate to move to the next slide.  Could this be the root (exuse the pun) of my problems?
    Any help appreciated!
    stop();
    var target:Array=new Array(likelyTARGET,otherTARGET,other1TARGET);
    addListners();
    var more:Sound = new consequencefocuspeople();
    var less:Sound = new consequencemoreserious();
    function addListners(){
    for (var i in target) {   
    target[i].addEventListener(MouseEvent.CLICK, onClick);
    function onClick(event:MouseEvent):void
    var item:String = event.target.name;
    switch(item)
      case "otherTARGET":
         var mainmov:MovieClip = MovieClip(root);
          mainmov.rdcmndNextSlide = 1;
      break;
      case "other1TARGET":
      removeAllEventListner()
      var soundChannel:SoundChannel = more.play();
      soundChannel.addEventListener(Event.SOUND_COMPLETE, soundComplete);
      break;
      case "likelyTARGET":
      removeAllEventListner()  
      var soundChannel2:SoundChannel = less.play();
      soundChannel2.addEventListener(Event.SOUND_COMPLETE, soundComplete);
      break;
    function soundComplete(event:Event):void {
    addListners()
    function removeAllEventListner()
    for (var i in target)
      target[i].removeEventListener(MouseEvent.CLICK, onClick); 
    thanks,
    tristan

  • Flash Drag and Drop interaction

    I have created a Flash SWF with a drag and drop interacation.
    Previewed in Flash, it works perfectly; the mc object can be picked
    up, and locks on the target when released, and dynamic text
    displays to tell the user that the match is right.
    When imported into Captivate, the swf appears to be a static
    file. Nothing can be moved.
    I redid it using older actionscript allowing it to be
    exported as a Flash v6 file; in this version, the mc object can be
    moved, but does not lock on the target when dropped, and the
    dynamic text box is blank.
    Both Flash and Captivate are CS3.
    Is this simply not compatible in Captivate? Searching for
    help on drag and drop isn't helpful because it brings up info
    relative to the drag and drop quiz, which is not what I need; this
    file is dragging and dropping images.
    Any assistance will be greatly appreciated, thanks!

    I don't know how much help it will be but you should check
    out
    this
    link to a page at Paul Dewhurst's web-site "RaisingAimee". You
    may not be able to get to that page until you register as a user on
    Paul's site. If you run into that, register, then try the link
    again.
    If this is any help to you, drop a few pieces-of-eight in
    Paul's PayPal account, and maybe send him a personal "thank you" on
    his Shout Box. If it doesn't work, it might be because those
    particular FLAs were created for version 1, as I remember, and may
    be to some extent version-specific. In any case, it might be worth
    a try.
    ~best wishes for your success,
    Larry

  • Drag and Drop | Text | Submit | PLEASE HELP

    Hi. I really need help.  THANK YOU in advance.
    I am building a voting contact from in flash profession with AS3. The functionality will allow users to drag and drop choices OR add their own allow them to submit their TOP 5 choices.
    PROBLEM:
    1. Drag and drop text is not submitted when it is dragged into the editable text field.
    HOW CAN I DO THIS TO ALLOW FOR DRAG AND DROPPED ITEMS TO BE SUBMITTED or TEXT THAT IS MANUALLY ENTERED.
    This can be seen HERE: http://pttdt.com/winnipegcafes.php
    AS3 Code used thus far:
    /* Drag and Drop
    Makes the specified symbol instance moveable with drag and drop.
    choice_1.buttonMode = true;
    choice_1.mouseChildren = false;
    choice_1.addEventListener(MouseEvent.MOUSE_DOWN, fl_ClickToDrag);
    function fl_ClickToDrag(event:MouseEvent):void
                choice_1.startDrag();
    stage.addEventListener(MouseEvent.MOUSE_UP, fl_ReleaseToDrop);
    function fl_ReleaseToDrop(event:MouseEvent):void
                choice_1.stopDrag();
    /* Drag and Drop
    Makes the specified symbol instance moveable with drag and drop.
    choice_2.buttonMode = true;
    choice_2.mouseChildren = false;
    choice_2.addEventListener(MouseEvent.MOUSE_DOWN, fl_ClickToDrag_2);
    function fl_ClickToDrag_2(event:MouseEvent):void
                choice_2.startDrag();
    stage.addEventListener(MouseEvent.MOUSE_UP, fl_ReleaseToDrop_2);
    function fl_ReleaseToDrop_2(event:MouseEvent):void
                choice_2.stopDrag();
    /* Drag and Drop
    Makes the specified symbol instance moveable with drag and drop.
    choice_3.buttonMode = true;
    choice_3.mouseChildren = false;
    choice_3.addEventListener(MouseEvent.MOUSE_DOWN, fl_ClickToDrag_3);
    function fl_ClickToDrag_3(event:MouseEvent):void
                choice_3.startDrag();
    stage.addEventListener(MouseEvent.MOUSE_UP, fl_ReleaseToDrop_3);
    function fl_ReleaseToDrop_3(event:MouseEvent):void
                choice_3.stopDrag();
    /* Drag and Drop
    Makes the specified symbol instance moveable with drag and drop.
    choice_4.buttonMode = true;
    choice_4.mouseChildren = false;
    choice_4.addEventListener(MouseEvent.MOUSE_DOWN, fl_ClickToDrag_4);
    function fl_ClickToDrag_4(event:MouseEvent):void
                choice_4.startDrag();
    stage.addEventListener(MouseEvent.MOUSE_UP, fl_ReleaseToDrop_4);
    function fl_ReleaseToDrop_4(event:MouseEvent):void
                choice_4.stopDrag();
    /* Drag and Drop
    Makes the specified symbol instance moveable with drag and drop.
    choice_5.buttonMode = true;
    choice_5.mouseChildren = false;
    choice_5.addEventListener(MouseEvent.MOUSE_DOWN, fl_ClickToDrag_5);
    function fl_ClickToDrag_5(event:MouseEvent):void
                choice_5.startDrag();
    stage.addEventListener(MouseEvent.MOUSE_UP, fl_ReleaseToDrop_5);
    function fl_ReleaseToDrop_5(event:MouseEvent):void
                choice_5.stopDrag();
    /* Mouse Click Event
    Clicking on the specified symbol instance executes a function in which you can add your own custom code.
    Instructions:
    1. Add your custom code on a new line after the line that says "// Start your custom code" below.
    The code will execute when the symbol instance is clicked.
    send_btn.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler);
    function fl_MouseClickHandler(event:MouseEvent):void
                // Start your custom code
                // This example code displays the words "Mouse clicked" in the Output panel.
                trace(box_1.text);
                trace(box_2.text);
                trace(box_3.text);
                trace(box_4.text);
                trace(box_5.text);
                trace(theName.text);
                trace(theEmail.text);
                // End your custom code
    PLEASE HELP

    It can be fairly involved once you realize how many aspects need to be dealt with.  You'll need to find a tutorial that teaches you how to use drag and drop involving targets so that when you drop something you check if it hit a valid target (textfield in your case) and then process your text into that target.  You should try searching Google using terms like "AS3 drag drop tutorial" and "AS3 dropTarget tutorial"   Here's a link from the latter of the two that has links to tutorials that might help.
    http://forums.adobe.com/post!reply.jspa?message=3462293

  • How do I add a progress monitor to a drag and drop question in captivate 7

    I need to build a quiz. We have spent a lot of time on the style guide and appearance but I am having difficulty adding a progress monitor to my drag and drop questions. How can I do this?

    A Drag&Drop is not a normal question slide, hence that progress indicator is not added, and it wouldn't even be functional.
    Long time ago I explained how to create a custom progress indicator, maybe it can help you: Customized Progress Indicator - Captivate blog

  • Designing a Drag-and-Drop Template using InDesign

    Hi,
    Please forgive my naivity here - I have just been handed a project for which I am completely unqualified, and am hoping for your help!
    I need to design an advertising booklet (folded A4 - i.e. each page being A5) to go out each month. Our customers will submit their adverts to us in various formats (single slot, double slot, half page, full page, etc, etc).
    My aim is to create a template for this so that, each month, I just need to drag and drop the adverts as they arrive, into set fields on the page, so that I don't have to worry about page layout, bleeding, etc.
    My boss has handed me a copy of InDesign CS5, and instructed me to see what I can do...
    So, firstly: is it possible to do what I'm trying to do?
    If not, what would your collective minds suggest is the best idea?
    If so, how do I do it? Are there tutorials online that I can follow through? If not, can someone instruct me on how to get started?
    Your assistance is appreciated!
    AJ

    First place to start with InDesign is this book: http://amzn.to/biUyIZ
    You can also check out Lynda.com. For $25/month you can't beat it.
    That said, yes, what you want to do can be done by creating a template, but you'll need to give your clients very specific instructions on how to create the PDFs that you'll want to drop into your book.
    One last suggestion, have a talk your boss about expectations. Buying InDesign doesn't make you a designer and more than going to Home Depot and buying tools will make you a carpenter. Learning ID will take some time.
    FWIW, I do offer remote training sessions, if you boss is so inclined to pay for it. You can find my contact info on my website, www.theindesignguy.com
    HTH,
    Bob

  • Reg Drag and Drop Feedback in Captivate 7

    Hi,
    I have a drag and drop in a slide (Captivate 7) as a knowledge check.
    Problem: I need a drag and drop interaction's correct feedback to reset when the learner returns to the drag and drop slide later or clicks the back button from the next slide. Currently the correct feedback is present.
    Background: The learner completes the drag and drop and gets the 'Correct!' feedback from show action and 'Incorrect' feedback from the existing captivate failure feedback. The learner then continues the lesson by going to the next slide. The problem is that, if the learner returns to the drag and drop, the 'Correct!' feedback still shows even though the drag source items have reset to their original locations and the learner can redo the drag and drop interaction. Clicking the 'Reset' button does not remove the existing 'Correct!' feedback. Even if the learner redoes the interaction and does the opposite (e.g. if the learner got it wrong the first time, but then gets it correct this second time), the existing feedback does not change from 'Correct.'
    Any ideas on how to fix this? I understand we have to create advanced actions. Please tell me the exact steps in this instance and whether i have to execute the actions on enter or exit.
    Note: I tired to read the posts related to this. But creating the advanced options step was not given.
    Thank you.

    OK.  Just asking because I saw one of the Adobe people chime in on a similar question a day or two back.
    Unlike quiz questions, the Success and Failure Captions for drag and drop interactions appear to have Item Names which suggests they can be hidden via Advanced Actions.  You should try setting an On Slide Enter action to hide them and see if that resolves your issue.

  • Flash drag and drop not working on Firefox for android browser

    Drag and drop functionality is not working using Firefox Browser for Android on tablet. We tested with flash action script 2.0 & 3.0 content, both have same issue. Specs of the tab and OS are as follows.
    Android - Kitkat 4.4.2
    Tab models - Lenovo A7600H and Samsung Tab4 T531
    Please refer to a previous case raised on the same issue here at this link (Case 1029615) - https://support.mozilla.org/en-US/questions/1029615
    Additionally, we observed that the object on which Drag and Drop event was triggered, is moving little bit when we double tap.
    Does Firefox provide any libraries to support Drag and Drop functionality on Flash? We are using Geekoview api to execute flash content in our app. Will the same support be provided in Geekoview as well?
    Are there other folks facing the same issue? Is there a solution or workaround to get this feature running?

    Flash on Android is no longer supported by Adobe. While Firefox does support basic functionality we mainly focus on legacy video applications. You may run into issues with Flash and Geckoview. I doubt we have any resources to support that configuration.

  • Drag and drop objects in Captivate 4

    Hi,
    Is it possible to have a user click and drag an object on a slide in captivate 4?
    For e.g. - in a matching type-quiz, instead of creating the usual quiz - I want a user to click and place the correct object in the correct box. Can this effect be achieved?
    Thanks!

    With either (or both) of these Drag and Drop widgets, yes: http://www.infosemantics.com.au/dragdrop

  • Since I updated to Maverick I cant "drag and drop" files. Please help

    I have no clue whats going on with this update... I can not move items around on my desktop... nor can I drag n drop files when they need to be!

    I have no clue whats going on with this update... I can not move items around on my desktop... nor can I drag n drop files when they need to be!

  • Is there a way to create drag and drop activities in Captivate 4?

    Or in any version of Captivate for that matter?
    I haven't see that there is that functionality, but maybe it is there and I didn't realize it.
    Thanks!

    Hello,
    You can try to use the default Matching Question slide where dragging is possible.
    If you want more functionalities, have a look at the interactive Drag&Drop widget by InfoSemantics (my fav) or the Dag&Drop Lite Question widget:
    Drag&Drop Interactive Widget
    Lilybiri

Maybe you are looking for

  • Is there any fix for the flashplayer installer not working on a windows 7, 64-bit, using firefox?

    I Hit the download link, get the permission windows, and the flashplayer installer window comes up, but doesn't do anything. i left it up all day when i went to work, come home 12 hours later and it was still just sitting there not installing. Is the

  • AP Mobile News App Wrong Date

    I've had the latest version of this app on my 3g for a while now and haven't had any issues until today. When I clicked on it all the current news stories loaded properly but all were showing December 31, 1969. Again all the news items are current -

  • Open PPS Dashboard Dashlet in new window on dashlet name click

    HI, Can any one tell me? How to Open PPS Dashboard Dash-let in new window on dash-let name click. Currently it is opening in  a same window so my self forced me to press a back button. Eg: This is the actual code which i got from view source. <a href

  • Problem uploading data through RM06IBI0

    Hi Experts,    We are uploading purchase info records data( ME12) through direct input program RM06IBI0. For some records, we are getting errors. This program is creating a sesson in SM35, In that sesson errors are:   Cursor field KONP-KSCHL(1) does

  • MBPro C2D 2.33GHz/3GB RAM drops frames playing H.264@1920x1080

    I've been trying to watch with a MBPro C2D 2.33GHz/3GB RAM a movie (in .mkv container) coded in H.264@1920x1080 (a blueray rip actually), but both Quicktime (I have Perian installed) and VLC would drop frames time to time. Processor never goes over 1