Page 1 of 1

error in ExportM3Us.vbs

Posted: Wed Jan 11, 2006 8:47 pm
by Clipper27864
Newest version of MM installed.. wanted to export my playlists to M3U files to my Windows XP profile folder. It creates the first playlist then bombs with this error:

Error #424 - Microsoft VBScript runtime error
Object required: 'fout'
File: "D:\Mediamonkey\Scripts\ExportM3Us.vbs", Line: 85, Column: 6

I then click the OK button and receive another popup error dialogue that states:

Error happened during script execution:
Object required: 'fout'

I have not modified any scripts.. I even removed/reinstalled MM. Running Windows XP SP2.. help!

:(

Posted: Thu Jan 12, 2006 10:23 am
by trixmoto
If you email me a copy of the script then I'll take a look for you.

Posted: Thu Jan 12, 2006 5:57 pm
by Guest
I had this problem and it was because my playlist had a / character. I changed it to a - and all was fine.

Fixed

Posted: Thu Jan 12, 2006 10:38 pm
by Guest
the slash character in Ac/Dc was the culprit.. thank you for the help! now if I can only figure out how to make sure the screen properly sorts the path names I'd be in business... irritating to have 2-3 songs at the top of the playlist from an album, then the remainder towards the end of the playlist.

Posted: Fri Jan 13, 2006 4:18 am
by trixmoto
If you replace the line

Code: Select all

title = Titles(i)
with these lines

Code: Select all

title = Replace(Titles(i),"/","-")
title = Replace(title,"\","-")
then you won't this error again.

Posted: Mon Jan 23, 2006 10:34 am
by jiri
Incorrect filename characters will be automatically mapped in the next release.

Jiri

Posted: Mon Jan 23, 2006 10:48 am
by trixmoto
Excellent! :)