C# Class Recurity.Swf.AVM1.ActionGetURL

Blitzableiter ActionGetURL represents the Adobe AVM1 ActionGetURL
Inheritance: AbstractAction
Show file Open project: rtezli/Blitzableiter

Protected Properties

Property Type Description
_URL string
_target string

Public Methods

Method Description
ActionGetURL ( ) : System

Instructs Flash Player to get the URL that UrlString specifies. The URL can be of any type, including an HTML file, an image or another Swf file. If the file is playing in a browser, the URL is displayed in the frame that TargetString specifies. The "_level0" and "_level1" special target names are used to load another Swf file into levels 0 and 1 respectively

ActionGetURL ( string URL, string target ) : System

instructs Flash Player to get the URL that UrlString specifies. The URL can be of any type, including an HTML file, an image or another Swf file. If the file is playing in a browser, the URL is displayed in the frame that TargetString specifies. The "_level0" and "_level1" special target names are used to load another Swf file into levels 0 and 1 respectively

ToString ( ) : string

Converts the action to a string

Protected Methods

Method Description
Parse ( System sourceStream, byte sourceVersion ) : void

Parses URL and target from the source stream

ParseFrom ( ) : bool

Parses the action from a string array

Render ( System outputStream ) : ulong

Renders URL and target back to the output stream

Method Details

ActionGetURL() public method

Instructs Flash Player to get the URL that UrlString specifies. The URL can be of any type, including an HTML file, an image or another Swf file. If the file is playing in a browser, the URL is displayed in the frame that TargetString specifies. The "_level0" and "_level1" special target names are used to load another Swf file into levels 0 and 1 respectively
public ActionGetURL ( ) : System
return System

ActionGetURL() public method

instructs Flash Player to get the URL that UrlString specifies. The URL can be of any type, including an HTML file, an image or another Swf file. If the file is playing in a browser, the URL is displayed in the frame that TargetString specifies. The "_level0" and "_level1" special target names are used to load another Swf file into levels 0 and 1 respectively
public ActionGetURL ( string URL, string target ) : System
URL string The URL
target string The target (_self,_blank,_parent,_top)
return System

Parse() protected method

Parses URL and target from the source stream
protected Parse ( System sourceStream, byte sourceVersion ) : void
sourceStream System The source stream
sourceVersion byte The version
return void

ParseFrom() protected method

Parses the action from a string array
protected ParseFrom ( ) : bool
return bool

Render() protected method

Renders URL and target back to the output stream
protected Render ( System outputStream ) : ulong
outputStream System The output stream
return ulong

ToString() public method

Converts the action to a string
public ToString ( ) : string
return string

Property Details

_URL protected property

The URL
protected string _URL
return string

_target protected property

The target
protected string _target
return string