Other possible ways: 1) use a script file, so you can reload the coloring in one go
2) use javascript, e.g.: var nrRes = 800 var c = ["FF0000", "FF3300", "FF6600", (etc.) ] /* array with 800 colors, but this could be autogenerated using javascript too; see e.g. http://wiki.jmol.org:81/index.php/Recycling_Corner#Molecule_color_pick er where 125 colors are generated using javascript */ var scr = "" for (var i=1; i<=nrRes; i++) { scr += "select resno=" + i + "; color [x" + c[i-1] + "]; " } function userColorJmol() { jmolScript(scr) } In fact, I'm quite sure that method (2) can be implemented in Jmol script, but I don't master that yet. ------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ _______________________________________________ Jmol-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jmol-users

