Isn't there are way to do something like this?
Code:
check #Objectives {
if (Category1 == checked) {
class == done;
}
}
check #objectives2012 {
if (Sub-Category1 == checked && Sub-Category2 == checked && Sub-Category3 == checked) {
Category1 class = done
}
else if (Sub-Category1 == checked || Sub-Category2 == checked || Sub-Category3 == checked) {
Category1 class = started
}
else {
Category1 class = not_done
}
}
Hopefully you can see what I'm trying to show there and hopefully there's a way to check if everything under a tab of lets say #mission_3 checks are all checked otherwise I'll need a big if statement to check if all of them are done checked of any of them...
I'll read back on this tomorrow as I am very tired now and need to sleep.
Oh and Andrew, will your code work with
my image at all? It's not essential, I'm just curious.
Thank you both for all your help!