ATutor

Learning Management Tools







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


Can I access specific functions from an outside AP


  • 2006-05-13 03:00:29

    Can I access specific functions from an outside AP

    I need your help to let me know if ATutor can met my needs. Our plan is to create a custom web application that will allow students to critically analyze a wide range of video and animation assets. We need a custom GUI and the specifications are pretty demanding so we plan to create it as a Flash application.
    At the same time, while in the midst of the application, we want students to be able to jump to specific pedagogical tools such as discussion forums, chat rooms, and quizzing.
    My question is this: Does ATutor allow me to jump to these specific functions and then return to the Flash application? Or on the other hand, are all of these functions available exclusively from with within ATutor? Is there a way to make this work?

  • 2006-05-13 09:26:40

    Re: Can I access specific functions from an outside AP?

    It would not be difficult to create a module to link your application into ATutor. See the module documentation.

    There are not tokens you can insert into your flash to create links to various tools, though it would not be too difficult. You can define a token in include/lib/output.inc.php myCodes function, then use those tokens as params in the HTML that embeds your flash into a page.

    Define tokens something like the following. In the case below the token "nid" represents the link to the next content page.
    [php]

    if (isset($sequence_links['next']) && $sequence_links['next']['url']) {
    $text = str_replace('[nid]', $sequence_links['next']['url'], $text);
    }

    [/php]