I'm trying to load a couple of things into an InfoWindow and I can't quite figure out how to do it.I'm assigning some attributes to a text area then loading text into the infoWindow content like this: var textArea:TextArea = new TextArea();
textArea.height=360;
textArea.width=360;
textArea.htmlText = infoWindowText;
textArea.editable = false;
myMap.infoWindow.content = textArea;
I then want to load a button to the same infoWindow like this:myMap.infoWindow.content = reportButton;
but that overwrites it, so I just have the button. Is there anyway to load a text area and a button and anything else I might want into the same infoWindow?