I need to format the labels in my tooltip text. In the following code, I need the literal values "Title:" and "Author:" to be in bold fontWeight, with using a normal fontWeight. How can I do this?
myButton.toolTip = "Title: "+this["books"+selectedArray] [add].title+'\n'+"Author: "+this["books"+selectedArray][addAppt].author;

