I am using the following code on a button in a Projector file:

on(release)
{
fscommand("fas.shell.open","mailto:address@site.co m")
}

but nothing happens when I click the button.

I know that you would use:

on(release)
{
getURL("mailto:address@site.com");
}

in a Flash movie embedded in HTML, but that does not work on a Projector file.

Can anyone please advise?