I like the Ant Catalogue program very much. But here is a question. I use the optional checkboxes to show which movies I have seen, so I would like the unchecked state to be default. Is this possible ?
Cheers
Morten
checkboxes unchecked as default
There are two ways you can do this. Either add the line
to the script that should set the checkbox unchecked when movie information are downloaded, or open your preferences file prefs.xml (from your Ant Movie Catalog installation folder) with a text editor, search for the DefaultMovie node (values for width and height might differ on your system)
and replace the Checked="True" with Checked="False". This effects general behaviour of AMC and now the checkbox will be unchecked whenever you add a new movie and for any script.
Code: Select all
setField(fieldChecked, 'False');
Code: Select all
<DefaultMovie WindowWidth="570" WindowHeight="560">
<Values Number="0" Checked="True"/>
</DefaultMovie>
Hi,
I tried that but the checkbox is still checked when I add a new movie with a script.
I have:
But where should I add the following line in my script?
Thanks!
I tried that but the checkbox is still checked when I add a new movie with a script.
I have:
Code: Select all
<DefaultMovie WindowWidth="570" WindowHeight="560">
<Values Number="0" Checked="False"/>
</DefaultMovie>
(script: IMBD.ifs)setField(fieldChecked, 'False');
Thanks!
Oups I forgot to precise, I'm using AMC Unofficial 3.8.1
Shouln't be the same?
Sorry, this doesn't work with AMC Unofficial 3.8.1 because checkbox is always set to True when a new movie is added<DefaultMovie WindowWidth="570" WindowHeight="560">
<Values Number="0" Checked="True"/>
</DefaultMovie>

This is now corrected in AMC Unofficial 3.8.2
