Archive
Archive for the ‘sourcecode’ Category
How to get rid of “Questions completed” feedback in Hot Potatoes quizzes
2013/12/20
Leave a comment
- If you dig into the JavaScript in the HTML, looking for the default feedback t4ext (“Questions completed so far”), you see (as I have done here manually; this could be relatively easily done also for an entire batch of course quizzes with a global replacement) that you turn this option off:
- var CompletedSoFar = ‘Questions completed so far: ‘;
- var ShowCompletedSoFar = false;
- But that does not get rid of the #/# being displayed.
- There is an option to get rid of the Feedback text:

- If I read the options correctly, there is no such setting (we tried the obvious suspects here):

-
function CheckQuestionsCompleted(){ // trp: trying to disable showing to student QuestionsCompleted // (entire function even if somebody changes the variable ShowCompletedSoFar) // if i understand correctly, what users really do not want to show // is a misleading completed correctly for completed // (which leads to students not know that they have finished?) - \ // is there no better way? // was: if (ShowCompletedSoFar == false )){return '';} // trp: cannot find a gui to set ShowCompletedSoFar to false var QsCompleted = 0; for (var QNum=0; QNum<State.length; QNum++){ if (State[QNum] != null){ if (State[QNum][0] >= 0){ QsCompleted++; } } } //Fixes for 6.2.2.2 if (QsCompleted >= QArray.length){ return ExerciseCompleted; } else{ return ''; // trp: CompletedSoFar + ' ' + QsCompleted + '/' + QArray.length + '.'; } } - Since you can edit the sourcefiles of a HotPotatoes installation, you can turn it also off for a machine permanently:
- If this variable is there in the underlying code, shouldn’t there be also an option in the GUI (not necessarily, maybe was never implemented – or maybe I just have not found it…).
- For what the output will look like, see here.
Categories: assessments, Authoring-tools, e-learning, sourcecode
hot-potatoes, javascript
Request to download the digital audio lab classroom audio configuration on the fly, program and source for Windows 7
2013/12/09
Leave a comment
Your message has been sent
Request to download the Sanako Study 1200 licensing server, student and classroom name reset, program and source
2013/06/11
Leave a comment
Your message has been sent
Back to description for reset of server reset program.
Request to download the Sanako Study 1200 Recorder Installer source
2013/06/11
Leave a comment
(Please be advised that there is no compiled code download for this software program since any implementation is institution-specific. The source code (written in AutoIT) download is for demonstration purposes only and not ready to run without you making the necessary adaptations to your environment).
Your message has been sent
Back to description of sanako recorder install faculty program
Protected: How you can automate giving your teachers access to your Sanako language lab in the offices and from home
2013/04/26
Enter your password to view comments.
Categories: service-is-programming, sourcecode
autoit, automation, ms-windows-installer, msi, sanako-study-1200
Code documentation for a job ticket assignment and reporting application
2013/01/28
Leave a comment
- JobAssignments allows for managing job tickets with easy tagging and filtering of task assignments, and for aggregate analysis and reporting.
- Originally developed only for simple tag aggregation reports (watch a demo), JobAssignments can now also analyze the tag graph:

- Click the table of contents on the right to browse the VBA documentation built with Aivosto.


Source code samples
2012/07/29
Leave a comment
Categories: screenshot-albums, sourcecode
auralog-tell-me-more, autoit, c#, regular-expressions, sanako-study-1200, VBA









