Livecode Wiki
Advertisement

Returns the sound that is scheduled to play next (if any) on the given channel.Syntax:

mobileNextSoundOnChannel(<channel>)

Examples:

get mobileNextSoundOnChannel(theChannel)
put mobileNextSoundOnChannel("current") into tNextSound

Use the mobileNextSoundOnChannel function to find what sound (if any) is scheduled to play next on the current channel.

Parameters:

  • channel: The name of the channel.
  • Returns: The mobileNextSoundOnChannel function returns the name of the soundfile that is scheduled to play next on the given channel. If no sound isscheduled or the channel doesn't exit then empty is returned.

See also: mobilePlaySoundOnChannel (command),mobileSetSoundChannelVolume (command),mobilePausePlayingOnChannel (command),mobileStopPlayingOnChannel (command),mobileResumePlayingOnChannel (command),mobileSoundChannelVolume (function),mobileSoundOnChannel (function),mobileSoundChannels (function),mobileSoundChannelStatus (function),soundFinishedOnChannel (message),

Advertisement