mIRC Homepage
Posted By: danielboom sound mute off - 19/11/21 09:34 AM
alias selecsoun { set %iir $sfile(#,1) }
alias f3 { .echo -a 0,1Sound/Play Mute on | sound on }
alias f4 { .echo -a 0,1Sound/Play Mute off | sound off }

alias sonido {
sound %iir
}

how i do to mute the sound?
Posted By: TECO Re: sound mute off - 19/11/21 02:54 PM
Originally Posted by danielboom
alias selecsoun { set %iir $sfile(#,1) }
alias f3 { .echo -a 0,1Sound/Play Mute on | sound on }
alias f4 { .echo -a 0,1Sound/Play Mute off | sound off }

alias sonido {
sound %iir
}

how i do to mute the sound?


I don't know if you intend to silence all mIRC sounds, if so I hope it helped:
Code
alias f3 {
  if ($donotdisturb == $false) {
    .echo -a 0,1Sound/Play Mute on
    donotdisturb
  }
}
alias f4 {
  if ($donotdisturb == $true) {
    .echo -a 0,1Sound/Play Mute off
    donotdisturb
  }
}
Posted By: maroon Re: sound mute off - 20/11/21 01:35 AM
https://en.wikichip.org/wiki/mirc/commands/vol
Posted By: danielboom Re: sound mute off - 20/11/21 09:02 PM
i read twenty times
Posted By: danielboom Re: sound mute off - 20/11/21 09:03 PM
muito brigado
© mIRC Discussion Forums