In the 3.6 viewer, for some reason popups always come up on the right side of the point, which means that for lower/normal resolution monitors the popup is always under the docked widget windows which starts to get really annoying after a while. I should add that I have increased the popup width to 444 to make it more usable so that exacerbates the problem. In InfoPopup.mxml, it appears that the positionInfo() and repositioninfo() functions should control placement of the popup by determining what side of the screen the point is on like this: var reg:String = "regLeft"; if (infoPt.x > map.width / 2) { reg = "regRight"; }But I notice that it makes absolutely no difference if I change the number it is dividing by or even completely comment out the if statement forcing it to regLeft. What am I missing on why it always draws to the right?