| Package | com.google.analytics.external |
| Class | public class JavascriptProxy |
| Subclasses | AdSenseGlobals, HTMLDOM |
| Property | Defined by | ||
|---|---|---|---|
| hasProperty_js : XML [static]
The hasProperty Javascript injection.
| JavascriptProxy | ||
| setProperty_js : XML [static]
The setProperty Javascript injection.
| JavascriptProxy | ||
| setPropertyRef_js : XML [static]
The setPropertyReference Javascript injection.
| JavascriptProxy | ||
| Method | Defined by | ||
|---|---|---|---|
|
Creates a new JavascriptProxy instance.
| JavascriptProxy | ||
|
call(functionName:String, ... args):*
Call a Javascript injection block (String or XML) with parameters and return the result.
| JavascriptProxy | ||
|
executeBlock(data:String):void
Execute a Javascript injection block (String or XML) without any parameters and without return values.
| JavascriptProxy | ||
|
getProperty(name:String):*
Returns the value property defines with the passed-in name value.
| JavascriptProxy | ||
|
getPropertyString(name:String):String
Returns the String property defines with the passed-in name value.
| JavascriptProxy | ||
|
hasProperty(path:String):Boolean
Indicates if the specified path object exist.
| JavascriptProxy | ||
|
isAvailable():Boolean
Indicates if the javascript proxy is available.
| JavascriptProxy | ||
|
setProperty(path:String, value:*):void
Creates a JS property.
| JavascriptProxy | ||
|
setPropertyByReference(path:String, target:String):void
Creates a JS property by reference.
| JavascriptProxy | ||
| hasProperty_js | property |
public static var hasProperty_js:XMLThe hasProperty Javascript injection.
| setProperty_js | property |
public static var setProperty_js:XMLThe setProperty Javascript injection.
| setPropertyRef_js | property |
public static var setPropertyRef_js:XMLThe setPropertyReference Javascript injection.
| JavascriptProxy | () | constructor |
public function JavascriptProxy(debug:DebugConfiguration)Creates a new JavascriptProxy instance.
Parametersdebug:DebugConfiguration — The DebugConfiguration reference of this object.
|
| call | () | method |
public function call(functionName:String, ... args):*Call a Javascript injection block (String or XML) with parameters and return the result.
ParametersfunctionName:String |
|
... args |
* |
| executeBlock | () | method |
public function executeBlock(data:String):voidExecute a Javascript injection block (String or XML) without any parameters and without return values.
Parametersdata:String |
| getProperty | () | method |
public function getProperty(name:String):*Returns the value property defines with the passed-in name value.
Parametersname:String |
* — the value property defines with the passed-in name value.
|
| getPropertyString | () | method |
public function getPropertyString(name:String):StringReturns the String property defines with the passed-in name value.
Parametersname:String |
String — the String property defines with the passed-in name value.
|
| hasProperty | () | method |
public function hasProperty(path:String):BooleanIndicates if the specified path object exist.
Parameterspath:String |
Boolean |
| isAvailable | () | method |
public function isAvailable():BooleanIndicates if the javascript proxy is available.
ReturnsBoolean |
| setProperty | () | method |
public function setProperty(path:String, value:*):voidCreates a JS property.
Parameterspath:String |
|
value:* |
| setPropertyByReference | () | method |
public function setPropertyByReference(path:String, target:String):voidCreates a JS property by reference.
Parameterspath:String |
|
target:String |