question

anon-user avatar image
0 Likes"
anon-user asked Jason Lightfoot edited

How to change color font of a button in the dashboard from code

I want to change the color of a button and of a tittle in the dashboard. In the image, for example, I want to change the color of the text "Opciones Pistola" and the color of the font on one button "Opción 0".

I need to do this from code. I could change the image of a button with the following code, but I can´t access the color font.

  1. string controlID = "1";
  2. string imagePath = "Capturas Pistola\\General2.png";
  3. treenode control = getdashboardcontrol(controlID);
  4. treenode bmp = control.as(Object).attrs.assert("bitmap");
  5. bmp.value = imagePath;
  6. refreshview(control);

I was trying a lot of options modifying that code, but I did not achieve any good result.

I had difficulties to find the buttons in the tree.

Thank you a lot in advance.

FlexSim 20.1.3
dashboardsbuttonschange color font
· 1
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

1 Answer

Jason Lightfoot avatar image
1 Like"
Jason Lightfoot answered Jason Lightfoot edited

If it's in the onPress code of the button here's an example that toggles the color:

  1. Object button=c;
  2. if (button.color==Color.blue)
  3.     button.color=Color.red;
  4. else
  5.     button.color=Color.blue;


If you want to set the dashboard defined color from elsewhere here's another example:

  1. Object buttondef=Model.find("Tools/Dashboards/Dashboard/DashboardButton1");
  2. treenode buttoncolor=variables(buttondef).subnodes["buttonColor"];
  3. Color newcolor=Color.red;
  4. buttoncolor.first.value=newcolor.r;
  5. buttoncolor.first.next.value=newcolor.g;
  6. buttoncolor.last.value=newcolor.b;
  7. Object activebuttondef=node("createdView+",variables(buttondef));
  8. if (objectexists(activebuttondef)){
  9.     treenode activeButtonColor=variables(activebuttondef).subnodes["buttonColor"];
  10.     createcopy(buttoncolor,activeButtonColor,1,0,0,1);
  11.     activebuttondef.first.as(Object).color=newcolor;
  12. repaintview( activebuttondef.first);
  13. }


· 11
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.