# Set ActiveIndex in LinearNavigation

**URL:** https://forums.fusetools.com/t/set-activeindex-in-linearnavigation/2303
**Category:** How-to Discussions
**Created:** [August 27, 2016, 4:52pm UTC](https://forums.fusetools.com/t/set-activeindex-in-linearnavigation/2303 "2016-08-27T16:52:09Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Marc](https://avatars.discourse-cdn.com/v4/letter/m/8dc957/32.png) [@Marc](https://forums.fusetools.com/u/Marc)
#### Post date: [August 27, 2016, 4:52pm UTC](https://forums.fusetools.com/t/set-activeindex-in-linearnavigation/2303/1 "2016-08-27T16:52:09Z")

</div>

Hi,

Customizing the swipeGesture example ([https://www.fusetools.com/examples/swipe-gesture-reveal](https://www.fusetools.com/examples/swipe-gesture-reveal)) I cannot manage to set some offset to the linear navigation. I would like to make it start on the second item instead of the first one.  
Saw that LinearNavigation has an inherited ActiveIndex parameter. How can I set its value?

Tried this (+ other unsuccessful variations) so far:

```
<Panel>
	<LinearNavigation ux:Name="nav" ActiveIndex="2">
		<NavigationMotion GotoEasing="QuadraticOut" GotoDuration="0.3" ActiveIndex="3" />
	</LinearNavigation>

	<SwipeNavigate SwipeDirection="Left"/>

	<Each Count="10">
		<Card />	
	</Each>
</Panel>

```

Thanks for your help!
