fps property

double fps

The frames per second of the movie clip.

Implementation

double get fps {
  return 1 / speed;
}
void fps=(double value)

Sets the frames per second of the movie clip.

Implementation

set fps(double value) {
  speed = 1 / value;
}