Drag and drop with audio for the success or failure for each object

Captivate 7

I saw Pooja video on at least 20 times, literally, but I can't yet find the complete instructions anywhere. Not even in things, I spent a lot of money on. Ouch.

ed.png

I want to drag "ed" & "and" and get a snap sound as they settle. I got it work. But when he moves the words in the wrong location, I want a sound alert, allowing them to know that it is a mistake and do not want the box to accept the term.

Sometimes video of Pooja, but it does not show how. I'm pulling out my hair. Soon it will get ugly around here.

Sorry for that, I always use advanced actions and sometimes forget (late in the evening) that everyone knows with them.

If you want to only play an audio clip when an object is moved and don't need a legend to appear or are happy with a legend of single failure (you can check that a new that), you can replace the command execute measures advanced in the screenshot of the other thread in "Play Audio"... »

I've used here a clip audio, available with Captivate in the Gallery\Sounds

Lilybiri

PS: Since the CP6 I use the word "container" instead of legend because the text can be inserted, not only in the text captions, but also in the forms (my favorite)

Tags: Adobe Captivate

Similar Questions

  • Drag and Drop with DataGrid to Image

    Hi all

    I have experimented with drag and drop between DataGrids. It was pretty simple, but what I want is to take a line from a DataGrid and drop it on an Image. Can I use or overlap the DataGrid drag and drop with a manual drag and drop for the Image? Or should I manually add the drag and drop only?

    I guess I'm just trying getting the Image to accept the line of the data grid.

    Hello

    Yes, you can interwine the two. I did something similar, except in my case I
    working with a datagrid and a tree and I need to override the default behavior for the tree.

    Just use dragEnabled = "true" to the datagrid control.

    Then the Image to define functions for the dragEnter and dragDrop events (and from other events, drag if you wish).

    private void doEnter(event:Event):void
    {
    DragManager.acceptDragDrop (Image (event.currentTarget));
    }

    private void doDrop(event:Event):void
    {
    your code here
    }
    Don't forget to add:
    Import mx.managers.DragManager;

  • Not able to drag-and - drop to import into the project

    Hello

    I'm simply is no longer able to drag and drop images to import the premiere pro cs6 project.

    (File is .avi created from Premiere Pro CS6, common parameters Media Encoder).

    Can someone help me with this?

    Windows 10

    Thank you very much, Bob, of the Peru.  That helped a lot.  It turns out that I had put Premiere Pro CS6 to run as administrator.

    Initially, I started first with the pressed-in shift (to reset preferences), but that didn't solve it.

    That's when I remembered, I tried 'run as administrator '.

    See you soon!

  • Drag and drop of MC to the other?

    Hello

    I created a bunch of MCs since a single MC in the library dynamically.

    Inside the timeline of the MC, I wrote drag and drop code.

    The MC is a parent movieclip, then residing in a scrollpane.

    I was wondering if it is possible to write AS3 to drag the clips into an another movieclip?

    If this isn't the case, the way I got it, is it at all possible to drag one MC container to another MC?

    Thank you

    Shaun

    You will need to create a new listener that monitors for MOUSE_MOVE which can constantly check the position of the cursor from whatever you intend to impose limits.  But the real test by you could be a little tricky to manage in terms of use of a hitTestObject approach since you can't test the object moved against its parent (because it in itself defines the limits of the parent).  You can optionally create another object within the parent that you test over hitTestObject using, maybe we you the alpha 0 for value so that you can't see.

    In all cases, the general approach would be something to the effect of...

    MC3.addEventListener (MouseEvent.MOUSE_DOWN, dragIt);
    function dragIt(evt:MouseEvent):void {}
    MC3.StartDrag (false);
    MC3.addEventListener (MouseEvent.MOUSE_MOVE, checkIt);
    }

    MC3.addEventListener (MouseEvent.MOUSE_UP, dropIt);
    function dropIt(evt:MouseEvent):void {}
    stopDrag();
    MC3. RemoveEventListener (MouseEvent.MOUSE_MOVE, checkIt);
    }

    function checkIt(evt:MouseEvent):void {}
    If (CONDITIONAL LIMITS OUTSIDE GOES HERE)) {}
    dropIt (evt);
    }
    }

  • cannot drag and drop a shortcut on the desktop of the address bar.

    I can drag and drop a shortcut to the menu of bookmarks. I can't drag and drop in the menu bookmark on the desktop. I can't drag and drop the address bar on the desktop.

    You drag the text selected in the address bar or the button "Site Identity" (lock/globe)?

  • Drag and Drop with XTable

    Hello

    is there a way to allow drag and drop from the data portal in a ChnComboBox-XTable column? Just like in a normal ChnComboBox.

    Kind regards

    Martin

    I found something

    "do something with the channel dropped"
    Void XTable1_EventDrop (ByRef, lines, columns, DropInformation) ' Erzeugter event handler
    Dim oDropElement

    For each oDropElement in DropInformation.DiademElements
    ' place here some code for table updateing
    Call MsgBox (oDropElement.ChannelGroup.Name & "/" & oDropElement.Name)
    Next
    End Sub

    'enable the fall for a single channel in pass 2 '.
    Void XTable1_EventDropAllowed (ByRef this, lines, columns, DropInformation, ByRef DropEffect) 'Erzeugter event handler.
    Dim oDropElement

    If (Col = 2) AND (DropInformation.DiademElements.Count = 1) then
    For each oDropElement in DropInformation.DiademElements
    If oDropElement.IsKindOf (eDataChannel) then
    DropEffect = 1
    End If
    Next
    End If
    End Sub

  • How to drag and drop multiple movieclips at the same time

    Hello world

    I'm a new actonscript 3 and adobe flash CC user and I am building an application but I have been stuck for several days. I have looked everywhere and tried everything I could think of, but I can't yet find a solution to my problem that I thought were pretty basic.

    Basically, let's say I have a rectangle and a circle on the stage. Once I did of the movieclips and assigned an instance name to each of them, I want to be able to perform a drag and drop the Rectangle so that both the rectangle and the circle become movable at the same time.

    For now, I have a mouse down events listener associated with the instance of rectangle, a method startDrag assigned to the rectangle instance and another assigned to the circle. But in this configuration, when I click on and drag the rectangle, only the circle is mobile (only the last line in the code is taken into account).

    I don't know if what I'm trying to achieve is feasible, but any help will be greatly appreciated, thank you!

    The startDrag() method can only work for one object at a time, so in your case the Treaty the last of them, designated the task.  This approach is to temporarily to plant the two objects in a container and then drag the container.

    rectangle.addEventListener (MouseEvent.MOUSE_DOWN, fl_ClickToDrag);  When I click on the rectangle

    var dragMC:MovieClip = new MovieClip();
    addChild (dragMC);

    function fl_ClickToDrag(event:MouseEvent):void

    {
    dragMC.addChild (rectangle);        move objects in the container
    dragMC.addChild (circle);
    dragMC.startDrag ();
    }

    stage.addEventListener (MouseEvent.MOUSE_UP, fl_ReleaseToDrop); When I release the mouse button

    function fl_ReleaseToDrop(event:MouseEvent):void

    {
    dragMC.stopDrag ();
    Rectangle.x += dragMC.x;         Adjust the positions of the objects to their new location
    Rectangle.y += dragMC.y;
    Circle.x += dragMC.x;
    Circle.y += dragMC.y
    addChild (rectangle);                 move back to the scene objects
    addChild (circle);
    dragMC.x = dragMC.y = 0;       reset the benchmark for the dragMC
    }

    All this stuff of repositioning in the Drop function is necessary because when you drag the container, the positions of the content are still on their original coordinates inside the container.  So when you drop them they will resume their x / y positions in their new parent, meaning they go back where they were.  Reposition them where they have been trained to take into account the change in the position of the dragMC.

  • 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

    }

    }

  • Hi help me with drag and drop with as3 if you please

    Hello friends,

    I am a newbie to as3 in flash and had a prob with drag and drop features

    var dragArray:Array = [square_word, circle_word, triangle_word];

    var matchArray:Array = [squareMatch, circleMatch, triangleMatch];

    var posArray:Array = [{x: 276, y: 207}, {x: 443, y: 207}, {x: 107, y: 207}];

    var currentClip:MovieClip;

    var startX:Number;

    var startY: number;

    for (var i: int = 0; i < dragArray.length; i ++) {}

    dragArray [i] .buttonMode = true;

    dragArray [i] .addEventListener (MouseEvent.MOUSE_DOWN, item_onMouseDown);

    matchArray [i] .alpha = 0.2;

    }

    function item_onMouseDown(event:MouseEvent):void {}

    currentClip = MovieClip (event.currentTarget);

    startX = currentClip.x;

    startY = currentClip.y;

    addChild (currentClip); bring to front

    currentClip.startDrag ();

    stage.addEventListener (MouseEvent.MOUSE_UP, stage_onMouseUp);

    }

    function stage_onMouseUp(event:MouseEvent):void {}

    stage.removeEventListener (MouseEvent.MOUSE_UP, stage_onMouseUp);

    currentClip.stopDrag ();

    var int index = dragArray.indexOf (currentClip);

    var matchClip:MovieClip = MovieClip (matchArray [index]);

    If (matchClip.hitTestPoint (currentClip.x, currentClip.y, true)) {}

    a match was found. Position the clip using the values of posArray:

    currentClip.x = posArray [index] .x;

    currentClip.y = there posArray [index];

    make not draggable:

    currentClip.removeEventListener (MouseEvent.MOUSE_DOWN, item_onMouseDown);

    currentClip.buttonMode = false;

    } else {}

    football match has not, so send the clip to the back where he began:

    currentClip.x = startX;

    currentClip.y = startY;

    }

    in this code, that I'm not the subject abruptly to its original position if he fell into a movieclip wrong (as we should have the availability of droping the drag square circle alse object) and then we should have a button to check if everything is correctly matched, if not after clicking another button 'correctitself', we should get the good objects droping on correct locations automatically

    Please help with any suggestions ASAP

    }

    assign your listener matchall checkAllMatchF and use button:

    var dragArray:Array = [square_word, circle_word, triangle_word];

    var matchArray:Array = [squareMatch, circleMatch, triangleMatch];

    var posArray:Array = [{x: 276, y: 207}, {x: 443, y: 207}, {x: 107, y: 207}];

    var currentClip:MovieClip;

    var startX:Number;

    var startY: number;

    for (var i: int = 0; i< dragarray.length;="" i++)="">

    dragArray [i] .buttonMode = true;

    dragArray [i] .addEventListener (MouseEvent.MOUSE_DOWN, item_onMouseDown);

    matchArray [i] .alpha = 0.2;

    }

    function item_onMouseDown(event:MouseEvent):void {}

    currentClip = MovieClip (event.currentTarget);

    startX = currentClip.x;

    startY = currentClip.y;

    addChild (currentClip); bring to front

    currentClip.startDrag ();

    stage.addEventListener (MouseEvent.MOUSE_UP, stage_onMouseUp);

    }

    function stage_onMouseUp(event:MouseEvent):void {}

    stage.removeEventListener (MouseEvent.MOUSE_UP, stage_onMouseUp);

    currentClip.stopDrag ();

    var int index = dragArray.indexOf (currentClip);

    var matchClip:MovieClip = MovieClip (matchArray [index]);

    If (matchClip.hitTestPoint (currentClip.x, currentClip.y, true)) {}

    a match was found. Position the clip using the values of posArray:

    currentClip.x = posArray [index] .x;

    currentClip.y = there posArray [index];

    make not draggable:

    currentClip.removeEventListener (MouseEvent.MOUSE_DOWN, item_onMouseDown);

    currentClip.buttonMode = false;

    } else {}

    football match has not, so send the clip to the back where he began:

    currentClip.x = startX;

    currentClip.y = startY;

    }

    }

    function checkAllMatchF (): Boolean {}

    for (var i: int = 0; i<>

    If (dragArray [i] .x! = matchArray [i] .x | dragArray [i] there! = matchArray [i] there) {}

    Returns false;

    }

    }

    Returns true;

    }

  • Having problem adding to drag-and - drop operation to move the furniture on a floor plan

    I have the following code. I need to create floor plans where users can drag and drop the furniture on the floor plan.  I have three elements that work but when I convert all of the additional items to a symbol and select movie clip and then add several lines to the code, none work... How the code can determine that my clip I named 'couch' goes to clip 4.  Thanks if you can help, Frankie Foster

    Here is my code:

    var numObjects:uint = 3 / / assign the total number of movieclips that will be dragged

    for (var i: uint = 1; i < = numObjects; i ++) {}

    This ["movieClip_" + String (i)] .addEventListener (MouseEvent.MOUSE_DOWN, clickToDrag);
    This ["movieClip_" + String (i)] .addEventListener (MouseEvent.MOUSE_UP, releaseToDrop);

    }

    var selectedMC:MovieClip;

    movieClip_1.addEventListener (MouseEvent.MOUSE_DOWN, clickToDrag);
    movieClip_2.addEventListener (MouseEvent.MOUSE_DOWN, clickToDrag);
    movieClip_3.addEventListener (MouseEvent.MOUSE_DOWN, clickToDrag);
    movieClip_1.addEventListener (MouseEvent.MOUSE_UP, releaseToDrop);
    movieClip_2.addEventListener (MouseEvent.MOUSE_UP, releaseToDrop);
    movieClip_3.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;
    }
    }

    It is not a conflict, but it's a waste of code because they are both the same thing.  The first with the right loop is more effective in terms of coding and will make life easier for you because you only need to adjust the numObjects value to have it include more.

    You just need to assign instance names for the rest of your objects in the same way... movieClip_ # code as you (with loop version) should be enough.

  • 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 development tool for OA Framework

    Hello! Are there Drag and Drop of the development tools for OAF for ebs R12? I know this has been asked before, but most of the positions have been since 2007 or 2009. Maybe there was a recent version of JDeveloper which supports Drag and Drop?

    Thank you!

    Hello

    According to my understanding.

    Drag and Drop the features not available in Office Tools framework Jdeveloper.

    You need to declaratively or programmatically implementation.

    Thank you

    Dilip

  • Cannot drag and drop a pattern to the color chart

    I have a PC with Windows 10 so maybe that's part of the problem.

    I've been working with a very detailed model and using the function drag / move in the color chart with no problems.  Then all of a sudden it stopped working.  Any thoughts?  I can drag and drop other items in, but not this model more.  Any thoughts?

    Try and select the object complete, then object > model > done. This can generate a more descriptive error message. Will there be a clipping mask in your work?

  • Drag and drop work stoppages until the computer restarts

    We are experiencing a problem on some machines (Windows 7 SP1 64 bit) where slide - déposer ceases to function in all applications.

    For example, in Windows Explorer, you can initiate the drag, but when you release the mouse button to make the 'drop' the drag image/icon remains right on the screen.  Once you press the ESC operation key drag is cancelled and slide it image/icon disappears.

    There seems to be a sequence of actions in various applications as the user doest that tests the problem.  Even after closing all applications and even restarting Windows Explorer, disconnect and reconnect the mouse, the problem persists.  A reboot seems to be necessary to solve the problem.  We cannot identify any resource that is used as memory, GDI and user handles objects, etc., to the top.   Windows Process Monitor and Process Explorer have not ben useful.

    Do we know if there are a few key resources being locked that prevents drag it / move to fill?

    Actually figured this out in part.  It seems to be related to an application that has been hanging mouse events and leaving the passage of events in a bad state of a certain type.

  • Windows movie maker now crashes whenever I do drag and drop an audio file in the main window, what I can do?

    Signature of the problem:
    Problem event name: BEX
    Application name: MOVIEMK.exe
    Application version: 6.0.6002.18273
    Application timestamp: 4c1a4a61
    Fault Module name: StackHash_fd00
    Fault Module Version: 0.0.0.0
    Fault Module Timestamp: 00000000
    Exception offset: 00000000
    Exception code: c0000005
    Exception data: 00000008
    The system version: 6.0.6002.2.2.0.768.3
    Locale ID: 2057
    Additional information 1: fd00
    More information 2: ea6f5fe8924aaa756324d57f87834160
    Additional information 3: fd00
    Additional information 4: ea6f5fe8924aaa756324d57f87834160
    Read our privacy statement:
    http://go.Microsoft.com/fwlink/?LinkId=50163&clcid=0x0409
     
    ___
    Data Execution Prevention - I can't turn off for WMM and I can't uninstall and re-install WMM...

    Hello

    1. don't you make changes on the computer before the show?
    2. you receive an error message on the computer?
    3 is confined with any particular audio file?

    4. what happens when turninig turn off DEP for the program?
    In some cases, a file with a file type that Windows Movie Maker does not support may cause Windows Movie Maker stops responding. This can be caused by incompatible video filters. You can verify what filters are installed and force Windows Movie Maker to avoid loading specific filters by restarting simply Windows Movie Maker.
    Method 1:
    You can solve the problem by following the steps from the link:
    Problems with importing files into Windows Movie Maker
    http://Windows.Microsoft.com/en-us/Windows-Vista/problems-importing-files-into-Windows-Movie-Maker
    Method 2:
    You can also perform a clean boot and check if the problem occurs.
    How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7
    http://support.Microsoft.com/kb/929135
    Note: After a repair, be sure to set the computer to start as usual as mentioned in step 7 in the Knowledge Base article.

    Method 3:
    You can see the city link below to download the codecs on the computer.
    Codecs: Frequently asked questions
    http://Windows.Microsoft.com/en-us/Windows7/codecs-frequently-asked-questions
    WARNING: Using third-party software, including hardware drivers can cause serious problems that may prevent your computer from starting properly. Microsoft cannot guarantee that problems resulting from the use of third-party software can be solved. Software using third party is at your own risk.

Maybe you are looking for

  • Cannot save the new document Pages

    I created a new document Pages, but when I tried to save it I got the message "the file"Untitled 4"could not be opened." I'm on a iMac running El Capitan (10.11.6); the version of the Pages that I use is 5.6.2 (2573)

  • How can I disable the new pop alert software - ups appearing regularly on all of my devices?

    Every once in a while, I get a window pop up on my screen, announcing that the new software updates are available for my computer. My action options are limited - download all, remind me later, and one more. These alerts are a nuiscance for me. Is it

  • HP LASerJET m125-126: waste irresistible impression

    It is impossible to cancel printing by using the red X key. I feel like the sorcerer's apprentice.  I can't stop the printing of unwanted copies. He lies still and until exhausted my supply of paper (or ink).

  • Replication between PS6010 and PS410 question

    Dear friendsIt takes backup volumes to the old array to new array -Old (PS6010 with firmware V4.3.6) - old table group-New table (PS4110 with firmware V7.0.9) - new group After I set up replication between two group when I try to replicate group volu

  • color printer problem

    Cyan does not; Yellow barely comes out when printing.  Tried all three levels of cleaning of the printheads with no luck. Print report prints black (three shades of black & gray); Pink (six shades of pink); shows barely any yellow; no blue. Another p