gnash
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash] global and root keywords in gnash


From: Meryl Silverburgh
Subject: [Gnash] global and root keywords in gnash
Date: Wed, 13 Jun 2007 11:46:56 -0500

Hi,

Can you please tell me if gnash support 'global', 'root' keywords ?
For example this action script:

_global.factorial = function (n) {
 if (n <= 1) {
   return 1;
 } else {
   return n * factorial(n-1);
 }
}

If yes, can you please point me to the code which handles it?
I looked at server/asobj/Global.cpp, I don't find it there.

Thank you.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]