|
|
|
|
MultimediaControlVisible (Function) In french: MultimédiaContrôleVisible Returns or modifies the visibility of control buttons (Play, Pause, Fast Forward, ...) found in the Multimedia control.
IF MultimediaControlVisible(MM_Video) = False THEN MultimediaControlVisible(MM_Video) = True END
Syntax
Finding out the visibility status of control buttons Hide the details
<Result> = MultimediaControlVisible(<Multimedia control>)
<Result>: Boolean - True if the control buttons are currently displayed,
- False if the control buttons are currently hidden.
<Multimedia control>: Control name Name of Multimedia control to use.
Modifying the visibility status of control buttons Hide the details
<Result> = MultimediaControlVisible(<Multimedia control> , <Visible> [, <Timeout>])
<Result>: Boolean - True if the buttons were visible before the modification.
- False if the buttons were invisible before the modification.
<Multimedia control>: Control name Name of Multimedia control to use. <Visible>: Boolean - True to display the control buttons,
- False to hide the control buttons.
<Timeout>: Optional integer or optional Duration Idle time (in second) after which the control buttons will be automatically hidden. - If this timeout is set to 0, the control buttons will always be visible (or until they are manually hidden by the user).
- If this timeout is not specified, the idle duration will be set to 3 seconds.
This duration parameter can correspond to: - an integer corresponding to the number of seconds,
- a Duration variable,
- the duration in a readable format (e.g.,: '1 s').
Caution: This parameter is taken into account only if <Visible> is set to True. Remarks - The function has no effect if no control button is found in the Multimedia control (this option can be configured in the control description).
- The control buttons displayed in the control can be defined in the description of Multimedia control ("General" tab).
Component: wd280android.jar
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|