Recurity.Swf.AVM1.ActionTargetPath.ActionTargetPath C# (CSharp) Method

ActionTargetPath() public method

If the object in the stack is of type MovieClip, the object’s target path is pushed on the stack in dot notation. If the object is not a MovieClip, the result is undefined rather than the movie clip target path.
public ActionTargetPath ( ) : System
return System
        public ActionTargetPath()
        {
            _StackOps = new StackChange[ 2 ];
            _StackOps[ 0 ] = new StackPop( AVM1DataTypes.AVM_Object ); // must be movie-clip
            _StackOps[ 1 ] = new StackPush( AVM1DataTypes.AVM_String ); // target path
        }
ActionTargetPath