View Convert "localhost" address to your Mac's current IP address
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(* functions *) | |
-- string replace function from http://www.macosxautomation.com/applescript/sbrt/sbrt-06.html | |
on replace_chars(this_text, search_string, replacement_string) | |
set AppleScript's text item delimiters to the search_string | |
set the item_list to every text item of this_text | |
set AppleScript's text item delimiters to the replacement_string | |
set this_text to the item_list as string | |
set AppleScript's text item delimiters to "" | |
return this_text |
View AppleScript for generating SCORM manifest <file> nodes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(* | |
Based on http://www.jonn8.com/html/scripts/misc/List_Folder_Contents.html | |
with string replacement function from https://discussions.apple.com/message/20542403#20542403 | |
*) | |
property script_name : "List Folder Contents" | |
property script_description : "This script will list a folder's contents returning full paths as strings and limit the list to specific file types. The script can also process subfolders (recursion)." | |
set the_folder to (choose folder with prompt "Choose a Folder to List:") as Unicode text | |
set file_types to {} --file types, set to {} to true to just return folders; file types are 4 character codes such as "osas" or "TEXT" |
View Ungraded quiz with feedback
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<title>Sample ungraded question with feedback</title> | |
<style> | |
/* basic page styling */ | |
body { font-family: sans-serif; color: #444; font-size: small; margin: 0px; padding: 2em; background: #eee; } | |
h1 { font-size: xx-large; font-weight: normal; color: #777; } | |
h2 { font-size: x-large; font-weight: normal; } |
View sample.htm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML> | |
<!-- saved from url=(0014)about:internet --> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<title>@MOVIETITLE</title> | |
<script> | |
// set document.domain property here, if it works for your environment/SCORM implementation | |
// document.domain=""; |
View sample.htm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML> | |
<!-- saved from url=(0014)about:internet --> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<title>@MOVIETITLE</title> | |
<script> | |
// set document.domain property here, if it works for your environment/SCORM implementation | |
// document.domain=""; |
View sample.htm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML> | |
<!-- saved from url=(0014)about:internet --> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<title>@MOVIETITLE</title> | |
<script> | |
// set document.domain property here, if it works for your environment/SCORM implementation | |
// document.domain=""; |
View sample.htm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML> | |
<!-- saved from url=(0014)about:internet --> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<title>@MOVIETITLE</title> | |
<script> | |
// set document.domain property here, if it works for your environment/SCORM implementation | |
// document.domain=""; |
View sample.htm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Copyright [2008] Adobe Systems Incorporated. All rights reserved --> | |
<!-- saved from url=(0013)about:internet --> | |
<!DOCTYPE HTML> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<title>@MOVIETITLE</title> | |
<script> | |
// set document.domain property here, if it works for your environment/SCORM implementation |
View sample.htm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Copyright [2008] Adobe Systems Incorporated. All rights reserved --> | |
<!-- saved from url=(0013)about:internet --> | |
<!DOCTYPE HTML> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<title></title> | |
<script src="https://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js"></script> | |
<script src="standard.js"></script> | |
<script src="SCORM_support/scorm_support.js"></script> |
View log.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SCORM initialized. Ready to go! | |
http://cloud.scorm.com/content/courses/FTYR5Q0IM4/Archive4056f446-8c7e-4794-82d1-5c9f40b2a302/0/MMTracking.swfFailed to load resource: the server responded with a status of 404 (Not Found) | |
Captivate_DoExternalInterface: Initialize, , '' | |
Captivate_DoExternalInterface: GetValue, cmi.entry, '' | |
Captivate_DoExternalInterface: GetLastError, , '' | |
Captivate_DoExternalInterface: SetValue, cmi.exit, suspend | |
cmi.exit(suspend) is not cached. Sending to LMS. | |
Captivate_DoExternalInterface: GetLastError, , '' | |
Last Get/Set was successful. Preventing pointless GetLastError invocation. | |
Captivate_DoExternalInterface: GetValue, cmi.location, '' |
NewerOlder