Admin Blog

76 articles

SCORM Wrapper / SCORM Wrapper

I am Nishimura and I started to create QuizGenerator in 2011. I am not able to update it, but there was a time when I was a certified SCORM Assessor, so I kind of understand SCORM. QuizGenerator is useful, but it has its limitations. QuizGenerator is a SCORM-compliant e-learning tool that allows you to create a variety of exercises, tests, and quizzes without having to worry about SCORM, but it still has its limitations. If you are a strong web programmer, you can implement SCORM relatively easily by referring to the article "Let's make SCORM materials". However, if you are a web programmer, it is relatively easy to implement SCORM. However, if you can do web design, but not programming, or if you can program a little, but learning SCORM is too much of a hassle, it may be too much of a burden for you. For those people, we recommend the SCORM Wrapper. The SCORM Wrapper makes it easy to create SCORM-compliant teaching materials. I have never heard of SCORM Wrapper. You're probably right. The name of our development code, or rather the name of our internal system, is SCORM Wrapper, but there is no mention of it in the learningBOX or on the instruction page. The reason why it is not mentioned is that the name "SCORM Wrapper" is not easy to convey to customers for marketing reasons. From a developer's point of view, the SCORM Wrapper is a tool to wrap web forms and bring SCORM APIs to life, so it is nothing more than a SCORM Wrapper. However, since we are not proposing any use beyond the questionnaire at present, it has been spoiled as a questionnaire. In any case, the questionnaire material is a SCORM Wrapper, which means that it can be used to create more than a questionnaire. What is the SCORM Wrapper? The SCORM Wrapper is, simply put, a dream tool for making web forms SCORM-compliant. Schematically, the SCORM Wrapper analyzes the contents of a web form, finds the INPUT tags, SELECT tags, TEXTAREA tags, etc., and submits the results according to the SCORM standard. Elements that the SCORM Wrapper targets for submission The SCORM Wrapper does not actually need FORM tags, although we have mentioned that the SCORM Wrapper will send the value of any of the following HTML elements, both inside and outside of a FORM, for which the name attribute is specified. input[type=text]. input[type=number] input[type=password]. input[type=date] input[type=month input[type=month]. input[type=email]. input[type=hidden]. input[type=radio]. input[type=check]. textarea select Sending grades according to the name attribute Grades are sent according to the name attribute. For example, if there is a tag , the value entered there will be sent as q1. In practice, the value of the name attribute is setValue for cmi.interactions.n.id. Behavior when a special value is entered for name If you put a special value in name, it has a special meaning. Names ending in _result If you give a name ending in _result, it will be sent as the result of the field without the _result. For example, if there is a field named "answer1" and you have a response entered there, the field named "answer1_result" will be treated as a result for answer1. The result can be set to "correct", "strong", "unanticipated", "neutral", or "decimal", and corresponds to cmi.interactions.n.result as a SCORM element. __score__. A value representing the score. in SCORM 1.2, the rule is to specify an integer from 0-100, but learningBOX also accepts values greater than 100. Decimals are not allowed. __lesson_status__. Indicates pass/fail and progress. Please set the appropriate value from the following four values. If not set, completed will be sent. incomplete: learning is in progress completed: study completed (default value) passed: passed failed: failed __duration__. Represents the training time. If this element is not present, SCORMWrapper will send the measured value. If you think the time measured by SCORMWrapper is not accurate enough, pass the elapsed time in integer seconds to __duration__. SCORMWrapper's automatic measurement is taken from the moment the material is The time from the moment the material is loaded to the moment the grades are sent is measured. If you have a start button in the material and want to measure the exact time between pressing it and answering the last question, you can implement a time measurement function and record the exact value by putting the measurement result in __duration__. __suspend_data__. This element is used to save the values at the end of the training and reuse them the next time they are loaded. In a forthcoming update, all fields will be able to retain values across sessions, but the data storage feature of __suspend_data__ and the data storage feature implemented for all fields will be exclusive. However, it is expected that the data storage function of __suspend_data__ and the data storage function to be implemented in all fields will be exclusive. Submit Button The submit button should be . id="submit" is very important. SCORMWrapper will recognize buttons with this ID as submit buttons. Example of teaching material (1) -- 50 questions of SecuManagement I made questions for the Information Security Management Examination 2009. However, please don't take this too seriously, as it was written in dirty code using jQuery about two years ago. Even though it is a dirty code, it is easy to make a SCORM-compliant 4-choice question with such a simple code. Just put the choices in the q001~q050 radios, the right/wrong in the q001_result~q050_result hidden fields, the score in the __score__, the pass/fail in the __lesson_status__, and the rest is SCORM Wrapper will send the data according to the SCORM standard. The correct answer data is in lines 30 to 34, and the choices are in lines 15 to 18, but the number of items can be increased or decreased, and the choices can be changed to 1, 2, or 3. It should work fine if you increase or decrease the number of items, or change the choices to 1, 2, 3, etc. You may also create other subjects in this way and use them in your company! (If there are many requests, we will make it easy to create them within learningBOX! (Personally, I would like to make an improved version of this, so I would be happy to receive feedback on how I can easily create teaching materials similar to this) Code (available on Gist) Learning Screen The learning screen is as follows. Each radio button is assigned a name from q001 to q004, and the values a, b, c, and e are set to a, b, c, and e, respectively. When the submit button is pressed, the submit() function is called to perform the grading, and then the grades are sent. Result Display Screen The result display screen looks like the following. Pass/fail and score are passed using the __lesson_status__ and __score__ fields, respectively. The time required was sent automatically by SCORMWrapper. For each question, how it was answered and the correct or incorrect answer are also recorded. Example of use in learningBOX Three types of learningBOX materials, questionnaires, web pages, and bug-eating, are actually built on top of SCORMWrapper. Questionnaire This is the use that SCORMWrapper has been envisioned for from the beginning: With SCORMWrapper, you can easily create questionnaires. Certainly, it is easier than implementing SCORM yourself. But we couldn't easily get to the point where it was easy for everyone, so we developed the survey creation form as a function to create a web form. By the way, when you download the questionnaire you created within learningBOX, a ZIP file will fall out, which contains two files: form.html and config.json. The former is the survey form itself, and the latter is metadata representing the structure of the survey form. With the latter data, the downloaded questionnaire can be re-edited on learningBOX even after it has been re-uploaded. Conversely, if config.json is removed, learningBOX will not edit form.html. If you want to rewrite form.html to make it look better, we recommend uploading it without config.json. Web page Web page type materials are implemented on SCORMWrapper. SCORMWrapper functions are used for sending study time and lesson_status. Worm-eaten notebooks Worm-eaten notebooks are also implemented on top of SCORMWrapper. SCORMWrapper is used to send study_time and lesson_status. This is where Mr. M implemented the SCORMWrapper, but in writing this article, I checked the implementation for the first time. How to use the SCORM Wrapper Currently, LearningBOX does not have a teaching material item called SCORM Wrapper. If you have carefully read the text so far, you may have noticed that you can use the SCORM Wrapper by uploading it as a survey material. Click on the following link to open the ZIP file and upload the sg.html file as the survey material! Secumane's past survey materials: sg.zip Upload Location Summary I have written about the SCORM Wrapper and its potential is great. On the other hand, it cannot be said that the SCORM Wrapper has been fully utilized because we have not communicated enough about it or proposed enough applications for it. We hope that this article has given you a sense of what the SCORM Wrapper is and what it can be used for. To summarize in one line... SCORMWrapper is a system that allows you to create SCORM educational materials just by writing web forms.

About the video capacity of the Standard Plan

About the video capacity of the Standard Plan This is Kinoshita, CS introduction support staff. It's almost the long-awaited Obon vacation! Have you made your Obon vacation plans yet? There will be swimming, barbecues, firework festivals, and lots of other fun things! My plan for the Bon vacation is to study for a certain amount of time every morning for the Basic Information Technology Engineer exam. My plan for Obon is to study for a certain amount of time every morning for the Basic Information Technology Engineer exam. Let's keep moving forward every day toward our goals! This time's story This article is a summary of the questions we often receive from our customers about the capacity of the video materials in the Standard Plan. The advantage of video materials is that they can express content and nuances that words alone simply cannot convey. Our Standard Plan allows for a lot of video material! We recommend this plan to customers who are considering video learning as their main focus. However, there is one thing you need to be aware of. Video materials cannot be uploaded without limitation. So, how much video can I upload? Click here for Table of Contents 1. frequently asked questions: how many uploads can I upload? 2. frequently asked questions: What is the upload limit per upload? 3. what happens in such cases? When the size of your video exceeds 500 MB 4. summary FAQ: How many videos can I upload? The Standard Plan allows you to use 100GB of total capacity with a 100-account contract. For those who may not be familiar with the term "100GB," here is an explanation of the data capacity related to videos. In the case of Standard Plan Maximum upload limit of 500MB of video material 1GB = approx. 1000MB 100GB = approx. 100,000MB (overall) 100,000MB ÷ 500MB (upper limit per video) = 200 videos *If you are uploading video materials only, you can upload as many as 200 videos with a 100-account contract. (However, the overall capacity is cumulative, including the amount of grade data other than teaching materials.) FAQ: What is the upload limit per video? So, how many minutes of video can be uploaded with 500MB of video? As it turns out, we cannot answer how many minutes of video you can upload, as it depends on the video material! When judging the capacity of a video, it is not wrong to say that the playback time has an impact, but there is a number that has a bigger impact. The quality of the video, such as image and sound quality (bit rate), has a significant impact. (→ What is bitrate?) Simply put, a video with a high bit rate = a video with high image and sound quality → in other words, a video with a large capacity. *When uploading videos that may be large in size (corresponding to 500 MB or less), the original video must be divided and uploaded with a shorter playback time per video. But don't worry, there is a way to handle this! The following is an explanation of how to deal with this problem. What to do in such a case? When the size of the video exceeds 500 MB Some customers may ask, "What should I do if the maximum upload size per video exceeds 500 MB?" Some customers may have questions such as, "What should I do if some of my videos exceed the 500 MB upload limit per material? There are two solutions to this question. 1. consider microlearning (although the video materials may not be microlearning-ready in the first place) Microlearning is a style of learning in which students can easily learn materials with short learning time at a time using mobile devices. For example, let's break down volume teaching materials such as "Arithmetic" into categories such as "Addition," "Subtraction," "Multiplication," "Division," etc., or into chapters to create teaching materials. Given a video called "Arithmetic," a teaching material, we say that it should be broken down into smaller pieces such as "Addition," "Subtraction," "Multiplication," "Division," etc. (3 to 10 minutes), which have shorter learning time. In this way, the video capacity can be reduced. In addition, there are three advantages to microlearning. If you are interested, please refer to this article as well. Learning in Your Skim Time [Microlearning]. 2. video compression A video, even one or two hours long, can be reduced to 500 MB if properly compressed. Compression means adjusting the video to an appropriate quality, as excessive quality will unnecessarily increase the size of the video. Therefore, we have prepared a tool that allows anyone to easily compress videos. No special settings are required, and the tool can be downloaded and used immediately. Please click here for more details. The easiest way to pre-compress video materials Summary In this issue, we have briefly explained the number of videos that can be uploaded and the upload capacity limit for the Standard Plan. When using video materials, the quality of the video and the sound quality of the video will also have a significant impact on the capacity. Please be careful when uploading video materials. Thank you for taking the time to read this article.

Practice typing with e-learning training!

Typing Practice Now Available Through E-Learning Training! Long-sleeved cardigans are now a necessity instead of parasols. Hello! Nice to meet you, I am Kuroda from the Quality Control Department. This is my first article duty. The subject this time is "Feature Typing Materials"! Have you ever heard of "typing materials" that are included in the contents function of learningBOX? In addition to memorizing cards and creating questions, learningBOX also offers "typing materials" that allow you to practice typing as an e-learning training program. In this article, we will introduce how to create, use, and utilize "typing materials". Thank you very much for your understanding and cooperation. Table of Contents What are typing materials? 2. how to make typing materials Let's try typing text using typing materials 4. how to use it in your company 5. summary What are typing materials? Typing materials are learning contents that can be created from the content management function of learningBOX, which allows you to "input text using the keyboard. How to create typing materials Please log in to learningBOX and go to Content Management, Typing Materials ▷"Create Typing Materials". Enter the title, text, and reading style into the typing material creation form, and if there are no problems, click "Save and publish" in the upper right corner. When the form appears, follow the input boxes to set the "Text" (i.e., the question text) and "Yomikata" (i.e., the characters to be input). Hiragana, katakana, and numbers can be used for "Yomikata". Please note that Kanji, English, symbols ("", ", "), etc. cannot be used. Please note that you cannot use *For more information about the detailed settings of the typing materials, please refer to the page on how to use the typing materials. Let's try typing text using the typing materials! Good at typing! We have prepared typing materials created by our quality control. Take it to test your skills! Difficulty level The questions will be about 10 to 20 characters long. The test will be unexpected, so please be prepared for it! Passing score: 40 points How many characters can you type without typing mistakes? This is a difficult typing test that even our staff had a hard time passing! Please click on the PC monitor screen below and you will see the message "Please press the SPACE key when you are ready" and start from there! Let's typing! Please use the sample below on a PC. Not available for smartphones and tablets Thank you for your time. Now, how many points did you get for the above materials? Did you get a passing "Daruma-chan"? I created it, was it interesting? What I created was "interesting! I want to solve it again! I would be very happy if you think "It was fun! How to use within the company We distribute e-learning learning using typing materials within our company as a recreational activity. By designing courses in learningBOX, any learning material, not just typing materials, can be studied in a set order. I finally got my certificate! I worked hard every day and passed! Effectiveness and Expectations of Typing Materials I think there are many people who are not good at typing, although they don't say it out loud. They want to type quickly and accurately, but they tend to type while looking at the keyboard. They want to type quickly and accurately, but they tend to look at the keyboard while typing. I want to type quickly and accurately, but I always end up looking at the keyboard while typing.        I think everyone has his or her own problems. Advantages of improved typing Reduction in typing speed and spelling errors will reduce the amount of time spent on office work. Increased work efficiency You will be able to notice typing errors more quickly. You will be able to work with confidence as you become less computer illiterate. Typing is a seemingly simple task of "just typing on the keyboard. However, our brains accurately determine the meaning and content of words, and work in and out instantly. Keyboarding quickly and accurately based on the information processed is a more complex act than one might think. To perform this task efficiently, quickly, and accurately, daily repetitive practice is the fastest way to improve your typing. Conclusion What do you think of "typing materials" that allow you to practice typing as an e-learning training program? We hope you have been able to experience the fun of typing through hands-on experience. Although typing speed and accuracy cannot be dramatically improved in a day or two, acquiring the skill to type accurately will give you the skills you need in your company, such as improving the efficiency of your office work. Dear company training staff reading this article! If any of the following apply to you, please consider implementing learningBOX! There are too many misspellings and omissions in the text typed by employees. Recent new employees are good at using smartphones, but slow at typing on PCs. It takes time to check for errors in contract documents prepared by subordinates. Please try learningBOX for an e-learning typing practice tool that you can enjoy using your mind and body. Thank you for taking the time to read this article.
microlearning

Learning in Skilled Time [Microlearning].

Learning in a short time [Microlearning]. Hello! I'm Kinoshita, a CS staff member who has recently started to prefer fish to meat. The theme of our first commemorative post is "microlearning," a current trend in learning. Click here to see the table of contents. 1. what is microlearning? 2. three advantages of microlearning 3. summary What is microlearning? Microlearning is a style of learning in which students casually use mobile devices to study material that is short in duration per session. Learning time is generally completed in 3 to 10 minutes. Conventional learning involves a learning volume of 30 minutes to an hour or more, and is generally done at home on a PC using a fixed amount of time. In contrast, with Microlearning, you can study during your commute to and from work or school, or in your spare time between housework and part-time jobs. This learning style is suitable for modern people who are busy in their daily lives and do not have a lot of time to spare. By the way, YouTube, which I love, is also a microlearning site. There are many video contents that can be replayed in 5 to 15 minutes, and it is the best entertainment you can enjoy in your skimming time (laugh). Three advantages of microlearning Learning in your spare time Microlearning is a short learning material (3 to 10 minutes), which allows you to study in your spare time, such as during travel, breaks, or between classes. Compared to learning that requires a large amount of time to complete, microlearning is an easy and convenient way to learn. Combined with mobile devices (M-learning), the advantage is that time and location constraints are eliminated. Making Learning a Habit The short learning time for each material lowers the hurdle to continue learning, and it is expected that students will develop a habit of learning through continuous learning. Using our learning management system, learningBOX, students can divide each unit of study into shorter units, allowing them to repeat specific units that they are interested in or that they have difficulty with. In addition, when used in combination with the grade management function, it is possible to analyze the tendency of each learner's weak areas. Easy creation and updating of teaching materials It takes a great deal of effort to create teaching materials that are about an hour in length, but in comparison, it is easier to create short teaching materials that are about 10 minutes in length. Furthermore, short materials are easier to update. For example, rather than a volume of material such as "taxation," material broken down into "consumption tax" can be updated more quickly when tax rates are changed. 3. Summary Microlearning is a current learning method suitable for today's society. There are three reasons for this: "learning in one's spare time," "making learning a habit," and "easy creation and updating of teaching materials. With the arrival of 5G communication technology, microlearning using mobile devices is expected to advance even further in the future. If you feel that you are facing challenges in promoting employee training or distance learning, we recommend that you incorporate a microlearning system.
How can we help you?