*TimeScale()

Adjusts the animation running time for a single window.

Syntax

*TimeScale (Number)

Application

HyperView and MediaView

Inputs

Number
A value by which the total running time is multiplied.

Context

*BeginWindow()

Example

*BeginWindow(Animation)
    *IsActive()
    *TimeScale(2)
    *TimeDelay(0.2)
    *BeginGraphic()
        *LightInfo(0, 0, 1, 0.5, 0.5, 0.5, 64)
        *RotationAngle(15)
        *View(1, 0, 0, 0, 
              0, 1, 0, 0, 
              0, 0, 1, 0, 
              0, 0, 0, 1)
        *Tracking(Off)
    *EndGraphic()
*EndWindow()

Comments

The animation running time of a window can be scaled to match the running time of other windows on the page. The total animation time is multiplied by Number. Animation speed for the window is adjusted to fit the animation within the new running time.