______how to make flash buttons to play .exe ?____

By means a flash button I try to control a .exe file as action bellow :

on (release) {
fscommand (“fscommand(“EXEC”, “thiago.exe”);”);
}

It has not worked.
(using flash five)

Can someone tell me what´s wrong ?
Thanks

I have used this:

on a button…

on (release) {
fscommand (“exec”, “test.exe”);
}

so, try taking out the 's, and the extra fscommand.

Hope this works,

Rev:elderly: