Skip to content

Instantly share code, notes, and snippets.

@amowu
Created April 10, 2013 06:48
Show Gist options
  • Select an option

  • Save amowu/5352362 to your computer and use it in GitHub Desktop.

Select an option

Save amowu/5352362 to your computer and use it in GitHub Desktop.
Pause sound.
private var pausePosition:Number = 0;
public function pause():void
{
pausePosition = soundChannel.position;
}
public function resume():void
{
soundChannel = sound.play(pausePosition);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment