Thanks you Spunky. I never considered doing it that way, but because of that quick reply, I have it all sorted now
Only one note:
quote:
Originally posted by Spunky
js code:
media_string = media_string.split("\0");
To work properly, needs to be
js code:
media_string = media_string.split("\\0");
Cheers man