How can I make a dynamic flexible status bar Hello! I got an interesting question and thought it would be nice to share the answer here.Question: How can I make a status bar that is dynamic/flexible in AIMMS?This is how I tried it, but it didn't work:StringParameter sp_fixedStatusBar { IndexDomain: (webui::indexApplicationExtension,webui::indexStatusBarSpec); Definition: { data { ( 1, icon ) : "aimms-glass" , ( 1, color ) : "red" , ( 1, text ) : "sp_context", ( 1, tooltip ) : "sp_statusTooltip" , ( 1, procedure ) : "pr_toggleDeveloper", ( 1, state ) : "Active" } }} For those unfamiliar with the data { } construct, this may be a pitfall, since you imagine that the string parameter could be used like above - but it doesn't work that way.This construct only allows you to add data - it doesn't cater for the dynamic/flexible part.But there are two solutions. Dynamic definitionProbably the simplest solution to this, is just to switch from the data { } construct to