# Change Self Opacity

**URL:** https://forums.fusetools.com/t/change-self-opacity/2759
**Category:** How-to Discussions
**Created:** [July 15, 2015, 3:00pm UTC](https://forums.fusetools.com/t/change-self-opacity/2759 "2015-07-15T15:00:28Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Cristian\_Karmy1](https://yyz1.discourse-cdn.com/flex035/user_avatar/forums.fusetools.com/cristian_karmy1/32/480_2.png) [@Cristian\_Karmy1](https://forums.fusetools.com/u/Cristian_Karmy1)
#### Post date: [July 15, 2015, 3:00pm UTC](https://forums.fusetools.com/t/change-self-opacity/2759/1 "2015-07-15T15:00:28Z")

</div>

Hi,

In my code I have a DirectNavigation and a EnteringAnimation and ExitingAnimation.

Like this:

```auto
<EnteringAnimation>
    <Move X="1" RelativeTo="Size" Duration="0.5" Easing="CircularInOut" />
</EnteringAnimation>

```

But how can I change the Opacity of the Pages in my DirectNavigation… Like Target=“Self.Opacity”?

Is posible to Change a Value without specify a ux:Name like a target?

---

<div class="post-metadata">

### Author: ![edA-qa\_mort-ora-y](https://yyz1.discourse-cdn.com/flex035/user_avatar/forums.fusetools.com/eda-qa_mort-ora-y/32/124_2.png) [@edA-qa\_mort-ora-y](https://forums.fusetools.com/u/edA-qa_mort-ora-y)
#### Post date: [July 15, 2015, 3:07pm UTC](https://forums.fusetools.com/t/change-self-opacity/2759/2 "2015-07-15T15:07:10Z")

</div>

You can specify names to the elements in your style.

```auto
<Style>
  <Page ux:Name="mySelf">
     <Change mySelf.Opacity="0" Duration="0.5"/>
  </Page>
</Style>

```

---

<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: [July 16, 2015, 9:30am UTC](https://forums.fusetools.com/t/change-self-opacity/2759/3 "2015-07-16T09:30:30Z")

</div>

Crisitian : You need to name things with `ux:Name` to use the `Change` and `Set` animators
