|
I have purchased powerpoint import module, I have sucessfully imported my PPT and i can see 3 problems:
1- Animations (effects) are no imported sucessfully. ¿Someone can tell me if this is a bug?
2- cmi.core.lesson_status is always incomplete, I have seen all the slides but status does not change. ¿Someone can tell me if this is a bug?
3-SCO must look for the API not only in parent windows but in child frames of these parent windows recusively. I have had to change lms.js to add this function and now, works fine.
function findAPI(win) { // look in this window if (typeof(win) != 'undefined' ? typeof(win.API) != 'undefined' : false) { if (win.API != null ) { return win.API; } } // look in this window's frameset kin (except opener) if (win.frames.length > 0) { for (var i = 0 ; i < win.frames.length ; i++) { if (typeof(win.frames[i]) != 'undefined' ? typeof(win.frames[i].API) != 'undefined' : false) { if (win.frames[i].API != null) { return win.frames[i].API; } } } }
|