Is there a simple way to set up an If/Then case where I can check if a container is empty?
The following should work:
if(ListCount(GetDirectChildren(WhateverTheContainersNameis))=0){
//Container is empty
}
else{
//Container is not empty
}