mindlessboss - you could use this script Michel wrote for me that deletes all hotspots i am sure it could be modified to remove all plugins as well.
<!-- Removing Hospots action
---- usage: removing_hotspots( attribute * , value * );
---- attribute = your custom attribute name in the hotspot you needs to check for...
---- value = the value of your custom attribute name in the hotspot you needs to check for...
----
---- with ( attribute * , value * ) , only hotspots with the given arguments are removed
---- without ( attribute * , value * ) , all hotspots are removed
-->
<action name="removing_hotspots">
sub(i,hotspot.count,1);
if(i GE 0,removing_loop_all_hotspots(get(i),%1,%2));
</action>
<action name="removing_loop_all_hotspots">
if(%2 == null,
removehotspot(%1);
,
if(hotspot[%1].%2 == %3,
removehotspot(%1);
);
);
dec(i);
if(i GE 0, removing_loop_all_hotspots(get(i),%2,%3) );
</action>