Welcome to the WalkMe Help Center

Please login in order to continue:

Work flows better with WalkMe
Work flows better with WalkMe.

Building Advanced Launchers

Last Updated October 5, 2025

Brief Overview

Become an expert DAP builder and meet the building requirements that you desire. The following article explains how to accomplish the top three most requested Launcher building options.

Create a Blinking Launcher

  1. Click "Customize"
  2. Click on the "CSS" tab
  3. Paste the following text into the bottom of your CSS panel and replace the x's with the ID of your Launcher.  You can find this by hovering over the 3 vertical dots next to your Launcher and clicking on "copy ID"
    .walkme-launcher-id-xxxxxx .walkme-launcher-image-div {
         animation: scale-pulse 1.75s cubic-bezier(.39,.58,.38,.75) normal infinite forwards;
    }
    
    @keyframes scale-pulse {
      from {
        transform: scale(1.0);
                opacity: 1;
         }
      to {
        transform: scale(1.5);
            opacity: 1;
        }
    }

Create a Constant Balloon

A balloon will stay on screen while the Walk-Thru continues.

Use case: You want a general balloon to stay on screen while the user fills up a form.

  1. Create a balloon with the text and design that you want.
  2. Turn the balloon into an image (Print screen-Paste in paint and edit - Save-Upload to S3).
  3. Add the image as a Launcher. And locate it where you would have located the balloon.
  4. Create a WM-Data where you want the balloon to appear on the Walk-Thru.
  5. Add the same WM-Data that overrides the previous where you want the balloon to disappear.
  6. Segment the 'Balloon Launcher' to appear only when the WM-Data exists.
  7. Make the Launcher to check segmentations (segmentations frequency).

Rotate/Skew a Launcher

To make your Launcher appear at an angle, use the Global CSS.

  1. Inspect your Launcher and copy its credentials: walkme-launcher-id-xxxxxxx
  2. In the Editor, open Settings -> Edit global CSS
  3. In the CSS tab, use the following syntax:
    .walkme-launcher-id-xxxxxxx {
    
    transform: skew(Xdeg) !important;
    
    }
    Example:
    .walkme-launcher-id-123456 {
    
    tranform: skewX(10deg) !important;
    
    }
  4. Find more syntax examples for both the skew() and rotate() 'transform' properties in the following articles:
    skew()
    rotate()

Update Custom Launcher's Design

Use case: You want to update a few custom Launchers at once instead of opening each one separately in order to save time.

  1. Create a test Launcher on a random element on the page.
  2. Click to change the Launcher.
  3. Once you are in the selection menu of all your custom Launchers, you can update them one after the other without saving the current Launcher you are working on.
  4. After you updated all Launchers, you can simply cancel the test Launcher you were working on - all changes will be saved to your custom Launchers.

Hide the Hand Icon from Blocking Invisible Launcher

Turn Off the Widget and Use a Launcher Instead

  1. Turn off the Widget by going to Customize > Customize Player > Widget and set the display to None: 
  2. Next, you'll want to make a Launcher to open the Menu. To do this, you can open the Launcher app in the Editor and attach the Launcher to where you want it to appear in your application.
  3. Additionally, you can choose what you want your Menu Launchers by going to Launcher Options -> Interaction -> Change Launcher. From here you can choose from the default Launcher images, upload your own image, or create a Launcher image within the Editor.
  4. Lastly, in the Interaction tab, be sure to configure the action to Open Menu. You can also choose which tab you want to be visible when your users first open the Menu:

Turn a Launcher Into an Image

Add the following CSS to your Global CSS in the Editor:

.walkme-launcher-id-xxxxx {

background-image: url(url.png) !important;

padding-top: 24px;

padding-right: 2px;

padding-bottom: 18px;

padding-left: 1px;

}

See the image below for an example.

Make sure to replace the URL with the image of your choice and the xxx's with your Launcher ID.  Follow these steps to find the Launcher's unique ID:

  1. Hover over the 3 vertical dots to the right of the Launcher 
  2. Click “Copy ID” from the dropdown.

Hide elements on your site with Launchers

Create a 3D Effect Launcher

Adding Animations and Special Effects to Launchers

For more tips, check out the Launchers Tip Tuesday videos.

Was this article helpful?

Thanks for your feedback!

Be part of something bigger.

Engage with peers, ask questions, share ideas

Ask the Community
×