ID:164577
 
obj
Juke_Box
icon = 'obj.dmi'
icon_state = "juke"
density = 1
verb
Play_Song()
set category = "Juke"
set src in oview(1)
var/wh = input("What Song File Do You Want To Play?",null) as sound
oview() << wh
Stop_Song()
set category = "Juke"
set src in oview(1)
oview() << sound()

how can i get the "oview << wh" bit to play a sound that the user has chosen from their computer? i know it will go something like oview() << sound('blah.wav')
Thanks Jonathan
You could try:

 oview() << sound(wh,1) //1 loops the song and 0 will play it only once.


Oh and try using DM tags.
In response to Quest Industries
k thanks mate