How to hide or remove the top and bottom bar of SCORM player in Moodle Mobile App?

How to hide or remove the top and bottom bar of SCORM player in Moodle Mobile App?

by Sarath P -
Number of replies: 10

Hello everyone.

Is there any way to remove or hide the top and bottom bar of the SCORM player in the MoodleMobile App(Phonegap build)? Also, Is it possible to make the player in full-screen mode in Mobile App

Please find the screenshot below



Average of ratings: -
In reply to Sarath P

Re: How to hide or remove the top and bottom bar of SCORM player in Moodle Mobile App?

by Sarath P -
Suggestions, please...
In reply to Sarath P

Re: How to hide or remove the top and bottom bar of SCORM player in Moodle Mobile App?

by Sarath P -
Can anyone please tell suggest a solution?
In reply to Sarath P

Re: How to hide or remove the top and bottom bar of SCORM player in Moodle Mobile App?

by Sarath P -
Is it possible to hide the top and bottom bar by removing or commenting on any lines of code?
In reply to Sarath P

This forum post has been removed

The content of this forum post has been removed and can no longer be accessed.
In reply to Deleted user

Re: Ri: How to hide or remove the top and bottom bar of SCORM player in Moodle Mobile App?

by Sarath P -
Hi Daniel. No... Not yet.
In reply to Sarath P

Re: How to hide or remove the top and bottom bar of SCORM player in Moodle Mobile App?

by Vikas Jadhavar -

Hi Sarath,

I have worked on this solutions. And it supports full-screen mode.

I could help you with that if needed, Please let me know.

  

In reply to Vikas Jadhavar

Re: How to hide or remove the top and bottom bar of SCORM player in Moodle Mobile App?

by Vinod Singh -
Hi Vikas,

Does your solution works for H5P presentations inside non- SCORM courses?

Regards,
Vinod
In reply to Vikas Jadhavar

Re: How to hide or remove the top and bottom bar of SCORM player in Moodle Mobile App?

by NOU Sotheany -

Dear Vikas,

I have the same problem could you share your solution?

In reply to NOU Sotheany

Re: How to hide or remove the top and bottom bar of SCORM player in Moodle Mobile App?

by Sreenu Vasulu -

For bottom navbar 

In scorm.ts
there was a if condition search for the below line

if (this.scorm.popup) {

---- blah blah

---- blah blah

}

we need to write a else part for the above if condition

else{

     this.tabs.changeVisibility(false);

}

This works for me.
Let me know if it doesn't work.

In reply to Vikas Jadhavar

Re: How to hide or remove the top and bottom bar of SCORM player in Moodle Mobile App?

by Gulshan Kumar Verma -

Hi Vikas,


Please help me to solve this.