<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
Unfortunately the opacity is fixed:<br>
<a class="moz-txt-link-freetext" href="http://www.jasonbirch.com/nodes/2008/12/02/213/changing-selection-colour-in-mapguide-ajax-viewer/">http://www.jasonbirch.com/nodes/2008/12/02/213/changing-selection-colour-in-mapguide-ajax-viewer/</a><br>
<br>
"The SELECTIONCOLOR parameter is a hex string in <a
 href="http://en.wikipedia.org/wiki/RGBA_color_space"
 onclick="javascript:pageTracker._trackPageview('/outbound/article/en.wikipedia.org');">RGBA
format</a>,
or its integer equivalent. Note for geeks: the A (opacity) portion of
the string is ignored; the server code masks this out of the passed
value, and then adds 200 (C8) as the line opacity and 160 (A0) as the
fill opacity."<br>
<br>
The stylesheet that you have modified are for opacity when digitizing,
eg. drawing a polygon for buffer.<br>
<pre class="moz-signature" cols="72">Regards, Kenneth Skovhede, GEOGRAF A/S
</pre>
<br>
<br>
Jackie Ng skrev:
<blockquote cite="mid:1251948611183-3571114.post@n2.nabble.com"
 type="cite">
  <pre wrap="">At the function RequestSelectionImage() in ajaxmappane.templ it makes a call
to GETDYNAMICMAPOVERLAYIMAGE passing in the selection color. 

That selection color is an ARGB (RGBA?) hex value. You should be able to
control the selection opacity by tweaking the alpha component of that hex
value.

- Jackie


Jamo wrote:
  </pre>
  <blockquote type="cite">
    <pre wrap="">Is it possible to change the selection opacity?

I don't mind doing this globally at the moment.
I've tried changing this to 01 .01 but it is no good?
perhaps I'm changing it in the wrong area?
ajaxmappane.templ
    #shapeFeedback
    {
        filter:alpha(opacity=50);   /* Internet Explorer       */
        -moz-opacity:0.50;           /* Mozilla 1.6 and below   */
        opacity: 0.50;               /* newer Mozilla and CSS-3 */
    }

    </pre>
  </blockquote>
  <pre wrap=""><!---->
  </pre>
</blockquote>
</body>
</html>