> For the complete documentation index, see [llms.txt](https://docs.zep.us/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.zep.us/zep-script/zep-script-guide/appendix/how-to-change-the-mobile-interaction-button.md).

# How to Change the Mobile Interaction Button

You can customize the mobile interaction button by using `App.loadSpriteSheet`.

> Note: The size of the mobile button image is 180 x 180 px.

```
// let button_image = App.loadSpritesheet("button_image.png");
let button;
App.onStart.Add(function () {
        // add button
        button = App.addMobileButton(8, 145, 75, function (player) {
        App.sayToAll(`${player.name}, has tapped the button.`)
	});
	
	button.image = button_image;
	button.sendUpdated();
});
```

<figure><img src="/files/cYdLJDpcO07zN8YnRZSy" alt=""><figcaption><p>Example of the Updated Mobile Button</p></figcaption></figure>
