Skip to content

Instantly share code, notes, and snippets.

@Qwizi
Qwizi / ang.js
Last active June 7, 2025 13:44
ang
(() => {
try {
// Mark all objectives as completed
const objectiveCount = Number(SCORM2004_CallGetValue('cmi.objectives._count'));
if (objectiveCount > 0) console.log(`Completing ${objectiveCount} objectives`);
for (var i = 0; i < objectiveCount; i++) {
const objectiveId = SCORM2004_CallGetValue('cmi.objectives.' + i + '.id');
SCORM2004_SetObjectiveStatus(objectiveId, LESSON_STATUS_PASSED);