Flash mail button
Flash mail button
- Started
- Last post
- 4 Responses
- armed_rob
I doing a flash mail button with subject and body text like this:
on (release) {
getURL("mailto:name@domain.com?s...
}the thing is I need to do some linebreaks... I tryed with +newline+ but an thought it was the solution... But it only works in the Flashplayer. If I test in a browser no breaks in the mail???
Anyone?
- rabattski0
hum. that shouldn't work. doesn't contain mailto.
anyways. linebreaks need to be url encoded.
here ya go:
define the linebreak
var br="%0D%0A";
button code:
on (release) {
getURL("mailto:test@test.org?sub...
}
- rabattski0
oops. that should be +br+ and not +br+br+
- armed_rob0
it works!!
Great
thanx
...
- armed_rob0
but it dosent work on me mac...
grrrr!