Someone has found how to use the command of javascript loadXMLDoc by in Captivate?

I am trying to build a more interactive learning experience for ready data of an XML document.

However, I can't the javascript to work using the loadXMLDoc command.

Everyone has understood how to make this work?

I think that you are referring to a custom function named loadXMLDoc, it is not integrated into the XML DOM. You must create the XML request script and analyze yourself or borrow one. There is nothing "built-in" who can do it for you.

XML DOM tutorial

Tags: Adobe Captivate

Similar Questions

  • Is there an online class to learn exactly how to use the command prompt which is quite through. OR y at - it clear a book that explains in detail for this? Who should I contact?

    I would like to know how to use the command prompt.  The nethodology type in the cmd prompt with the syntax and the Liposuction, in other words, the real return to a command prompt. I downloaded about evertthing I can find about this, but can't seem to put it all.

    My OS is Windows XP Pro sp3, lots of RAM, my address is * address email is removed from the privacy *.   I would like to take a rough online study if one is available if it is not too expensive.

    It really depends on what you mean by "to a command prompt."

    If you open a command prompt window (for example, in start > run > cmd > OK), you can enter a number of orders.  The list of available commands, including their syntax, is here--> http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/ntcmds.mspx?mfr=true

    You can also follow the links here:http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/ntcmds_o.mspx

    If you want to get more sophisticated - automating command-line tasks - you can start here: http://technet.microsoft.com/en-us/scriptcenter/default.aspx

  • How to use the command import on the production environment?

    Hi gurus of the OFA.

    I want to know about the production environment OAF and development environment, the differences between them and how to use the command import on the production environment?



    Concerning

    Ajay Sharma
  • How to use the command line in w/Merge Vista?-need to cut password expires...

    I use Vista Home Basic by Fusion on a Mac Intel. The instructions to stop Vista expire a password is to use the command-line under Vista. I already know these instructions, so my question is:

    How to use the command line inside Vista, on a virtual machine?

    Thanks for your help in advance, I don't want to mess something else.

    Jacob.

    With assistance from the command-line on Vista is no different if it is to be run on a virtual machine or on a physical machine, so just like you would on any physical machine.

  • How to use the commands on the cmd prompt witout using a string like 'netstat' but I need output

    How use the commands on the cmd prompt witout using a string like netstat but I need output
    example: C:\ > netstat-an... will give its results
    But if the keyword netstat is blocked...
    I want to use the command netstat another way... can I convert it to binary, and then I can run or something else
    Please answer my questin

    Netstat is simply a file program located in the folder C:\Windows\System32.   It appears as "netstat.exe.  If you rename (or copy / paste / rename) to "abc.exe" then you can run it using 'abc' instead of 'netstat '.

    HTH,
    JW

  • How to use the command shutdown in vista?

    I used the shutdown command to make sure that the computer is turned off at some point in XP, but I just wanted to put my own computer to shut down after accidentally booting to Vista Home in order to download a large file while I was at work.

    I tried shutdown-s t 9000, which should have set a time limit of two and a half hours, but he gave me the help screen message.
    I saw that the main difference is that dashes had been changed to slashes, but "shutdown /s /t 9000" also failed.

    What is the correct syntax to use the command? I confirmed that 'shutdown-s-t 9000' works very well in my XP virtual machine, if that is the new syntax to accomplish the same thing with Vista? I tried "run as administrator" to the command-line nothing helps.

    Hello
    It is the command to shut down the computer in Vista.
    SHUTDOWN [/s] [t / xxx]
     
    xxx/t:  The value of the timeout prior to xxx seconds. (The valid range is 0-600, with a default value of 30. The use of / t xxx implies the /f option.
     
    /s: Shut down the computer.
     
    /f: Force running applications to close without prior notice to users. (/ f is automatically defined when used in conjunction with xxx/t).
  • How to use the command the reel with Bind Variables

    For the next REEL, I want the GEN_DATE to be entered by the user at the time of execution of the SQL Script. Is this possible in the command of the COIL.


    the colsep value,-separate the columns with a comma
    set pagesize 1000 - get rid of disturbing - between pages
    set position-the title of column Print
    Set trimspool on - remove the spaces to the right. eliminating spaces until eol
    set linesize 700 - line size should be the sum of the column width
    coil spool_results.csv
    SELECT *.
    OF GUI_SITE_JOURNAL
    WHERE GENDATE_ BETWEEN ' 2012-11-01 00:00:00:00000' AND ' 2012 - 11 - 02 00:00:00:00000'* ORDER BY GEN_DATE;
    spool off;

    The reason is to give the opportunity to the user so that he can enter any beach without changing the code of the script.

    Can someone help me please.

    Published by: user10903866 on February 18, 2013 19:44

    Hello

    user10903866 wrote:
    For the next REEL, I want the GEN_DATE to be entered by the user at the time of execution of the SQL Script. Is this possible in the command of the COIL.

    Do you want user input in the command of the COIL, or want you she in the query?

    the colsep value,-separate the columns with a comma
    set pagesize 1000 - get rid of disturbing - between pages
    set position-the title of column Print
    Set trimspool on - remove the spaces to the right. eliminating spaces until eol
    set linesize 700 - line size should be the sum of the column width
    coil spool_results.csv
    SELECT *.
    OF GUI_SITE_JOURNAL
    WHERE GENDATE_ BETWEEN ' 2012-11-01 00:00:00:00000' AND ' 2012 - 11 - 02 00:00:00:00000'* ORDER BY GEN_DATE;

    What are the data type gen_date of the oif?
    If it is a string, it is a big mistake. Information about the dates in the DATE columns belongs.
    If it's a DATE, so don't try to compare strings, such as "2012-11-01 00:00:00:00000'."

    spool off;

    The reason is to give the opportunity to the user so that he can enter any beach without changing the code of the script.

    Can someone help me please.

    One way to do that is with substitution variables:

    ...
    SET     VERIFY  OFF
    
    ACCEPT  start_gen_date     PROMPT "Starting date (e.g., 2013-02-18 23:00:00.00000): "
    ACCEPT  end_gen_date     PROMPT "Ending date   (e.g., 2013-02-18 23:59:59.99999): "
    
    SPOOL  spool_results.csv
    
    SELECT    *
    FROM        gui_site_journal
    WHERE        gen_date  BETWEEN '&start_gen_date'
                    AND     '&end_gen_date'
    ORDER BY  gen_date;
    
    SPOOL  OFF
    

    There are security considerations. Variables substitution to the devious users the power to issue a SQL, such as DROP TABLE command. Users with SQL * Plus access already have this power, anyway.

  • Someone has found how you actually contact Mozilla or will we just we amateurs to find solutions to the other?

    I found that I cannot now log on my emails via Thunderbird after changing my password for BT and entered the new manually when prompted by Thunderbird. This seems to be a common problem. BT have been very clear with me today. I am able to access my emails by going to their website and they have no responsibility to solve the problems with Thunderbird. It seems no obvious route to someone at Mozilla who takes responsibility for the problem.

    Even if Thunderbird has always Mozilla as part of its name, is therefore no longer a Mozilla product, because he was treated by a community for a while now. This is why the development is at a slower pace and each seven versions major version compared to Firefox.

    Mozilla doesn't have the resources for a call center for one on a support on this forum, phone, chat or e-mail for all of their products and their projects. One on one support if there would not be for Thunderbird and SeaMonkey (who is also working on a community).

  • T430s will not restart, can someone please explain how to use the 4 recovery discs?

    So I bought a Lenovo T430s, with Windows 8.1 almost 2 years (off warranty now). It comes frozen, has started to beep, then turns off, and now it won't restart. When I turn it on, it always goes to the black and blue screen that offers a Boot Menu and a Menu of Application. The Start Menu has 2 options: ATAPI CDO: MAST * beep * ADVD - RAM UJ8C2 and PCI LAN: IBA GE Slot 00C v1536 8.

    When I bought the laptop, it came with 4 disks. Two of them say "Windows 8 Recovery for Windows 8 Media products", and the other two say "operating system recovery disc, Windows 8 Pro (OEM Activation required 3.0)". "

    I don't know what that most of this way. Can someone explain how I can fix or restart my laptop? I wonder if I am supposed to use a bootdisk of some, although it is at a certain menu option... I really appreciate any help

    The first item in the Startup tab is 'Boot', Yes?

    Press enter and start > splash screen should display with something like a list of the Boot priority order .

    What do you see that listed there?

    Kind regards.

  • How to use the command to move the machine to a data store in another data store in WTT(Windows Test Technology) Atlas (2.7)?

    I searched doc help WTT Atlas, just found this: "the MoveMachine command allows users to move client computers between the basins of the machine. This command assumes that the user has permissions of correction to carry out operations and generates an error if this is not the case. "

    Note: this command just explain machine displacement between the watersheds of the machine instead of the data store.

    This issue is beyond the scope of this site (for consumers) and to be sure, you get the best (and fastest) reply, we have to ask either on Technet (for IT Pro) or MSDN (for developers)
    *
  • How to use the commands serveroutput in plsql

    Hello

    I have to create a file waiting inside my procedure how is possible to use? Is there a way.
    Dynamic instructions will be working

    For example, CREATE OR REPLACE PROCEDURE SP_PROC1
    AS
    BEGIN

    SET SERVEROUPUT

    COIL D:\ABCD. JOURNAL;

    SET SERVEROUTPUT
    SPOOL OFF;

    END;
    /

    Thank you

    Why not use a table to store your messages instead of dbms_outputting all this?
    Simply create a (standalone) procedure that handles inserts and then you have the data available through a table more away treatment / for the purposes of tax.

  • How to use the command-line ADT to build an app, iOS, including the ActionScript native extension file

    Hi all

    I have packaged ANE files in my iOS app. I can export their version don't build via FB, no problem.

    But how can I include these DONKEY by ADT command line files? I do like the other files in the library?

    Thanks in advance for any help.

    I was stupid who did not find the proper syntax.

    extdir - extensionsDir will do the trick.

  • Where are the Solution Center shortcuts, and how to use the (Scans)

    A frustration more than Windows 8 to get more than

    I have attached my C3180 to my new Windows 8 machine and the software installed.  It is running, but I'm a bit lost in the use of the center of Solution that seems different from what I had on XP.

    1. the only way I could see to change the destination of a scan, has been to create a new shortcut with the destination I want to use.  Is this correct?

     

    2. now that I have a short cut, where is it? When I run a scan from the Solution Center, the analysis proceeds to the default destination, so it must use the default shortcut.

    Is it possible to use the start scanning on the home of the solution Center window and make the scan go to my choice of the destination folder?

    Quit smoking research

    I found how to use the solution Center in Windows 8 here.

  • How to use the tuner DVB - T in Qosmioplayer?

    Hello

    Can someone tell me how to use the tuner DVB - T in Qosmioplayer? It is very much in the media library, but on starting the Qosmioplayer I just get snow like the old analog TV. I can go to my sky box via composite inputs, but want to use TNT an antenna in the drive.

    Hello

    As far as I know the Qosmio player is not able to receive the digital channels.
    Unfortunately, it is not possible.

  • How to use the NI USB-6525 digital filtering feature?

    Hi can someone tell me how to use the 'digital filtering' feature of the NI USB-6525 device? How can I set up the device to turn on? Using LabVIEW or NI MAX?

    It is configured using a DAQmx property node:

Maybe you are looking for