search for CoronaSun via maxscript?

Is it possible to search for CoronaSun’s in a large array of lights?

I already can filter Coronalights via “class” and “superclass” but is there a specific way to extract a CoronaSun via maxscript?

Thanks in Advance!

Same as with CoronaLights, class is just “CoronaSun”:

for o in yourarray where (classof o==CoronaSun) collect o

Good Luck

A little late, but thank you very much, works fine!

Cheers!