# Wierd double click issue with navigation

**URL:** https://forum.kirupa.com/t/wierd-double-click-issue-with-navigation/194960
**Category:** flash
**Created:** [July 27, 2006, 2:05pm UTC](https://forum.kirupa.com/t/wierd-double-click-issue-with-navigation/194960 "2006-07-27T14:05:33Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![jak675](https://avatars.discourse-cdn.com/v4/letter/j/6a8cbe/32.png) [@jak675](https://forum.kirupa.com/u/jak675)
#### Post date: [July 27, 2006, 2:05pm UTC](https://forum.kirupa.com/t/wierd-double-click-issue-with-navigation/194960/1 "2006-07-27T14:05:33Z")

</div>

Hello all,  
I built navigation for my site to include subnavigation for each high level category. Everything works fine, except when you click on a subnav category twice, it loads the very next section.

Has anyone ever run into this? If so, how did you correct it.

Here is the AS I am using to display the subnav.

```auto
onClipEvent (enterFrame) {
 if (this.hitTest(_root._xmouse, _root._ymouse) == true) {
  if (_currentframe == _totalframes) {
   stop();
  } else {
   play();
  }
 } else {
  if (_currentframe !== 1) {
   prevFrame();
  }
 }
}

```

Thanks for the assistance!!  
-J :crazy:
