Slashdot Mirror


User: jwymanm

jwymanm's activity in the archive.

Stories
0
Comments
227
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 227

  1. Re:"Single window" Citrix.. on X.org X11 Server Release 6.8 · · Score: 1

    Not only Citrix, but NX easily does this as well:

    (UNIX)
    1. Run nxclient
    2. Select Configure
    3. Under the General tab choose UNIX and Custom for Desktop
    4. Select Settings
    5. Choose run the following command
    6. Type any X program you want to run (xterm for example)

  2. Re:Gif is only good for animation on GIF Support Returns to GD · · Score: 2, Informative

    You can display PNGs with full alpha transparency, both as backgrounds of a block element and inline with an image tag, without using any javascript, behaviors, or a second image.

    The following CSS and html code shows how:

    For background:

    <style>
    #mydiv {
    width:Xpx; height:Xpx;
    background:url('mydiv.png');
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader (src='image.png');
    background:expression('none');
    }
    </style>
    <div id="mydiv"></div>

    For inline:

    <style>
    #mydiv {
    width:Xpx; height:Xpx;
    filter:progid:DXImageTransform.Micros oft.AlphaImageLoader(src='image.png');
    }
    #myimg {
    width:Xpx;height:Xpx;
    filter:progid:DXImageTra nsform.Microsoft.Alpha(opacity=0);
    }
    </style>
    < div id="mydiv"><img id="myimg" src="image.png"></div>

    Of course you'll want to put the proprietary code within IE comment conditionals [link here]. You can remove the expression syntax from background if you put it within the IE conditional. Fix any obvious errors in the above code that /. introduced.