# Button not working

**URL:** https://forums.fusetools.com/t/button-not-working/4514
**Category:** How-to Discussions
**Created:** [August 21, 2015, 2:42pm UTC](https://forums.fusetools.com/t/button-not-working/4514 "2015-08-21T14:42:38Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![joakim](https://avatars.discourse-cdn.com/v4/letter/j/dec6dc/32.png) [@joakim](https://forums.fusetools.com/u/joakim)
#### Post date: [August 21, 2015, 2:42pm UTC](https://forums.fusetools.com/t/button-not-working/4514/1 "2015-08-21T14:42:38Z")

</div>

What am i doing wrong here?

I have my button:

```auto
<Button ux:Name="skipBtn">
<Text Opacity=".9" Font="ProximaBold" >Skip</Text>
<Clicked>
<NavigateTo Target="StartScreen" />
</Clicked>
</Button>

```

And the page:

```auto
<Page ux:Name="StartScreen">
<LinearNavigation ux:Name="nav" Duration="0.50" Easing="CubicInOut" />
<Text TextColor="#fff">Starterino</Text>
<Panel Background="#000">
</Panel>
<EnteringAnimation>
    <Move X="-1" RelativeTo="Size" />
</EnteringAnimation>
<ExitingAnimation>
    <Move X="1" RelativeTo="Size" />
</ExitingAnimation>
</Page>

```

And here its the entire MainView.ux [http://schi.mp/bh](http://schi.mp/bh)

---

<div class="post-metadata">

### Author: ![Anders\_Lassen](https://yyz1.discourse-cdn.com/flex035/user_avatar/forums.fusetools.com/anders_lassen/32/522_2.png) [@Anders\_Lassen](https://forums.fusetools.com/u/Anders_Lassen)
#### Post date: [August 21, 2015, 2:48pm UTC](https://forums.fusetools.com/t/button-not-working/4514/2 "2015-08-21T14:48:30Z")

</div>

Hi!

Your button doesn’t have anything clickable, as you’ve disabled the basictheme’s background.

If you want to have clickable transparent buttons, you have to do something like:

```auto
<Button HitTestMode="LocalBounds" />

```
