mIRC Homepage
Posted By: ATMA some stuff - 23/11/03 08:01 PM
ok i have this little play list thing so it displays playlist in an edit box now what i am having trouble with is removeing .mp3 from the end of the file name..... any help?

Code:
alias ssongss {
  var %slist $mircdirmp3\mp3list.txt
  var %i 1 
  while (%i <= $lines(%slist)) {
    if (.mp3 isin $read(%slist, %i)) { return $remove($read(%slist, %i), .mp3) }
    did -a $dname 1 $read(%slist, %i)
    inc %i
  }
}
Posted By: Knappen Re: some stuff - 23/11/03 08:27 PM
Try this...

Code:
 
alias ssongss {  
var %slist $mircdirmp3\mp3list.txt  
var %i 1   
while (%i <= $lines(%slist)) {    
  did -a $dname 1 $remove($read(%slist, t, %i),.mp3)
  inc %i  
}
}

© mIRC Discussion Forums