# Applying Action Script To Words In Text Field

**URL:** https://forum.kirupa.com/t/applying-action-script-to-words-in-text-field/118571
**Category:** Uncategorized
**Created:** [August 6, 2004, 7:34pm UTC](https://forum.kirupa.com/t/applying-action-script-to-words-in-text-field/118571 "2004-08-06T19:34:07Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![jasonrit](https://avatars.discourse-cdn.com/v4/letter/j/7cd45c/32.png) [@jasonrit](https://forum.kirupa.com/u/jasonrit)
#### Post date: [August 6, 2004, 7:34pm UTC](https://forum.kirupa.com/t/applying-action-script-to-words-in-text-field/118571/1 "2004-08-06T19:34:07Z")

</div>

I am trying to put a link in a dynamic text field (not all the text, just 2 words) that makes the flash movie the field is in advance to another frame. Can this be done?

Please Help!

---

<div class="post-metadata">

### Author: ![arcaRox](https://avatars.discourse-cdn.com/v4/letter/a/7c8e57/32.png) [@arcaRox](https://forum.kirupa.com/u/arcaRox)
#### Post date: [August 7, 2004, 2:25pm UTC](https://forum.kirupa.com/t/applying-action-script-to-words-in-text-field/118571/2 "2004-08-07T14:25:40Z")

</div>

Use the asfunction in the link to link to the frame label to jump to.

```auto

txtHtml.htmlText = "<a href='asfunction:gotoAndStop,myFrameLabel'>click here</a>";

```

Where, **myFrameLabel** is the label you wish to jump to.
