AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Funciones WLanguage / Funciones estándar / Funciones de Windows / Funciones MCI
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
MCIPosition (Function)
In french: MCIPosition
Returns or changes the current position in a media file previously opened (MCIOpen).
Example
MCIOpen("Sound.wav", "MySound")
...
MCIPlay("MySound")
...
MCIPosition("MySound", 10)
...
MCIClose("MySound")
Syntax

Modifying the position in the file Hide the details

<Result> = MCIPosition(<Media file or alias> , <Position> [, <Parameters> [, <Name of the message window>]])
<Result>: Boolean
  • True if the position was set,
  • False otherwise. To get the error number, use MCIErr.
    To get more details on the error, use MCIMsgErr or ErrorInfo with the errMessage constant.
    The status report of the command is returned by MCIRetrieve.
<Media file or alias>: Character string
Name of the media file to be used (AVI, MP3, etc.) or alias defined when opening the file (MCIOpen).
<Position>: Character string
New position in the file. This position is expressed in the format specified by MCIPositionFormat.
<Parameters>: Optional character string
Additional parameters if necessary. These parameters can be known by checking the documentation of the Windows MCI function named "seek".
The MciWait constant can be added to this string. This constant is used to indicate that the program must wait for the end of the MCI command to run the rest of application.
<Name of the message window>: Optional character string
Name of the window used to intercept and manage the different messages sent by MMSYSTEM.DLL. These messages are in MM_xxxxxx format and can be retrieved with Event. You can for example get messages regarding the management of the CD ROM or Joystick.

Finding out the position in the file Hide the details

<Result> = MCIPosition(<Media file or alias> [, <Name of the message window>])
<Result>: Character string
Position in the file. This position is expressed in the format specified by MCIPositionFormat.
<Media file or alias>: Character string
Name of the media file to be closed (AVI, MP3, etc.) or alias defined when opening the file (MCIOpen).
<Name of the message window>: Optional character string
Name of the window used to intercept and manage the different messages sent by MMSYSTEM.DLL. These messages are in MM_xxxxxx format and can be retrieved with Event. You can for example get messages regarding the management of the CD ROM or Joystick.
Remarks
Once MCIPosition has been called, to make sure that the position has been set, it is recommended to use the following line of code:
WHILE MCIStatus(<File or Alias>) <> MciStatusStop
END
Component: wd290std.dll
See also
Versión mínima requerida
  • Versión 9
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 02/06/2022

Señalar un error o enviar una sugerencia | Ayuda local