Platforms to show: All Mac Windows Linux Cross-Platform

FAQ.How to hide all applications except mine?

Answer: The code below will on Mac OS hide all applications except your one:
Example
dim p as new ProcessMBS

p.GetFirstProcess
do
if not p.FrontProcess then
p.Visible=false
end if
loop until not p.GetNextProcess

The biggest plugin in space...