This is part of the last question that I posted. The code below sends the statement but when I view the record in the ADL statement viewer the verb is not showing. Can you tell me what I might be doing wrong on the verb line? Thank you.
function init()
{
var stmt = new ADL.XAPIStatement(
'mailto:menken.john@gmail.com',
'http://adlnet.gov/expapi/verbs/launched',
'http://vwf.adlnet.gov/xapi/virtual_world_sandbox'
);
ADL.XAPIWrapper.changeConfig({
'endpoint': 'https://lrs.adlnet.gov/xapi/',
'user': 'xapi-tools',
'password': 'xapi-tools',
'auth': 'xapi-tools'
});
ADL.XAPIWrapper.sendStatement(stmt);
}