User Guide

31
fscommand() Action; allows the Flash movie to communicate with the
program hosting Flash Lite.
Not supported
ge (string greater than
or equal)
Comparison operator; returns true if the string
representation for expression1 is greater than or equal to
the string representation for expression2; otherwise,
returns false. This action is string specific.
The following examples illustrate true and false results for
the ge operator:
x =”Amy”;
y=”Fred”;
x ge y;
// false
x ge “Amy”;
// true
y ge x;
// true
Fully supported
getProperty() Function; returns the value of the specified property for
the movie clip instance.
Partially
supported. Not all
properties are
supported - see
Appendix B,
“Supported
Properties,”
on page 37.
getTimer() Function; returns the number of milliseconds that have
elapsed since the movie started playing.
Fully supported
getURL() Action; loads a document from a specific URL into a
window or passes variables to another application at a
defined URL. When sending variables, specify whether
to load variables using a GET or POST method. GET
appends the variables to the end of the URL, and is used
for small numbers of variables. POST sends the variables
in a separate HTTP header and is used for long strings of
variables.
Partially
supported. The
URL protocols
http, https, mailto,
and tel are
supported, once
per event action.
gotoAndPlay() Action; sends the playhead to the specified frame in a
scene and plays from that frame. If a scene is not
specified, the playhead goes to the specified frame in the
current scene.
Fully supported
gotoAndStop() Action; sends the playhead to the specified frame in a
scene and stops it. If no scene is specified, the playhead
is sent to the frame in the current scene.
Fully supported
gt (string greater than) Comparison operator; returns true if the string
representation for expression1 is greater than the string
representation for expression2; otherwise, returns false.
This action is string specific.
Fully supported
Action Name Description Support