Hi JK and all,
I am striving to get "colors" onto my screen while defragging. Pls see the below script and tell me if I did something wrong...
I am only seeing the default colors of light and darker blue, yellow and then the colors for read/write that I set (purple, cyan), but none of the SetFileColor ones...
VolumeActions
SetColor(Empty,0,0,0) // Black
SetColor(Allocated,45,72,128) // Dark-blue
SetColor(BusyRead,255,69,255) // Purple
SetColor(BusyWrite,0,255,255) // Cyan
SetFileColor(all,All,139,158,198) // Blue
SetFileColor(all,Processed,139,198,139) // Green
SetFileColor(all,Fragmented,229,229,0) // Yellow
SetFileColor(all,not(Movable),204,92,92) // Red
SetFileColor(all,Selected,175,198,247) // Light-blue
SetFileColor(all,Selected and Fragmented,255,255,0) // Light-yellow
SetFileColor(all,Selected and not(Movable),255,115,115) // Light-red
...
Also, second question - will the AddGap here really move the files in Zone 6 to the end of the disk, as I imagine it should?
/* Zone 5: spacehog files (less important files that take up a lot of space). */
FileSelect
all and
not (
FileName("*.avi")
or FileName("*.mkv")
or FileName("*.mpg")
or FileName("*.mpeg")
or FileName("*.vob")
or FileName("*.ifo")
or FileName("*.bup")
or FileName("*.flv")
or FileName("*.wmv")
)
FileActions
SortByName(Ascending)
AddGap(VolumeSize)
FileEnd
/* Zone 6: Movies */
FileSelect
FileName("*.avi")
or FileName("*.mkv")
or FileName("*.mpg")
....