Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
  • Community
  • Products
  • Confluence
  • Questions
  • I am trying to make status macro display different titles based on the color selected. e.g. red="Blocked", green="progressing well". Is that possible?

I am trying to make status macro display different titles based on the color selected. e.g. red="Blocked", green="progressing well". Is that possible?

Maxim Prooday March 10, 2016

Thank you.

3 answers

0 votes
Roman Kirilenko
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 28, 2016

There is a way without coding. You can try a Handy Status macro from the Handy Macros for Confluence add-on.

0 votes
Stephen Deutsch
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 11, 2016

Hi Maxim,

Here's a small user macro that should do what you're asking

## @param Selection:title=Selection|type=enum|required=true|enumValues=Grey,Red,Yellow,Green,Blue
#if ( $paramSelection == "Grey" )
  #set ( $colour = "Grey")
  #set ( $text = "Grey text" )
#elseif ( $paramSelection == "Red" )
  #set ( $colour = "Red")
  #set ( $text = "Red text" )
#elseif ( $paramSelection == "Yellow" )
  #set ( $colour = "Yellow")
  #set ( $text = "Yellow text" )
#elseif ( $paramSelection == "Green" )
  #set ( $colour = "Green")
  #set ( $text = "Green text" )
#elseif ( $paramSelection == "Blue" )
  #set ( $colour = "Blue")
  #set ( $text = "Blue text" )  
#end
  
<ac:structured-macro ac:name="status">
    <ac:parameter ac:name="colour">$colour</ac:parameter>
    <ac:parameter ac:name="title">$text</ac:parameter>
</ac:structured-macro>

You can change the name of the selections (in the enumValues on the first line), and then just change the name also in the if statements.

You then substitute the text that you want each color to display where it says "<colour> text".

Note that by using a user macro, you lose the ability to choose the color directly from the editor menu.

0 votes
Peter T
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 10, 2016

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events