error in ExportM3Us.vbs

Download and get help for different MediaMonkey for Windows 4 Addons.

Moderators: Peke, Gurus

Clipper27864

error in ExportM3Us.vbs

Post 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!

:(
trixmoto
Posts: 10024
Joined: Fri Aug 26, 2005 3:28 am
Location: Hull, UK
Contact:

Post by trixmoto »

If you email me a copy of the script then I'll take a look for you.
Download my scripts at my own MediaMonkey fansite.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
Guest

Post by Guest »

I had this problem and it was because my playlist had a / character. I changed it to a - and all was fine.
Guest

Fixed

Post 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.
trixmoto
Posts: 10024
Joined: Fri Aug 26, 2005 3:28 am
Location: Hull, UK
Contact:

Post 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.
Download my scripts at my own MediaMonkey fansite.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
jiri
Posts: 5426
Joined: Tue Aug 14, 2001 7:00 pm
Location: Czech Republic
Contact:

Post by jiri »

Incorrect filename characters will be automatically mapped in the next release.

Jiri
trixmoto
Posts: 10024
Joined: Fri Aug 26, 2005 3:28 am
Location: Hull, UK
Contact:

Post by trixmoto »

Excellent! :)
Download my scripts at my own MediaMonkey fansite.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
Post Reply