Categories

How to remove a link and a hand cursor

Template-help.com Team Ноябрь 15, 2010
No votes yet.
Please wait...

In this tutorial you will learn the way to remove link, hand cursor, and rollover effects from image:

1) Locate pages symbol and the page itself

2) Select image you need to remove actions and press F9, you should see similar code:

onClipEvent (load) {
  this.hitArea = this.area
  num = 1;
  }
  on (rollOver) {
  this.gotoAndPlay("s1");
  }
  on (rollOut, releaseOutside ) {
  this.gotoAndPlay("s2");
}

3) Add the following script in onClipEvent section — this.useHandCursor = false; It shoulf look in the following way:

  onClipEvent (load) {
  this.hitArea = this.area
  num = 1;
  this.useHandCursor = false;
  }
  on (rollOver) {
  this.gotoAndPlay("s1");
  }
  on (rollOut, releaseOutside ) {
  this.gotoAndPlay("s2");
}

This line will remove hand cursor.

4) If you need to remove rollOver, rollOut and link you should remove proper lines, for example: For rollover and rollout these lines:

  on (rollOver) {
  this.gotoAndPlay("s1");
  }
  on (rollOut, releaseOutside ) {
  this.gotoAndPlay("s2");
  }

And similar line for link:

  on (release) {
  }

 

Feel free to check the detailed video tutorial below:

How to remove a link and a hand cursor
Эта запись была размещена в Работа с XML Flash, Туториалы по XML Flash шаблону, XML Flash шаблоны и помечена как cursor, flash, hover, rollover. Добавьте в закладки постоянную ссылку.

Submit a ticket

Если вы не смогли найти подходящее решение проблемы, пожалуйста воспользуйтесь следующей ссылкой, чтобы отправить запрос команде технической поддержки.
Отправить запросВы получите ответ в течение 24 часов