Login Page - Create Account

Support Board


Date/Time: Mon, 20 Jan 2025 11:21:25 +0000



Post From: ACSIL Toolbar Button Status

[2018-06-04 13:52:33]
User439067 - Posts: 48
Thank you man - it certainly helped me think through the problem. Here is what I did to solve my issue.

  if (sc.MenuEventID != 0)
  {
    if (sc.MenuEventID == ACS_BUTTON_15)
    {
      if (sc.PointerEventType == SC_ACS_BUTTON_ON)
      {
        UpDegrees.SetInt(1);
        sc.SetACSToolEnable(ACS_BUTTON_15, FALSE);
        sc.FlagToReloadChartData = 1;
      }
    }
}

This sets the study input to the proper value and reloads the chart which creates the effect I was looking for.