D Darkjin New Member Joined Jun 24, 2013 Messages 40 Reaction score 0 Oct 3, 2014 #1 how do i add stuff to my widget? a example for checkbox please
O Out Active Member Joined Jun 2, 2012 Messages 2,972 Reaction score 13 Oct 3, 2014 #2 You cant. You can only add new checkboxes with SetGroupStatus and GetGroupStatus
T tictoc Member Joined Sep 21, 2012 Messages 380 Reaction score 5 Oct 24, 2014 #3 And how can i get rid of this checkbox on the widget, when exiting the plugin?
A anaxor New Member Joined Sep 22, 2014 Messages 12 Reaction score 0 Oct 29, 2014 #4 tictoc said: And how can i get rid of this checkbox on the widget, when exiting the plugin? Click to expand... DelGroupStatus("NameOfCheckBox"); you declare this at PluginStop();
tictoc said: And how can i get rid of this checkbox on the widget, when exiting the plugin? Click to expand... DelGroupStatus("NameOfCheckBox"); you declare this at PluginStop();
T tictoc Member Joined Sep 21, 2012 Messages 380 Reaction score 5 Oct 29, 2014 #5 Works fine, thanks.