Select to view content in your preferred language

Identify Popup & alpha value

834
2
Jump to solution
05-28-2012 02:55 PM
ChristinaLaurier
Occasional Contributor
I am using the FlexViewer sample v2.5.
I have downloaded the IdentifyWidget v 2.5.8; I would like to switch the background alpha of the pop-up display (the one that opens when you mouse over the results state).  However, I can't seem to find the proper spot to change this?

I have tried several spots throughout the IdentifyWidget.mxml and the PopUPRendererSkin.mxml but had no luck. I know it's easy, just having trouble narrowing down the proper alpha value to change.
Tags (2)
0 Kudos
1 Solution

Accepted Solutions
RobertScheitlin__GISP
MVP Emeritus
Christina,

   You will need to change the alpha of the map.infoWindow as that is the parent of the popup. You can add this line to the showHighlight function.


map.infoWindow.alpha = 0.4;


Don't forget to click the Mark as answer check on this post and to click the top arrow (promote).
Follow the steps as shown in the below graphic:

View solution in original post

0 Kudos
2 Replies
RobertScheitlin__GISP
MVP Emeritus
Christina,

   You will need to change the alpha of the map.infoWindow as that is the parent of the popup. You can add this line to the showHighlight function.


map.infoWindow.alpha = 0.4;


Don't forget to click the Mark as answer check on this post and to click the top arrow (promote).
Follow the steps as shown in the below graphic:
0 Kudos
ChristinaLaurier
Occasional Contributor
Thanks as always Rob!
0 Kudos