Begin with H5P
Submitted by Killian_Marchand on Wed, 05/06/2020 - 13:35
Forums:
Hi everybody,
I would like to work with H5P, but I don't understand how to use xAPIEvent. Could you help me, please?
I work on Drupal 8 and Opigno 2.
H5P.externalDispatcher.on('xAPI', function (event) { console.log(event.data.statement); });
When I would use the last function, I have an error, on the statement .on whose is not define.
I get this function on the documentation page of H5P: https://h5p.org/documentation/x-api
Why do I want to use this?
I need to build a module that gets the score of H5P exercise. I find this function who is interesting for me.
H5P.externalDispatcher.on('xAPI', function(event){ if (event.getScore() === event.getMaxScore() && event.getMaxScore() > 0){ console.log('do something useful here'); } });
I think I have a problem with my initialization, I use the following code to init my H5P variable.
var H5P = window.H5P = window.H5P || {};
Thank's
Content types:
otacke
Thu, 05/07/2020 - 00:35
Permalink
Hi!Make sure that your script
Hi!
Make sure that your script is running in the right context. Your script will have to run inside the iframe, and the best way to ensure that is by using the alter scripts hook to add your script as described in the dev docs.
Best,
Oliver
Killian_Marchand
Thu, 05/07/2020 - 12:00
Permalink
Hi,Thank's for your answerI
Hi,
Thank's for your answer
I search in de Dev docs, but I don't find the alter script hook inside
But I see the HelloWord tutorial, to take my script I need to create a plugin for H5P/H5P library?
https://h5p.org/tutorial-greeting-card
otacke
Thu, 05/07/2020 - 17:10
Permalink
Hi!Just have a look at https:
Hi!
Just have a look at https://h5p.org/drupal-customization
Best,
Oliver
Killian_Marchand
Thu, 05/07/2020 - 13:38
Permalink
Hi,Thank's for your answerI
Hi,
Thank's for your answer
I search on dev documentation, and I find this https://h5p.org/creating-your-own-h5p-plugin
So, to get the result at the end of H5P Excercise, I need to create a plugin?
Else I don't find how to using the alter script hook, and verify to work inside the iFrame
otacke
Fri, 05/08/2020 - 10:06
Permalink
Hi Killian! Just have a look
Hi Killian!
Just have a look at https://h5p.org/drupal-customization.
Best,
Oliver
Killian_Marchand
Mon, 05/11/2020 - 08:26
Permalink
Thank's for your help, I
Thank's for your help, I succeed to take what I want ;)