Vinagre vnc client -- does the scaling work for you?

hello fellaz,
i tried vinagre from aur (both vinagre and vinagre-tweak) but scaling option was disabled, although i think it should work (gtk-vnc has been compiled with --with-gtkglext=yes). does it work for you?
thanks for reply,
joe
Last edited by jose1711 (2008-04-26 11:35:29)

my self-built packages don't work with scaling aswell.
however, vinagre should be in extra anyway, as it is officially part of gnome 2.22, so it should be in gnome-extra.

Similar Messages

  • Does the "Anamorphicizer" work for FCE and FCP?

    I have:
    Final Cut Express HD 3.0
    iDVD 6.0.2
    Just downloaded the anamorphicizer from this link
    http://homepage.mac.com/sith33/FileSharing34.html
    to help my project maintain it's 16:9 aspect ratio in iDVD.
    Before I spend $30.00 for quicktime pro (so that I can start using the anamorphicizer with it) can someone tell me if the anamorphicizer works for Final Cut Express?
    If you go to the page above it says, "Export your video from FCP like you normally would for going to iDVD," and does not mention FCE.
    Or, is there another website to download a "anamorphicizer" version that works for FCE?
    Thanks!
    PowerBook G4   Mac OS X (10.4.4)   Final Cut Express

    I've had kind of iffy results with Anamorphicizer, but I suspect that's because I don't know what I'm doing (or am trying to convert funky file formats). But when I drop a file on top of Anamorphicizer, it automatically opens up QT Pro and instructs me to save the converted file. I think you might have to get QT Pro in order to use it—I'm not sure, but don't think that the regular (free) version of QT has the "save as" capabilities of QT Pro. (Could be wrong, though. . . )
    Anyway, sure, if you save a file after it's been converted by Anamorphicizer, it should be able to be opened in FCE. (I save my files as a "Hinted" Quicktime movie.

  • Does BT Openzone work for you?

    I live in Central London and work in the City so I often find that my iPhone has connected to BT Openzone or The Cloud if WiFi is on.
    The reason I usually discover this is that it is taking an age to download something or to move to the next page in Safari. I usually have to switch off WiFi in order to get the much faster connection I can get in 3G.
    There is Cloud WiFi at Arsenal's Emirates Stadium and that appears occasionally on the phone but I can never get any downloads during a match via Cloud or 3G.
    All in all, it seems to me that the public wi-fi connection to the iPhone is useless and the only useful such connection is a personal/corporate one.
    What are other people's experiences? Am I doing something wrong?

    dbir wrote:
    Has anyone been able to get "DVR Manager" (go to Verizon's web site>My Verizon>Manage My TV, scroll down to "DVR Manager", click "Manage") to work?  I always get the error"  "We are having trouble communicating to your Set Top Box.".
    I just had FIOS installed (TV, internet, phone) last week.  Everything is working great.  Except this.  I've researched/tried lots of things unsuccessfully.  "Home Agent" doesn't know DVR Manager exists.  Neither does the online Automated Agent.  I tried Verizon's online chat help, but their suggestions didn't help either.  I'm wondering if it works for anyone, or is it some discontinued-but-still-advertised feature.
    If DVR Manager works for you, please tell me what you did to get it to work.
    -dbir
    Yes, has worked for years. And while I don't use it very much, I just checked, still works fine.
    Have you gone into the Menu on the DVR and set up the FiOS TV Remote DVR dialog? If not, you need to do so. You will need to set up a Parental Control PIN to access the dialog if you have not done so.
    Menu ==> Settings ==> FiOS TV Remote DVR ==> Web Access ==> and enable it (at least that is what I remember you had to do at that point)
    Hope this helps.
    Justin
    FiOS TV, 25/25 Internet, and Digital Voice user
    QIP7232, QIP7100-P2, IMG 1.9.1
    Keller, TX 76248 (VHO 1)

  • Does my applet work for you?

    I can see it fine on my PC but nobody else can view it.
    http://www.info.com.ph/~arivera/game/testmain.html
    I'm using SDK 1.4.2

    I'm trying to learn how to use
    MediaTracker right now - having some kind of problem
    where I try and wait for all the images to load but it
    would still run without having loaded everything.
    I usually just use a boolean status, and while the "loaded" boolean is false, I dont even let the other game code run. Quick example:
    import java.applet.*;
    import java.awt.*;
    public class Example extends Applet implements Runnable {
         Image buffer,images[];
         int w,h;
         boolean loaded;
         public void init() {
              loaded = false;
              w = getSize().width;
              h = getSize().height;
              buffer = createImage(w,h);
              new Thread(this).start();
         public void run() {
              while (true) {
                   if (!loaded) { // not loaded?
                        loaded = load(); // try to load the images
                   else {
                        // game processing
                   Graphics g = buffer.getGraphics();
                   if (g != null) paint(g); // try an active render
                   else repaint(); // passive rend if active fails
                   try {
                        Thread.sleep(10);
                   catch (InterruptedException e) {
                        break;
         /* you should use a boolean loader so you can know
         * if the load fails or not */
         protected boolean load() {
              images = new Image[] { // images to load
                   getImage("sprite.gif"),
                   getImage("background.gif"),
                   getImage("level.gif"),
                   getImage("whatever.gif")
              MediaTracker m = new MediaTracker(this);
              for (int j = 0;j < images.length;j++) {
                   m.addImage(images[j],j);
              try {
                   m.waitForAll();
              catch (InterruptedException e) {
                   return false; // there was an error, load failed
              /* the final step is to return whether or not MediaTracker didnt have a problem */
              return !m.isErrorAny(); // hopefully will return true
         protected Image getImage(String s) {
              return getImage(getCodeBase(),s);
         public void paint(Graphics g) {
              Graphics gfx = buffer.getGraphics();
              if (!loaded) {
                   gfx.setColor(Color.black);
                   gfx.fillRect(0,0,w,h);
                   gfx.setColor(Color.white);
                   gfx.drawString("Loading...",10,10);
              else {
                   // game painting
              g.drawImage(buffer,0,0,null);
         public void update(Graphics g) {
              paint(g);
    The music I haven't gone around trying to fix yet. You
    can turn off the music by painstakingly closing all
    browser windows though.
    public void stop() {
        sound.stop();
    I think the applet works if you have JRE 1.4 or above.
    My friends can't seem to view it - so I'll put a note
    on the webpage saying it requires JRE 1.4 or above.Well if you're sure you're using methods and classes that are available to previous versions of JRE, you can use the -target attribute to fix that problem. Like if you wanted JRE 1.2 and higher to run the applet instead of just 1.4, you'd compile:
    javac -target 1.2 file.javaBy default JDK1.4 will compile it so only JRE1.4+ can view it (which means you'd need the plugin).

  • How does the delta works for changes made to Sales Document

    Hi Experts,
    How does delta for 2LIS_11_VAITM for the changes made to Sales Order Header.....
    Example:
    If a sales order had 10 line items any changes at the item level are captured by 2LIS_11_VAITM
    Could you please update me on how the changes made at Sale Order Header level like Change of contract Date...etc
    Does those changes are captured by 2LIS_11_VAITM.......
    Please update

    Hi,
    SAP written lots of programs inside the Extractor, so it is not possible to tell how it will work, so you goto RSA2 in ecc and give the datasource and click on display and see the Function module and debug it you will know.
    Thanks
    Reddy

  • How does After Effects work for you guys?

    Love to hear feedback!

    After Effects has been a stable and fabuously fun, ultimatley indispensible and valuable application on all of my Macintoshes since After Effects was called CoSA.
    If you're looking for complaints, try asking, "What will not work for me in After Effects?" But that will depend on your hardware and your ability to learn this unbelievably deep and complex application.

  • Does font-replacement work for you?

    To set up this test:
    1) Disable the MarkerFelt-Thin and GillSans fonts.
    2) Start a new keynote, and choose a theme (I used 'gradient' but the rest have the same problem). You get an error that the fonts are missing.
    3) Go to the master slides and change them to some font that you have. A simple Ctrl+a and font reassignment should do it. If you're on a bullet, make sure the bullet is not also GIllSans or MarkerFelt.
    4) Save and close. Reopen.
    PROBLEM: The fonts are still reported as missing, even though you assigned new fonts to the slides. You can go back over and over, and Keynote still says they are missing.

    Are you changing the font defaults for the text element and shapes as well?
    Keynote (and Pages) will allow you to set the fonts for spaes (as well as the color/texture) and it will also have a setting for the text you can place on the slide (which is not part of the normal body or title text)
    Gerry
    You can save yourself some trouble on this project by deleting all but one master slide to do your testing on. Much easier than changing it on ever single slide, at least for a test.
    Message was edited by: Gerry Straathof

  • How well does the MBP work for gameplay?

    Now I know what you're thinking. If I'm solely looking for a gaming computer than I should get a computer solely for gaming, but this is not the case. I would just simply like to play World of Warcraft occasionally. The game is pretty intensive. I'm willing to upgrade the ram to 8gb, but that won't really drastically change the gameplay. How good is the gamecard that comes with it or should I upgrade it? If I can even upgrade it. What's the fps? All that stuff. Thanks in advance.

    Hi Jesse,
    I'm thinking you might have posted this question in the wrong forum. This is the MacBook Air forum, in your title you ask about the MBP and in your question you ask about going to 8GB of RAM. The MacBook Air does not support upgrading the RAM, maximum of 4GB. In addition the MacBook Air is commonly abreviated as MBA.
    If there's been a mix up and you're legitimately asking about the Air, here's my impressions of it -
    https://discussions.apple.com/message/15682909#15682909
    For what it's worth, the GPU in the 13" MBP is identical to the one in the 11" & 13" MBA. Although the 11" MBA allocates slightly less system RAM.
    World of Warcraft, as you know, can run reliably on some pretty old machines. It definitely runs just fine on the Intel HD 3000, in the fair-to-good category. I can't say I was thrilled with the performance in a 25-man Firelands raid last week but it's acceptable.

  • Does LIBGL_ALWAYS_INDIRECT still work for you?

    Those of you who have AIGLX-capable video hardware: can you still force accelerated indirect rendering for OpenGL stuff, using LIBGL_ALWAYS_INDIRECT=1, without X freezing solid? Or does LIBGL_ALWAYS_INDIRECT cause a lockup?

    Hmm, so this might be a little late to ask but I never really understood what actually happens when the driver detects AIGLX capable hardware and displays somehting like this in Xorg.0.log:
    (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/r200_dri.so
    (II) GLX: Initialized DRI GL provider for screen 0
    Does it use AIGLX or the regular DRI preferably? What about these btw:
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 8, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:00:10.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 8, (OK)
    drmOpenByBusid: drmOpenMinor returns 8
    drmOpenByBusid: drmGetBusid reports pci:0000:00:10.0
    (WW) AIGLX: 3D driver claims to not support visual 0x23
    (WW) AIGLX: 3D driver claims to not support visual 0x24
    (WW) AIGLX: 3D driver claims to not support visual 0x25
    (WW) AIGLX: 3D driver claims to not support visual 0x26
    (WW) AIGLX: 3D driver claims to not support visual 0x27
    (WW) AIGLX: 3D driver claims to not support visual 0x28
    (WW) AIGLX: 3D driver claims to not support visual 0x29
    (WW) AIGLX: 3D driver claims to not support visual 0x2a
    (WW) AIGLX: 3D driver claims to not support visual 0x2b
    (WW) AIGLX: 3D driver claims to not support visual 0x2c
    (WW) AIGLX: 3D driver claims to not support visual 0x2d
    (WW) AIGLX: 3D driver claims to not support visual 0x2e
    (WW) AIGLX: 3D driver claims to not support visual 0x2f
    (WW) AIGLX: 3D driver claims to not support visual 0x30
    (WW) AIGLX: 3D driver claims to not support visual 0x31
    (WW) AIGLX: 3D driver claims to not support visual 0x32
    (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/r200_dri.so
    (II) GLX: Initialized DRI GL provider for screen 0
    (**) Option "Protocol" "IMPS/2"
    (**) Mouse1: Device: "/dev/input/mice"
    (**) Mouse1: Protocol: "IMPS/2"
    (**) Option "CorePointer"
    (**) Mouse1: Core Pointer
    (**) Option "Device" "/dev/input/mice"
    Sorry, also want to ask someone before I go diggin in myself once.
    Most importantly, yes LIBGL_ALWAYS_INDIRECT=1does still affects the Xserver. It is switching to indirect rendering as glxinfo suggests while most OpenGL apps such as neverball run just fine still. Sorry, didn't try beryl or anything heh. This is on a mac though using archppc, similar setup what goes for versions though.

  • 64 Bit computer users--- can the Iphone work for you

    HI I bought the I phone not to long ago, brought ti home and tried to plug it int ot activate it on my new computer... I got an error message tellign me to plug it in to a 32 Bit system! Aghhhhh Is there any way to get 64 bit compatible Itunes/ I phone synching software? anyone one else have this problem?

    Some files are now packed in a few larger files or code has been moved to remove smaller files, so there is nothing wrong about no longer seeing xpcom.dll and possibly a few other files.
    *Bug 852950 - Kill xpcom.dll/libxpcom.so/xpcom.dylib
    *Bug 648407 - Fold NSPR and NSS into mozjs (for Windows) or libxul (for other platforms)
    If there are problem then do a clean reinstall and be sure to delete the Firefox program folder before installing Firefox.

  • NiBiTor 2.0: It now does the temperature mod for you...

    http://www.mvktech.net/index.php?option=com_remository&Itemid=26&func=download&filecatid=916
    (You still need to do the BIOS flash though)
    (Change any 450 you see to 500 and tick the option to enable temp monitoring)

    I upgraded my BIOS to 1.6 and started installing my software.  The software warned me that my CPU was over 80C and I saw it climb to 87C.
    Could this be right?  I have the BIOS set at FAST and the software says 3.04 for my 3.0 GHz P4.
    I'm pretty sure I installed the HSF correctly and also have two other fans.  One on the side of the case and the other in the rear.  Although, the rear fan seems to be blocked by the case because the holes are not very big.
    Any thoughts?
    Thanks,
    Andrew

  • How does time machine work for you ?

    TimeMacine writes two files per time block and sometimes one like it should.
    When I look over drive with Finder it seems okay to me.  The plist telling
    it which files are not included seems okay.  The killer when I try to see what
    could be restored TimeMachine silently fails to open.

    Do you mean the "Star Wars" display won't appear?   If so, see #E4 in Time Machine - Troubleshooting.
    If not, please clarify.

  • Does the RSS feed for Dev Forums work for you?

    Does the RSS feed (lower right corner of the screen)
    http://discussions.apple.com/rss.jspa?feed=rss/rssmessages.jspa?forumID=727
    work for you? I tried to add the URL to one of the RSS readers on my iPhone but none could identify a working feed. Any hints?

    Well, I think they just got the RSS image link wrong. The correct link is:
    http://discussions.apple.com/rss/rssmessages.jspa?forumID=727
    Works fine in all readers.
    (I still wonder how others have gotten the link I initially posted working... )

  • HT4557 Does home sharing work for apps? The instructions make it sound as though home sharing really only allows you to stream content.

    Does home sharing work for apps? My young son received iPad mini for Christmas, and I don't want him to have to repurchase the games and other raps I'd already bought for him that are resident on my iPad.

    does Home Sharing allow you to copy any item begtween libraries, including CDs you have ripped yourself
    It certainly allows you to copy ripped CDs. Just did that myself last week.

  • Does the wall charger for a 17" macbook pro work on my new Macbook Pro?

    I searched for docs and specs but can't seem to come with anything. Does the wall charger for a 17" macbook pro work on my new Macbook Pro?

    Well, obviously you have NO faith in me or you wouldn't ask.
    Go to the Apple Store online. Search for laptop power products and look for Apple's replacement AC adaptors. One is the 60 watt model for MacBooks. The other is the 85 watt adaptor - now read this very carefully because it's in smaller, lighter print - which says for 15" and 17" MacBook Pros. Will you take Apple's word?

Maybe you are looking for

  • How to resolve the IP Address in Outlook addin?

    Currently, I am using an outlook addin, which receives the mail and parses the body of the mail,and doing some database operations. The thing is that, using the CC email address, it assigns the task through database. But, if user uses Display Name of

  • How do I find my Apple ID?

    How do I find my  Apple ID?

  • How do I adjust Tiff. dpi resolution?

    Hi, does anyone know how I can set a specific dpi resolution of my tiff file. I have opened it as a pdf in preview and can convert it to a tiff, but I don't know what resolution it is. I have to send someone a 300 dpi tiff file and don't even know ho

  • How can i share photos to fb using camera roll?

    my iphone 4s can't share photos to fb using camera roll, why my friends iphone 4s can do that, what's wrong with my phone. i just purchased it today,,, pls help

  • BAPI to create demands on MD04

    Hello, Can anyone direct me to a BAPI that will create the demands for a Goods Issue of a material to a subcontractor?  I need the demands to show up in MD04 and ME2O. I plan to use the FM CS_BOM_EXPL_MAT_V2  to explode a subcontracting BOM and then