IMPORTANT NOTICE:

We have created an even easier way to add popups, animations and effects to your course experience. These new superpowers can be found inside of our Player Snips PowerUp: https://playersnips.superpowerups.com. It is recommended to use Player Snips for lesson popups instead of plaYEAH.

You are entitled to a FREE UPGRADE to Player Snips Premium ($99 Value)

GET PLAYER SNIPS PREMIUM FOR FREE

πŸš€Quick Win Guides

  • Watch Video (4 mins)

    Get to know PowerPop Editor & Create your first Pop🍾

    Watch this quick tour of how the PowerPop editor works and then you will add your first pop of 🎊confetti

  • Watch Video (3 mins)

    Making your PowerPops LIVE for your students to see

    The PowerPop editor is a great way to play around and get your pops looking the way you want. Then copy/paste to go live.

  • Watch Video (4 mins)

    Explore & Customize the Pre-Built Pops

    Learn how to use one of the pre-built pops based on various goals (encourage, remind, celebrate, gameify, sell, etc)

  • Watch Video (5 mins)

    Using Images and Animations to make your pops, Poppin!

    Learn how to add some fun into your pops with cute animations or GIF's. Look like a pro-designer in a few minutes with pre-built Canva animations

  • Watch Video (4 mins)

    Customizing colors, popup type, location and effects

    Learn how to position the popup in the location you want it to appear with your custom colors. Explore popup types and effects.

  • Watch Video (3 mins)

    Display Rules 101: Progress Based triggers

    In this walkthrough, we will add a second PowerPop that will remind your student how to get help when they are further along in the course

  • Watch Video (4 mins)

    Display Rules 201: Course & Lesson Specific Triggers

    Learn how to setup the display rules so your pop's are popping at the right time and for the specific course and lesson you want it to appear.

  • Watch Video (2 mins)

    Encouraging students to complete the course

    In this quick win guide, we use a pre-built PowerPop that is triggered at 80% progress completion encouraging your student to complete the course.

  • View More

    Want more Quick Wins?

    Learn how to build your own PowerPop, use gameficiation, using plaYEAH! to change the way your free trial => purchase works. It's all found in the Quick Wins library.

    Copy Code

    How to use plaYEAH! Course Embeds

    You will be using this page to configure your embed scripts and for which courses they will appear in. After configuring the behavior, you will be copying the code below to your Site Footer Code settings.

    • 1. Add block settings for each embed script you wish to execute
    • 2. Set the clock settings so either show for all courses or specific courses
    • 3. Depending on the embed code, you may need to manually extract out the .JS script that is being used so that it can properly run
    • 4. The click the copy code button and open the Site Footer Code settings in another tab
    • 5. Paste the code snippet into Site Footer Code and click save
    • 6. Reload a course and verify that it is working
    
               <!-- plaYEAH Embeds Start v1.0.5--> <style>.playeah-embeds{display:none} </style><textarea class="playeah-embeds" data-scripts="" data-type="course" data-courseid="2726434"> </textarea><script src="https://cdn.jsdelivr.net/gh/robgalvinco/[email protected]/js/playeah-embeds.js"></script><!-- plaYEAH Embeds End-->
          

    STEP 1: Add this code to Site Footer Code section on your Thinkific site.

    This will enable the course player to receive Javascript messages from your multimedia lesson/

    
    <!-- plaYEAH! Magic Multimedia Lesson --><script src="https://cdn.jsdelivr.net/gh/robgalvinco/[email protected]/playeah/event-manager.min.js"></script>
    
              

    STEP 2: Add this code to your HTML that you are importing into the Multimedia lesson

    You should place this code snippet in the <HEAD> section above other scripts.

    This will expose functions that can be called from your HTML/Javascript.

    
    <script>
       
            function hide_cc() {
                /* hide thinkific course player complete and continue button*/
                window.parent.postMessage('hide_complete', '*');
            }
            function show_cc() {
                /* show thinkific course player complete and continue button*/
                window.parent.postMessage('show_complete', '*');
            }
            function click_cc() {
                /* click thinkific course player complete and continue button*/
                window.parent.postMessage('click_complete', '*');
            }
            function click_ic() {
                /* click thinkific course player mark incomplete button*/
                window.parent.postMessage('click_incomplete', '*');
            }
            function hide_tcp() {
                /* hide thinkific course player sidenav */
                window.parent.postMessage('hide_tcp_chapters', '*');
            }
            function show_tcp() {
                /* shows thinkific course player sidenav */
                window.parent.postMessage('show_tcp_chapters', '*');
            }
            
        
    
    </script>
              

    STEP 3: Call the functions above when you want to trigger them

    This part you will need to figure out depending on the platform you are using. Essentially you will have to call the corresponding Javascript functions when you want to control things pm the course player

    Try a sample

    • πŸ’₯Download a sample ZIP file
    • πŸ’₯Create a multimedia lesson and import this zip file
    • πŸ’₯Click the buttons in the HTML lesson to see how the course player responds
    
    <html>
    <head>
        
        <script>
            function hide_cc() {
                /* hide thinkific course player complete and continue button*/
                window.parent.postMessage('hide_complete', '*');
            }
            function show_cc() {
                /* show thinkific course player complete and continue button*/
                window.parent.postMessage('show_complete', '*');
            }
            function click_cc() {
                /* click thinkific course player complete and continue button*/
                window.parent.postMessage('click_complete', '*');
            }
            function click_ic() {
                /* click thinkific course player mark incomplete button*/
                window.parent.postMessage('click_incomplete', '*');
            }
            function hide_tcp() {
                /* hide thinkific course player sidenav */
                window.parent.postMessage('hide_tcp_chapters', '*');
            }
            function show_tcp() {
                /* shows thinkific course player sidenav */
                window.parent.postMessage('show_tcp_chapters', '*');
            }
            
        </script>
    </head>
    <body>
        <h1> Multimedia Lesson Sample </h1>
        <p> Controlling the complete and continue button, great for SCORM/Captivate based lessons</body>
        <div><button onclick="hide_cc()">Hide Completed and continue button</button></div>
        <div></div><button onclick="show_cc()">Show Completed and continue button</button></div>
        <div></div><button onclick="click_cc()">Click Completed and continue button</button></div>
        <div></div><button onclick="click_ic()">Click Mark Incompleted button</button></div>
        <div></div><button onclick="hide_tcp()">Hide course player nav</button></div>
        <div></div><button onclick="show_tcp()">Show course player nav</button></div>
    </body>
    </html>
              

    IMPORTANT NOTICE:

    We have created an even easier way to add popups, animations and effects to your course experience. These new superpowers can be found inside of our Player Snips PowerUp: https://playersnips.superpowerups.com. It is recommended to use Player Snips for lesson popups instead of plaYEAH.

    You are entitled to a FREE UPGRADE to Player Snips Premium ($99 Value)

    GET PLAYER SNIPS PREMIUM FOR FREE

    πŸš€Quick Win Guides

    • Watch Video (4 mins)

      Get to know PowerPop Editor & Create your first Pop🍾

      Watch this quick tour of how the PowerPop editor works and then you will add your first pop of 🎊confetti

    • Watch Video (3 mins)

      Making your PowerPops LIVE for your students to see

      The PowerPop editor is a great way to play around and get your pops looking the way you want. Then copy/paste to go live.

    • Watch Video (4 mins)

      Explore & Customize the Pre-Built Pops

      Learn how to use one of the pre-built pops based on various goals (encourage, remind, celebrate, gameify, sell, etc)

    • Watch Video (5 mins)

      Using Images and Animations to make your pops, Poppin!

      Learn how to add some fun into your pops with cute animations or GIF's. Look like a pro-designer in a few minutes with pre-built Canva animations

    • Watch Video (4 mins)

      Customizing colors, popup type, location and effects

      Learn how to position the popup in the location you want it to appear with your custom colors. Explore popup types and effects.

    • Watch Video (3 mins)

      Display Rules 101: Progress Based triggers

      In this walkthrough, we will add a second PowerPop that will remind your student how to get help when they are further along in the course

    • Watch Video (4 mins)

      Display Rules 201: Course & Lesson Specific Triggers

      Learn how to setup the display rules so your pop's are popping at the right time and for the specific course and lesson you want it to appear.

    • Watch Video (2 mins)

      Encouraging students to complete the course

      In this quick win guide, we use a pre-built PowerPop that is triggered at 80% progress completion encouraging your student to complete the course.

    • View More

      Want more Quick Wins?

      Learn how to build your own PowerPop, use gameficiation, using plaYEAH! to change the way your free trial => purchase works. It's all found in the Quick Wins library.

      Copy Code
      Copy Code

      Your Site Name

      Lesson Two

      Content Area

      Heading 1

      Heading 2

      Heading 3

      Heading 4

      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.


      Bullet List

      • List item one
      • List item two
      • List item three

      Numbered List

      1. List item one
      2. List item two
      3. List item three