mIRC Home    About    Download    Register    News    Help

Print Thread
#33699 03/07/03 02:00 AM
Joined: Apr 2003
Posts: 300
A
andymps Offline OP
Fjord artisan
OP Offline
Fjord artisan
A
Joined: Apr 2003
Posts: 300
Is it possible to get it to return the current staus of an mp3, such as playing or paused


Liek OMG Yuo Stoleded my MageHurtzzzz!!!11
#33700 03/07/03 02:09 AM
Joined: Dec 2002
Posts: 1,922
O
Hoopy frood
Offline
Hoopy frood
O
Joined: Dec 2002
Posts: 1,922
Use this alias,
Code:
alias paused {
  var %p = $insong.pos, %t = $ticks
  while %t == $ticks { }
  if %p == $insong.pos { return 1 }
}

$paused will return 1 if a song is paused or not being played.

A suggestion for an (internal) $insong.paused feature has been brought up and hopefully will be included in the next version.

#33701 03/07/03 02:12 AM
Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
Code:
alias mp3status {
  if ($inmp3 == $true) { echo -at Mp3 Status: Playing a song }
  if ($inmp3 == $false) { echo -at Mp3 Status: Paused / Not playing a song }
}

That's all I can think of. confused

#33702 03/07/03 02:14 AM
Joined: Apr 2003
Posts: 300
A
andymps Offline OP
Fjord artisan
OP Offline
Fjord artisan
A
Joined: Apr 2003
Posts: 300
ok that works, but it also returns 1 if it is stoped aswell,
i need, if it is stopped to return 2 or something, i can get it to do it if it is playing i know that bit

Last edited by andymps; 03/07/03 02:18 AM.

Liek OMG Yuo Stoleded my MageHurtzzzz!!!11
#33703 03/07/03 02:21 AM
Joined: Dec 2002
Posts: 1,922
O
Hoopy frood
Offline
Hoopy frood
O
Joined: Dec 2002
Posts: 1,922
Code:
alias paused {
  if !$insong { return 2 }
  var %p = $insong.pos, %t = $ticks
  while %t == $ticks { }
  if %p == $insong.pos { return 1 }
}

You can use $insong to check whether a song is being played.

#33704 03/07/03 02:25 AM
Joined: Apr 2003
Posts: 300
A
andymps Offline OP
Fjord artisan
OP Offline
Fjord artisan
A
Joined: Apr 2003
Posts: 300
Great it works thanx, i dont know what i would do without u lot grin


Liek OMG Yuo Stoleded my MageHurtzzzz!!!11

Link Copied to Clipboard