I found a forum post a while ago when trying to set up CompactRaidFrames & Clique
By default, they did not work in conjunction with each other - but someone posted a modification to the LUA which fixed it
Long story short - I've just tried to retrace my steps and can no longer seem to find that post.. so I'm recreating it as this now, to help future users who may have the same trouble
Basically, to start with, the flames aren't interactable with Clique, and adding this in will make them work:
go to the .LUA file - InterfaceAddonsCompactRaidFrameCompactUnitFrame.lu a
Change the function "function CompactUnitFrame_SetUpFrame(frame, func)" to:
function CompactUnitFrame_SetUpFrame(frame, func)
func(frame);
CompactUnitFrame_UpdateAll(frame);
CompactUnitFrame_SetUpClicks(frame);
ClickCastFrames = ClickCastFrames or {}
ClickCastFrames[frame] = true
end
That should then allow Clique to interact with the raid frames