Login Page - Create Account

Support Board


Date/Time: Wed, 02 Jul 2025 03:52:57 +0000



Post From: Offering To The Community: Show/Hide studies using ACS buttons on a Control Bar

[2021-01-02 01:15:19]
Flipper - Posts: 65
Looks like this function, sc.SetACSToolEnable() has been changed to this sc.SetCustomStudyControlBarButtonEnable()

so change this in the .cpp file

// reset buttons so none look pressed in
    sc.SetACSToolEnable(ACS1button.GetInt(),FALSE);
    sc.SetACSToolEnable(ACS2button.GetInt(),FALSE);
    sc.SetACSToolEnable(ACS3button.GetInt(),FALSE);
    sc.SetACSToolEnable(ACS4button.GetInt(),FALSE);
    sc.SetACSToolEnable(ACS5button.GetInt(),FALSE);

to this

// reset buttons so none look pressed in
  sc.SetCustomStudyControlBarButtonEnable(ACS1button.GetInt(), FALSE);
  sc.SetCustomStudyControlBarButtonEnable(ACS2button.GetInt(), FALSE);
  sc.SetCustomStudyControlBarButtonEnable(ACS3button.GetInt(), FALSE);
  sc.SetCustomStudyControlBarButtonEnable(ACS4button.GetInt(), FALSE);
  sc.SetCustomStudyControlBarButtonEnable(ACS5button.GetInt(), FALSE);

And it complied for me. (didn't actually check its functinality though!)