ATutor

Learning Management Tools







Pages:1 2 3 4 5 6 7 8 9 10 11 12 13 14 15


SCORM questions


  • 2005-07-15 05:56:06

    SCORM questions

    Hi there,

    This might be banal questions, but I'm not all up to date on the SCORM specs in general nor in aTutor, and I'm a bit confused of the difference between the SCORM RTE (packages in 1.5) and the content part of aTutor (manage -> content)

    As far as I've understood the content part is SCORM (1.2?) and can be reused in other LMS-es, and can in that way be threated as a SCO? And as far as I've understood the RTE supports more SCORM specs, but you cannot edit the content directly through aTutor here, but need to use author tools as Lectora et al...?

    ...so what's the difference between the package part and the content part, and in which different ways are you supposed to / can you use these? For us one of the most importaint features of aTutor is that you have the possibility to edit SCORM objects within the tool, and is not dependent on third party software..

    Please enlighten me :)

  • 2005-07-16 11:34:35

    Content Packages vs SCOs

    The difference between ATutor content and Package content (ignoring the terminology for a moment) is that ATutor content can be created, imported, and exported as IMS/SCORM content packages, while the content associated with Packages is a SCORM 1.2 Sharable Content Object (SCO). The two are related. SCOs include a content package (so you could import a SCO as ATutor content and visa versa), but it includes sequencing rules (which are stripped out if imported as ATutor content) that specify the order and conditions of how screens within the SCO/package are presented.

    ATutor can create and export content packages, but does not create or export SCOs. You may want to search through the forums for info on Lectora. There are issues around it requiring use of frames for SCOs (a design flaw in Lectora). Since ATutor does not use frames, Lectora SCOs have been reported not to work. We generally recommend using Reload to author SCOs. You could also try eXe to author your SCOs. Both are free open source.

    http://www.reload.ac.uk/tools.html
    http://exelearning.org/

  • 2005-07-16 12:07:05

    More Scorm data needed

    I have loaded one of our Scorm 1.2 packages and it runs within the ATutor Scorm RTE. However I can't find answers to some questions I have.

    Perhaps there is a Reports/Query module that I have not yet spotted for reporting Uyser study times, sessions and results - if so, does it handle the Scorm tracking data ?

    Scores passed from our Flash tutorials appear to be stored in the AT_CMI table. But the rvalue column appears to be defined as a BLOB field. How do I get at the data in there ?

    Same problem for cmi.core.total_time. How do I get at the data values ?

    Or is there some undocumented feature of the Scorm pacakge runtime that reports these value within ATutor ?

  • 2005-07-16 14:08:50

    cmi data

    Hello,
    the current RTE just makes the cmi data persistent, that's all.
    There is no special tool built in to ATutor to display this data.

    The fields lvalue and rvalue in the cmi table contain the name
    and the value of the cmi elements as character strings.

    Regards,
    Matthai

  • 2005-07-18 04:51:07

    BLOB fields ?

    I assumed I would have to write some code to pull out the study time and scores.

    But the Mysql table AT_CMI defines the rvalue fields as binary, not as string. Is that correct ?

  • 2005-07-18 05:02:57

    Found the answer !

    I think there is a bug in the installation script. I changed the fiedl type in Mysql of rvalue (AT_CMI) table to TEXT and all the Scorm values are visible. The table had been created with a BINARY field type.

  • 2005-07-18 05:11:36

    storage of cmi element values

    I think that the rvalue field can be text, blob, varchar(?????) or anything that can store the longest alowed element value in the cmi data model. Just be aware that the values could be utf8 or so.

    I think blob is ok, I originally had defined it as text.