> ## Documentation Index
> Fetch the complete documentation index at: https://docs.usertour.io/llms.txt
> Use this file to discover all available pages before exploring further.

# showResourceCenterLauncher()

> Show the resource center launcher button

<Note>
  Requires `usertour.js` 0.0.20 or later.
</Note>

The `showResourceCenterLauncher()` method makes the resource center launcher button visible. This reverses a previous call to [`hideResourceCenterLauncher()`](/developers/usertourjs-reference/resource-center/hide-resource-center-launcher).

The launcher visibility is a global setting on the Usertour client: the call is remembered even if it is made before the resource center session is active, and it is applied as soon as a resource center activates.

## Parameters

None.

## Returns

`void`

## Example

```javascript theme={null}
// Re-show the launcher when the user leaves a distraction-free view
exitFocusMode(() => {
  usertour.showResourceCenterLauncher();
});
```

<Note>
  This only controls the launcher button. The resource center panel itself can still be opened programmatically with [`openResourceCenter()`](/developers/usertourjs-reference/resource-center/open-resource-center) while the launcher is hidden.
</Note>
