# Can I turn my animations into URL's

**URL:** https://forum.kirupa.com/t/can-i-turn-my-animations-into-urls/119227
**Category:** Uncategorized
**Created:** [August 12, 2004, 4:54pm UTC](https://forum.kirupa.com/t/can-i-turn-my-animations-into-urls/119227 "2004-08-12T16:54:35Z")
**Posts on this page:** 9
**Page:** 1

<div class="post-metadata">

### Author: ![spxy](https://avatars.discourse-cdn.com/v4/letter/s/50afbb/32.png) [@spxy](https://forum.kirupa.com/u/spxy)
#### Post date: [August 12, 2004, 4:54pm UTC](https://forum.kirupa.com/t/can-i-turn-my-animations-into-urls/119227/1 "2004-08-12T16:54:35Z")

</div>

Hi there.Learnt a lot from this site already.I’m using Flash MX on a MAC and am building my first web site.I have some character animations that happen when the mouse is over them with the use of buttons and movies, but I would like to to play one frame of animation and then link to another page when the button is pressed.  
I’ve tried the method of making URL’s in flash on this site and it only woks on non animated buttons.  
Anyone help?

---

<div class="post-metadata">

### Author: ![Algreco](https://avatars.discourse-cdn.com/v4/letter/a/6de8d8/32.png) [@Algreco](https://forum.kirupa.com/u/Algreco)
#### Post date: [August 12, 2004, 5:55pm UTC](https://forum.kirupa.com/t/can-i-turn-my-animations-into-urls/119227/2 "2004-08-12T17:55:54Z")

</div>

I understood NOTHING of what you wrote.  
what do u mean make a URL in flash? you don’t make URLs in flash  
please give an example and maybe we could help you out

---

<div class="post-metadata">

### Author: ![wizard](https://avatars.discourse-cdn.com/v4/letter/w/a87d85/32.png) [@wizard](https://forum.kirupa.com/u/wizard)
#### Post date: [August 12, 2004, 5:59pm UTC](https://forum.kirupa.com/t/can-i-turn-my-animations-into-urls/119227/3 "2004-08-12T17:59:49Z")

</div>

[AS]on (rollOver) {  
//Incorporate your script.  
blahblahblah;  
}  
on (press) {  
getURL(“[http://www.siteName.com](http://www.siteName.com)”,"\_self");  
}[/AS]Is this what you’re talking about?

---

<div class="post-metadata">

### Author: ![spxy](https://avatars.discourse-cdn.com/v4/letter/s/50afbb/32.png) [@spxy](https://forum.kirupa.com/u/spxy)
#### Post date: [August 12, 2004, 9:04pm UTC](https://forum.kirupa.com/t/can-i-turn-my-animations-into-urls/119227/4 "2004-08-12T21:04:44Z")

</div>

Sorry for the confusion, I’m not very familiar with all the correct terms.I mean make links from my animations.I can do this from a static button but not one with anythiung else .  
Wizard does that action script mean on rollover it will link to a web site?

---

<div class="post-metadata">

### Author: ![spxy](https://avatars.discourse-cdn.com/v4/letter/s/50afbb/32.png) [@spxy](https://forum.kirupa.com/u/spxy)
#### Post date: [August 12, 2004, 9:11pm UTC](https://forum.kirupa.com/t/can-i-turn-my-animations-into-urls/119227/5 "2004-08-12T21:11:56Z")

</div>

Wizard what does this bit mean thanks  
"//Incorporate your script.  
blahblahblah;"

---

<div class="post-metadata">

### Author: ![Jeff\_Wheeler](https://avatars.discourse-cdn.com/v4/letter/j/59ef9b/32.png) [@Jeff\_Wheeler](https://forum.kirupa.com/u/Jeff_Wheeler)
#### Post date: [August 12, 2004, 9:21pm UTC](https://forum.kirupa.com/t/can-i-turn-my-animations-into-urls/119227/6 "2004-08-12T21:21:57Z")

</div>

use geturl inside the clipevent for release ;)…

just put this on your animation:  
[AS]on (press) {  
getURL(“[http://www.siteName.com](http://www.siteName.com)”,"\_self");  
}[/AS]

---

<div class="post-metadata">

### Author: ![wizard](https://avatars.discourse-cdn.com/v4/letter/w/a87d85/32.png) [@wizard](https://forum.kirupa.com/u/wizard)
#### Post date: [August 12, 2004, 9:23pm UTC](https://forum.kirupa.com/t/can-i-turn-my-animations-into-urls/119227/7 "2004-08-12T21:23:55Z")

</div>

> [@spxy](#):
>
> Wizard what does this bit mean thanks  
> “//Incorporate your script.  
> blahblahblah;”

In your first post you said that you had some (character) animations that happened on the roll over. I don’t know what script you’re using for that, which is why I put blablahblah.

In the script I gave you, it will link to a website on the release of a button, the same button that you used for your character animation.

It’s kinda hard to imagine how you have it set up so I was just going by what you told us.

---

<div class="post-metadata">

### Author: ![spxy](https://avatars.discourse-cdn.com/v4/letter/s/50afbb/32.png) [@spxy](https://forum.kirupa.com/u/spxy)
#### Post date: [August 12, 2004, 9:30pm UTC](https://forum.kirupa.com/t/can-i-turn-my-animations-into-urls/119227/8 "2004-08-12T21:30:42Z")

</div>

Wizard that script worked fine ,I put play in stead of blahblah  
So if I understand it right I,m telling the animation to play if the mouse moves over and then link to a web site when the button is pressed.

Thanks for everyones help.

---

<div class="post-metadata">

### Author: ![wizard](https://avatars.discourse-cdn.com/v4/letter/w/a87d85/32.png) [@wizard](https://forum.kirupa.com/u/wizard)
#### Post date: [August 12, 2004, 9:37pm UTC](https://forum.kirupa.com/t/can-i-turn-my-animations-into-urls/119227/9 "2004-08-12T21:37:55Z")

</div>

Yeah I don’t think blahblahblah would’ve worked. :lol:

And yes, you do understand it correctly.
