fixed a security bug in logging, added basic xml support to as3 compiler
[swftools.git] / lib / as3 / ok / namespaces2.as
index 337116d..6a065bd 100644 (file)
@@ -5,11 +5,11 @@ package {
        
        use namespace flash_proxy;
        
-       /**
-        * This class acts as the public interface for both the flash api and the javascript api
-        * It is a proxy class that wraps ApiInternal. It provides a method interface, as well as
-        * exposing an event interface to flash. 
-        */
+       dynamic public class OverrideProxy extends Proxy {
+            flash_proxy override function callProperty($name:*, ...$args:Array):* {
+                    return none;
+            }
+        }
        dynamic public class Main extends flash.display.MovieClip {
                
            flash_proxy function tf(x:int):*
@@ -18,10 +18,12 @@ package {
                return null;
            }
 
+
             public function Main()
             {
                 this.tf(1);
                 tf(2);
+                trace("[exit]");
             }
            
        }