# Open browser from projector

**URL:** https://forum.kirupa.com/t/open-browser-from-projector/19468
**Category:** flash
**Created:** [April 28, 2003, 3:25pm UTC](https://forum.kirupa.com/t/open-browser-from-projector/19468 "2003-04-28T15:25:35Z")
**Posts on this page:** 8
**Page:** 1

<div class="post-metadata">

### Author: ![KazchiX](https://avatars.discourse-cdn.com/v4/letter/k/3e96dc/32.png) [@KazchiX](https://forum.kirupa.com/u/KazchiX)
#### Post date: [April 28, 2003, 3:25pm UTC](https://forum.kirupa.com/t/open-browser-from-projector/19468/1 "2003-04-28T15:25:35Z")

</div>

Hi all,

Is there a way to open browser or mail client from projector file? I have text area and there I put url and mail address. When clients click on them, I want a browser or mail client start up just like website does. Thanks.

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [April 28, 2003, 3:41pm UTC](https://forum.kirupa.com/t/open-browser-from-projector/19468/2 "2003-04-28T15:41:07Z")

</div>

Hi,  
By projector do you mean CD rom ?  
If so the code to open an email client is  
[AS]  
on(release){   
getURL ("mailto:emailaddy@domain.com?subject=demo");  
}[/AS]  
this will open the email, but a distant memory tells me there are some issues doing from a projector, best idea is to test and see if it works first.

Cheers  
SteveD

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [April 28, 2003, 3:41pm UTC](https://forum.kirupa.com/t/open-browser-from-projector/19468/3 "2003-04-28T15:41:48Z")

</div>

hi,

to open the browser & go to a website the code would be something like this

on (release) {  
getURL(“[http://www.yoursite.htm](http://www.yoursite.htm)”, “\_blank”);  
}

for the mail client it would be

on (release) {  
getURL("mailto:me@there.com?subject=type what you want here and it will display in the email header");  
}

hope this helps

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [April 28, 2003, 4:38pm UTC](https://forum.kirupa.com/t/open-browser-from-projector/19468/4 "2003-04-28T16:38:36Z")

</div>

Thanks you guys,

I’ll put them on the file, burn it and tell you what Ive got.

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [April 28, 2003, 4:55pm UTC](https://forum.kirupa.com/t/open-browser-from-projector/19468/5 "2003-04-28T16:55:00Z")

</div>

is there a way to embed those code onto static text?

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [April 28, 2003, 5:00pm UTC](https://forum.kirupa.com/t/open-browser-from-projector/19468/6 "2003-04-28T17:00:10Z")

</div>

Not sure what you mean by this:

> is there a way to embed those code onto static text?

do you mean that you want to display the [emailaddy@domain.com](mailto:emailaddy@domain.com)  
or …?

SteveD

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [April 28, 2003, 5:27pm UTC](https://forum.kirupa.com/t/open-browser-from-projector/19468/7 "2003-04-28T17:27:00Z")

</div>

ok I got it.  
I made a transparent button behind the static text.

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [April 28, 2003, 6:15pm UTC](https://forum.kirupa.com/t/open-browser-from-projector/19468/8 "2003-04-28T18:15:33Z")

</div>

you can also make a link by highlighting the text you want, and then using the URL link in the properties section. using the hull http:// adress, or [mailto:xxx@xxx.co.uk](mailto:xxx@xxx.co.uk) etc
