can anyone point me to where a list of filter folder arguments and their meanings are, the wiki help has a list of the expressions but does not give what they mean, i know some are somewhat obvious, but there are some there that make little to no sence at all .. any help would be appreciated
cheers
cheers
Mensajes Wed 26 May 10 @ 7:26 am
Link - http://www.virtualdj.com/wiki/FilterExamples.html
Guess this is what you are asking about ??
"==", "=", "equals”, "equal", "is", -- all the same representing 'equal'
">=", "<=", -- greater than or less than but also equal to the value
">", "<", -- greater than or less than (but not equal) to the value
"!=", "<>", "is not", -- not equal
"contains", "contain", "doesnt contain", "don't contain", -- self explanatory
"starts with", "start with", -- self explanatory
"ends with", "end with ", -- self explanatory
"and ", "&&", "&", -- are AND evaluations both elements on either side of the 'and' must evaluate 'true' for the whole expression to be 'true'
"or ", "||", "|" -- are OR evaluations either element on either side of the 'or' must evaluate 'true' for the whole expression to be 'true'
Guess this is what you are asking about ??
"==", "=", "equals”, "equal", "is", -- all the same representing 'equal'
">=", "<=", -- greater than or less than but also equal to the value
">", "<", -- greater than or less than (but not equal) to the value
"!=", "<>", "is not", -- not equal
"contains", "contain", "doesnt contain", "don't contain", -- self explanatory
"starts with", "start with", -- self explanatory
"ends with", "end with ", -- self explanatory
"and ", "&&", "&", -- are AND evaluations both elements on either side of the 'and' must evaluate 'true' for the whole expression to be 'true'
"or ", "||", "|" -- are OR evaluations either element on either side of the 'or' must evaluate 'true' for the whole expression to be 'true'
Mensajes Wed 26 May 10 @ 7:40 am