[ r0dfx @ 20.11.2003. 12:27 ] @
myButton.onRelease = function ("mailto:[email protected]")
{
trace ("mailto:[email protected]");
};

Hvala unapred r0dfx
[ noviKorisnik @ 20.11.2003. 12:34 ] @
Izbaci "parametar" funkcije:

myButton.onRelease = function ()
{
trace ("mailto:[email protected]");
};
[ r0dfx @ 20.11.2003. 12:37 ] @
Symbol=vratcontact, Layer=Layer 10, Frame=1: Line 1: Statement must appear within on handler
myButton.onRelease = function ()

Ovo mi se desava ka dto uradim!
[ noviKorisnik @ 20.11.2003. 13:19 ] @
probaj da akcije za dugme definišeš nad samim instancom dugmeta umesto u nekom frejmu. Selektuješ dugme i uneseš sledeće:

on (release)
{
trace ("whatever");
}