Hi,
I'm creating a new web source script for the dutch website 'MusicMeter'.
I would like Mp3Tag to show an inputbox where I input the album id (which has to be looked up manually) , so it eliminates the search step. Can I simply leave out the '[ParserScriptIndex]' line? This is my script so far:
[Name]=MusicMeter
[BasedOn]=http://http://www.musicmeter.nl
[IndexUrl]=http://www.musicmeter.nl/album/search/
[AlbumUrl]=http://www.musicmeter.nl/album/
[WordSeperator]=+
[IndexFormat]=%_url%|%album%|%artist%
[SearchBy]=%id%
[ParserScriptAlbum]=...
# ###################################################################
# This script parses the albums page for all common information.
#
# The current output variable is set via the outputto command
# All these fields are used by the confirm online information dialog
# ###################################################################
# Uncomment the following line if you want to write some debug output
debug "on" "d:\album.out"
# artist
outputto "album"
FindLine "locatie:"
FindInLine "» "
SayNextWord
But it doesn't seem to output any debug file?