Linux / Gnome - problem with moving JFrame ?

I have a swing application which runs fine on Windows. Yesterday I tried it on a Fedora Linux (latest version) with Gnome, running Java 1.5.0_02 and I noticed the following weird problem. When you try to drag a JFrame window by the title bar to move it, it always maximizes it! When you bring it back to regular size, you see that the window was actually moved, but after that it was maximized, as if you double-clicked the title bar. It only happens with Java windows, all other X11 applications behave normally.
Anybody else have the same problem?

Btw, it only happens if you specify that you want JFrame and JDialog decorated:
setDefaultLookAndFeelDecorated(true)
As much as I like the new 1.5 Swing decorations I guess I will have to stick to no decorations under Linux.

Similar Messages

  • Problems with moving directories

    Hi, i have a problem with moving one subdirectory from one directory to another. Here is the code
         public static boolean moveToDir(String filename, String dirname)
         if( XFileUtils.fileExists(filename) )
         return onMoveSingleFileToDir(filename,dirname);
         File dir = new File(".");
         FileFilter fileFilter = new WildcardFilter(filename);
         File[] files = dir.listFiles(fileFilter);
         boolean _flag = true;
         for (int i = 0; i < files.length; _i++)
         String _cfilename = files[_i].getName();
         if( !XFileUtils.fileExists(_cfilename) )
         throw new RuntimeException("file or dir does not exists"+_cfilename);
    flag = flag && onMoveSingleFileToDir(_cfilename, dirname);
         return _flag;
    Can anyone help me?
    Thank you very much!
    Elias

    Also, a sample DAD would look like:
    <Location /database1>
    SetHandler pls_handler
    Order allow,deny
    Allow from All
    AllowOverride None
    PlsqlDatabaseUsername APEX_PUBLIC_USER
    PlsqlDatabasePassword This_Password
    PlsqlDatabaseConnectString database1 TNSFormat
    PlsqlDocumentTablename wwv_flow_file_objects$
    PlsqlDocumentPath docs
    PlsqlDocumentProcedure wwv_flow_file_mgr.process_download
    PlsqlDefaultPage f?p=130
    </Location>
    <Location /database2>
    SetHandler pls_handler
    Order allow,deny
    Allow from All
    AllowOverride None
    PlsqlDatabaseUsername APEX_PUBLIC_USER
    PlsqlDatabasePassword This_Password
    PlsqlDatabaseConnectString database2 TNSFormat
    PlsqlDocumentTablename wwv_flow_file_objects$
    PlsqlDocumentPath docs
    PlsqlDocumentProcedure wwv_flow_file_mgr.process_download
    PlsqlDefaultPage f?p=131
    </Location>
    The tnsnames.ora file would then look similar to:
    DATABASE1 =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = the_database_server)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = DATABASE1)
    DATABASE2 =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = the_database_server)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = DATABASE2)
    Again, these are edited copies of what I use, but something similar should work for you.
    Bill Ferguson

  • [GNOME] problem with gvfsd-metada

    I have problems with gvfs. My computer sometimes crash. I already have upgraded gvfs to version 1.5 but still the same. Can someone help me?
    >everything.log
    Nov 18 01:47:51 myhost NetworkManager: <info> Activation (eth0) Stage 5 of 5 (IP Configure Commit) complete.
    Nov 18 01:48:47 myhost kernel: gvfsd-metadata[2171]: segfault at 8 ip 0804c9ba sp bfef3b40 error 4 in gvfsd-metadata[8048000+b000]
    Nov 18 02:10:17 myhost -- MARK --
    Nov 18 02:11:18 myhost kernel: gvfsd-metadata[16155]: segfault at 8 ip 0804c9ba sp bfbc7650 error 4 in gvfsd-metadata[8048000+b000]
    Nov 18 02:16:37 myhost kernel: gvfsd-metadata[30265]: segfault at 8 ip 0804c9ba sp bf841b60 error 4 in gvfsd-metadata[8048000+b000]
    Nov 18 02:26:09 myhost kernel: gvfsd-metadata[13060]: segfault at 8 ip 0804c9ba sp bf85a740 error 4 in gvfsd-metadata[8048000+b000]
    Nov 18 02:53:58 myhost kernel: gvfsd-metadata[18275]: segfault at 8 ip 0804c9ba sp bff7fea0 error 4 in gvfsd-metadata[8048000+b000]
    Nov 18 02:55:03 myhost kernel: gvfsd-metadata[21812]: segfault at 8 ip 0804c9ba sp bffdb110 error 4 in gvfsd-metadata[8048000+b000]
    Nov 18 03:10:37 myhost NetworkManager: <info> (eth0): supplicant connection state: completed -> disconnected
    Nov 18 03:10:37 myhost NetworkManager: <info> (eth0): supplicant connection state: disconnected -> scanning

    Btw, it only happens if you specify that you want JFrame and JDialog decorated:
    setDefaultLookAndFeelDecorated(true)
    As much as I like the new 1.5 Swing decorations I guess I will have to stick to no decorations under Linux.

  • Problems with 'background' JFrame focus when adding a modal JDialog

    Hi all,
    I'm trying to add a modal JDialog to my JFrame (to be used for data entry), although I'm having issues with the JFrame 'focus'. Basically, at the moment my program launches the JFrame and JDialog (on program load) fine. But then - if I switch to another program (say, my browser) and then I try switching back to my program, it only shows the JDialog and the main JFrame is nowhere to be seen.
    In many ways the functionality I'm looking for is that of Notepad: when you open the Find/Replace box (albeit it isn't modal), you can switch to another program, and then when you switch back to Notepad both the main frame and 'JDialog'-esque box is still showing.
    I've been trying to get this to work for a couple of hours but can't seem to. The closest I have got is to add a WindowFocusListener to my JDialog and I hide it via setVisible(false) once windowLostFocus() is fired (then my plan was to implement a similar functionality in my JFrame class - albeit with windowGainedFocus - to show the JDialog again, i.e. once the user switches back to the program). Unfortunately this doesn't seem to work; I can't seem to get any window or window focus listeners to actually fire any methods, in fact?
    I hope that kind of makes sense lol. In short I'm looking for Notepad CTRL+R esque functionality, albeit with a modal box. As for a 'short' code listing:
    Main.java
    // Not all of these required for the code excerpt of course.
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Component;
    import java.awt.Dimension;
    import java.awt.GraphicsEnvironment;
    import java.awt.Rectangle;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.ComponentAdapter;
    import java.awt.event.ComponentEvent;
    import java.awt.event.FocusEvent;
    import java.awt.event.FocusListener;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import java.awt.event.WindowFocusListener;
    import java.awt.event.WindowListener;
    import java.beans.PropertyChangeEvent;
    import java.beans.PropertyChangeListener;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JSplitPane;
    import javax.swing.UIManager;
    import javax.swing.plaf.basic.BasicSplitPaneDivider;
    import javax.swing.plaf.basic.BasicSplitPaneUI;
    public class Main extends JFrame implements ActionListener, WindowFocusListener, WindowListener, FocusListener {
         static JFrame frame;
         private static int programWidth;
         private static int programHeight;
         private static int minimumProgramWidth = 700;
         private static int minimumProgramHeight = 550;
         public static SetupProject setupProjectDialog;
         public Main() {
              // Setup the overall GUI of the program
         private static void createSetupProjectDialog() {
              // Now open the 'Setup Your Project' dialog box
              // !!! Naturally this wouldn't auto-open on load if the user has already created a project
              setupProjectDialog = new SetupProject( frame, "Create Your Website Project", true );
              // Okay, for this we want it to be (say) 70% of the progamWidth/height, OR *slightly* (-25px) smaller than the minimum size of 700/550
              // Change (base on programWidth/Height) then setLocation
              int currProgramWidth = getProgramWidth();
              int currProgramHeight = getProgramHeight();
              int possibleWidth = (int) (currProgramWidth * 0.7);
              int possibleHeight = (int) (currProgramHeight * 0.7);
              // Set the size and location of the JDialog as needed
              if( (possibleWidth > (minimumProgramWidth-25)) && (possibleHeight > (minimumProgramHeight-25)) ) {
                   setupProjectDialog.setPreferredSize( new Dimension(possibleWidth,possibleHeight) );
                   setupProjectDialog.setLocation( ((currProgramWidth/2)-(possibleWidth/2)), ((currProgramHeight/2)-(possibleHeight/2)) );
               else {
                   setupProjectDialog.setPreferredSize( new Dimension( (minimumProgramWidth-25), (minimumProgramHeight-25)) );
                   setupProjectDialog.setLocation( ((currProgramWidth/2)-((minimumProgramWidth-25)/2)), ((currProgramHeight/2)-((minimumProgramHeight-25)/2)) );
              setupProjectDialog.setResizable(false);
              setupProjectDialog.toFront();
              setupProjectDialog.pack();
              setupProjectDialog.setVisible(true);
         public static void main ( String[] args ) {
              Main frame = new Main();
              frame.pack();
              frame.setVisible(true);
              createSetupProjectDialog();
            // None of these get fired when the Jframe is switched to. I also tried a ComponentListener, but had no joy there either.
         public void windowGainedFocus(WindowEvent e) {
              System.out.println("Gained");
              setupProjectDialog.setVisible(true);
         public void windowLostFocus(WindowEvent e) {
              System.out.println("GainedLost");
         public void windowOpened(WindowEvent e) {
              System.out.println("YAY1!");
         public void windowClosing(WindowEvent e) {
              System.out.println("YAY2!");
         public void windowClosed(WindowEvent e) {
              System.out.println("YAY3!");
         public void windowIconified(WindowEvent e) {
              System.out.println("YAY4!");
         public void windowDeiconified(WindowEvent e) {
              System.out.println("YAY5!");
         public void windowActivated(WindowEvent e) {
              System.out.println("YAY6!");
         public void windowDeactivated(WindowEvent e) {
              System.out.println("YAY7!");
         public void focusGained(FocusEvent e) {
              System.out.println("YAY8!");
         public void focusLost(FocusEvent e) {
              System.out.println("YAY9!");
    SetupProject.java
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.WindowEvent;
    import java.awt.event.WindowFocusListener;
    import java.awt.event.WindowListener;
    import java.io.IOException;
    import java.net.URL;
    import javax.imageio.ImageIO;
    import javax.swing.JDialog;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    public class SetupProject extends JDialog implements ActionListener {
         public SetupProject( final JFrame frame, String title, boolean modal ) {
              // Setup the JDialog
              super( frame, title, modal );
              setDefaultCloseOperation( JDialog.DISPOSE_ON_CLOSE );
              // Bad code. Is only temporary
              add( new JLabel("This is a test.") );
              // !!! TESTING
              addWindowFocusListener( new WindowFocusListener() {
                   public void windowGainedFocus(WindowEvent e) {
                        // Naturally this now doesn't get called after the setVisible(false) call below
                   public void windowLostFocus(WindowEvent e) {
                        System.out.println("Lost");
                        setVisible(false); // Doing this sort of thing since frame.someMethod() always fires a null pointer exception?!
    }Any help would be very much greatly appreciated.
    Thanks!
    Tristan

    Hi,
    Many thanks for the reply. Isn't that what I'm doing with the super() call though?
    As in, in Main.java I'm doing:
    setupProjectDialog = new SetupProject( frame, "Create Your Website Project", true );Then the constructor in SetupProject is:
    public SetupProject( final JFrame frame, String title, boolean modal ) {
              // Setup the JDialog
              super( frame, title, modal );
              And isn't the super call (since the class extends JDialog) essentially like doing new JDialog(frame,title,modal)?
    If not, that would make sense due to the null pointer exception errors I've been getting. Although I did think I'd done it right hence am confused as to the right way to handle this,if so.
    Thanks,
    Tristan
    Edited by: 802573 on 20-Oct-2010 08:27

  • [SOLVED] Gnome - problem with sound

    hi! i have a problem with my eee pc 1000. i have no sound only from my right speaker... here is my amixer result:
    Simple mixer control 'PCM',0
    Capabilities: pvolume
    Playback channels: Front Left - Front Right
    Limits: Playback 0 - 255
    Mono:
    Front Left: Playback 255 [100%] [0.00dB]
    Front Right: Playback 255 [100%] [0.00dB]
    Simple mixer control 'LineOut',0
    Capabilities: pvolume pswitch
    Playback channels: Front Left - Front Right
    Limits: Playback 0 - 64
    Mono:
    Front Left: Playback 64 [100%] [1.00dB] [on]
    Front Right: Playback 64 [100%] [1.00dB] [on]
    Simple mixer control 'Mic Boost',0
    Capabilities: volume
    Playback channels: Front Left - Front Right
    Capture channels: Front Left - Front Right
    Limits: 0 - 3
    Front Left: 0 [0%]
    Front Right: 0 [0%]
    Simple mixer control 'Capture',0
    Capabilities: cvolume cswitch
    Capture channels: Front Left - Front Right
    Limits: Capture 0 - 46
    Front Left: Capture 25 [54%] [8.00dB] [on]
    Front Right: Capture 25 [54%] [8.00dB] [on]
    Simple mixer control 'iSpeaker',0
    Capabilities: pswitch
    Playback channels: Front Left - Front Right
    Mono:
    Front Left: Playback [on]
    Front Right: Playback [on]
    [manolos@arch Desktop]$ cd /
    [manolos@arch /]$ amixer
    Simple mixer control 'PCM',0
    Capabilities: pvolume
    Playback channels: Front Left - Front Right
    Limits: Playback 0 - 255
    Mono:
    Front Left: Playback 255 [100%] [0.00dB]
    Front Right: Playback 255 [100%] [0.00dB]
    Simple mixer control 'LineOut',0
    Capabilities: pvolume pswitch
    Playback channels: Front Left - Front Right
    Limits: Playback 0 - 64
    Mono:
    Front Left: Playback 64 [100%] [1.00dB] [on]
    Front Right: Playback 64 [100%] [1.00dB] [on]
    Simple mixer control 'Mic Boost',0
    Capabilities: volume
    Playback channels: Front Left - Front Right
    Capture channels: Front Left - Front Right
    Limits: 0 - 3
    Front Left: 0 [0%]
    Front Right: 0 [0%]
    Simple mixer control 'Capture',0
    Capabilities: cvolume cswitch
    Capture channels: Front Left - Front Right
    Limits: Capture 0 - 46
    Front Left: Capture 25 [54%] [8.00dB] [on]
    Front Right: Capture 25 [54%] [8.00dB] [on]
    Simple mixer control 'iSpeaker',0
    Capabilities: pswitch
    Playback channels: Front Left - Front Right
    Mono:
    Front Left: Playback [on]
    Front Right: Playback [on]
    [manolos@arch /]$ clear
    [manolos@arch /]$ amixer
    Simple mixer control 'PCM',0
    Capabilities: pvolume
    Playback channels: Front Left - Front Right
    Limits: Playback 0 - 255
    Mono:
    Front Left: Playback 255 [100%] [0.00dB]
    Front Right: Playback 255 [100%] [0.00dB]
    Simple mixer control 'LineOut',0
    Capabilities: pvolume pswitch
    Playback channels: Front Left - Front Right
    Limits: Playback 0 - 64
    Mono:
    Front Left: Playback 64 [100%] [1.00dB] [on]
    Front Right: Playback 64 [100%] [1.00dB] [on]
    Simple mixer control 'Mic Boost',0
    Capabilities: volume
    Playback channels: Front Left - Front Right
    Capture channels: Front Left - Front Right
    Limits: 0 - 3
    Front Left: 0 [0%]
    Front Right: 0 [0%]
    Simple mixer control 'Capture',0
    Capabilities: cvolume cswitch
    Capture channels: Front Left - Front Right
    Limits: Capture 0 - 46
    Front Left: Capture 25 [54%] [8.00dB] [on]
    Front Right: Capture 25 [54%] [8.00dB] [on]
    Simple mixer control 'iSpeaker',0
    Capabilities: pswitch
    Playback channels: Front Left - Front Right
    Mono:
    Front Left: Playback [on]
    Front Right: Playback [on]
    i have sound from both speaker in headset... its weird.
    please tell me what setting is wrong! thanks for your time
    problem solved! I dont know how...
    Last edited by manolos (2009-06-11 13:40:08)

    Just tryed playing a wav with aplay and it didn't give me any errors, but I didn't hear anything if that helps anymore. Running a amixer set MASTER 70% unmute also gives me the unable to find simple control 'MASTER',0 error too, though I can change the volume fine with alsamixer so I'm not sure why that is. The correct module is loaded (snd-hda-intel). Otherwise I'm at a complete loss.
    edit: amixer set MASTER 70% gives me the same error on an ubuntu livecd where sound does work so that seems normal. I don't know what changed, but I can now open the volume control so the gstreamer error goes away, however I still can't get any sound, be it with aplay or something else. I'm starting to think the solution may be to pass on arch and move to something better.
    Last edited by kryptobs2000 (2010-07-10 16:37:47)

  • Linux install problems with Web Dev Pack 1.1

    Any one else having problems installing Web Services Dev Pack 1.1 for Linux that was released on 2/25 ? It gets about 55% finished in the install and then it complains about moving certain jaxp files to $JAVA_HOME/jre/lib/endorsed dir. I do put the files in the endorsed dir but the install does not continue. It also fails when starting over reporting the same issue.
    Thanks for any help and work arounds.
    eugene

    I am having the same problem installing on Red Hat 8.0....
    I receive a message like the following
    <PRE>
    Java(TM) Web Services Developer Pack 1.1 will be installed in the following
    location:
    /usr/java/jwsdp-1.1
    with the following features:
    JAXB Version 1.0 (Java Architecture for XML Binding)
    JAXM Version 1.1.1 (Java API for XML Messaging)
    JAXP Version 1.2.2 (Java API for XML Processing)
    JAXR Version 1.0_03 (Java API for XML Registries)
    JAX-RPC Version 1.0.3 (Java API for XML-based RPC)
    SAAJ Version 1.1.1 (SOAP with Attachments API for Java)
    JSTL Version 1.0.3 (JavaServer Pages(TM) Standard Tag Library)
    Java WSDP Registry Server Version 1.0_04
    Tomcat
    for a total size:
    67.7MB
    Press 1 for Next panel, 2 for Previous panel, 3 to Cancel or 4 to
    Redisplay [1] 1
    Installing Java(TM) Web Services Developer Pack 1.1... Please wait.
    Errors occurred during the installation.
    Press 1 for Next panel, 2 for Previous panel, 3 to Cancel or 4 to
    Redisplay [1] 1
    </PRE>
    then in the install directory, there is a file....log.txt containing:
    <PRE>
    (Mar 5, 2003 9:19:14 AM), Setup.product.install, com.installshield.product.service.product.PureJavaProductServiceImpl$Installer, err, ServiceException: (error code = 315; message = ""; severity = 0)
    STACK_TRACE: 24
    ServiceException: (error code = 315; message = ""; severity = 0)
         at com.ibm.wizard.platform.linux.LinuxRegistryServiceImpl.getPackageInfo(LinuxRegistryServiceImpl.java:221)
         at com.ibm.wizard.platform.linux.LinuxRegistryServiceImpl.getSoftwareObject(LinuxRegistryServiceImpl.java:142)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.installshield.wizard.service.LocalImplementorProxy.invoke(LocalImplementorProxy.java:52)
         at com.installshield.wizard.service.AbstractService.invokeImpl(AbstractService.java:51)
         at com.installshield.product.service.registry.GenericRegistryService.getSoftwareObject(GenericRegistryService.java:120)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.setSoftwareObject(PureJavaProductServiceImpl.java:1582)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.access$14(PureJavaProductServiceImpl.java:1578)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.addToVPD(PureJavaProductServiceImpl.java:4662)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.checkInstalledVersion(PureJavaProductServiceImpl.java:4632)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitSoftwareObject(InstallableObjectVisitor.java:252)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitProductBean(InstallableObjectVisitor.java:171)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitSoftwareObject(InstallableObjectVisitor.java:208)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitProductBean(InstallableObjectVisitor.java:171)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitProductBeans(InstallableObjectVisitor.java:122)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.install(PureJavaProductServiceImpl.java:4355)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$Installer.execute(PureJavaProductServiceImpl.java:3590)
         at com.installshield.wizard.service.AsynchronousOperation.run(AsynchronousOperation.java:40)
         at java.lang.Thread.run(Thread.java:536)
    </PRE>

  • Problem with refreshing JFrames and JDialogs

    My program is based on few JDialogs and one JFrame. I'm still changing them, one time one of the JDialogs is visible, other time JFrame. During this change I call dispose() for one window or frame and I create (if it wasn't created before) other component and call setVisible(true) for it. Problem is that sometimes (only sometimes! like 5% of calls) my windows appears but they are not refreshing (not showing new objects added to their lists or sth like that) until I resize my window by dragging mouse on the edge of it. Is there anyway to ensure that window will be displayed properly?

    I ran into this problem about a year ago...so I don't really remember but I think a call to validate(), or paint() or repaint() or something like that should do the trick (forgive me for not knowing the exact one but as I said it has been a while). Its been about that year since I stopped coding in java and moved to c#. You want the window to redraw its self what ever that is.

  • Interlace problems with moving objects using iDVD

    I had an MP4 file (created by a 3rd party) from a Hi-8 analog tape which has some interlace artifacts on moving images (left image of boy) but not too bad. When the MP4 files was imported into iMovie 11 the interlace artifacts smoothed somewhat - that was OK (right image of boy). The camera was still and the boy was moving.  Vertical lines on stationary objects are OK in all images. These are screen captures from the Mac of the mp4 played through quicktime and the same file imported into iMovie 11 and played.  I paused both to take the screen capture.
    The completed project in iMovie 11 looked OK when previewed prior to rendering. These are 20 year old videos so my expections were being met.   I rendered the project with iDVD to the hard drive first and then to a DVD with the same poor imaging result on the moving object.  I am using a new Macbook Pro I bought in early January which came with iMovie 11 and iDVD  Ver 7.1.2 (1158). Running Mac OS X 10.7.3  Macbook Pro  2.3 Ghz Corei7   8GB 1333 Mhz DDR3.
    I couldn't screen capture from the MAC DVD player screen to illustrate the poor result (got a checkerboard screen) so I took a photo of the screen and imported that (below).  The moving boy on the left is from an  iMovie 11 screen capture, the image on the right is the moving boy from the rendered DVD I paused on the Mac (and took a pic of).
    Below a close up of the poorly rendered moving boy viewed on the resultant DVD.  This translates into a horrible rendition of any quick moving object.  It happens with any moving image - i.e. a pan across a room with straight vertical lines like edges of a wall will show as serrated and poorly rendered edge. I used a trial version of the Daniusoft DVD creator with the same result!  I am at a loss on how to resolve this issue.  Any thoughts out there??
    I had previously used Pinnacle Studios on my old XP PC which worked great on other tape's Mpeg files and created great DVD's (never had an interlace problem) ... until my computer died .....  so I figured Apple and associated software should be at least equal if not a superior product.   Now I'm not too sure!

    I had an MP4 file (created by a 3rd party) from a Hi-8 analog tape which has some interlace artifacts on moving images (left image of boy) but not too bad. When the MP4 files was imported into iMovie 11 the interlace artifacts smoothed somewhat - that was OK (right image of boy). The camera was still and the boy was moving.  Vertical lines on stationary objects are OK in all images. These are screen captures from the Mac of the mp4 played through quicktime and the same file imported into iMovie 11 and played.  I paused both to take the screen capture.
    The completed project in iMovie 11 looked OK when previewed prior to rendering. These are 20 year old videos so my expections were being met.   I rendered the project with iDVD to the hard drive first and then to a DVD with the same poor imaging result on the moving object.  I am using a new Macbook Pro I bought in early January which came with iMovie 11 and iDVD  Ver 7.1.2 (1158). Running Mac OS X 10.7.3  Macbook Pro  2.3 Ghz Corei7   8GB 1333 Mhz DDR3.
    I couldn't screen capture from the MAC DVD player screen to illustrate the poor result (got a checkerboard screen) so I took a photo of the screen and imported that (below).  The moving boy on the left is from an  iMovie 11 screen capture, the image on the right is the moving boy from the rendered DVD I paused on the Mac (and took a pic of).
    Below a close up of the poorly rendered moving boy viewed on the resultant DVD.  This translates into a horrible rendition of any quick moving object.  It happens with any moving image - i.e. a pan across a room with straight vertical lines like edges of a wall will show as serrated and poorly rendered edge. I used a trial version of the Daniusoft DVD creator with the same result!  I am at a loss on how to resolve this issue.  Any thoughts out there??
    I had previously used Pinnacle Studios on my old XP PC which worked great on other tape's Mpeg files and created great DVD's (never had an interlace problem) ... until my computer died .....  so I figured Apple and associated software should be at least equal if not a superior product.   Now I'm not too sure!

  • PROBLEM WITH MOVING AVERAGE PRICE

    Hi,
    Correct me if I’m wrong, but from what I know the moving average price should only change or be recalculated when purchases or goods_recipts are made, otherwise items should be consumed at a FIXED moving average price (cost). 
    I´ve noticed when looking into the Inventory Audit Report that the moving average price is changing in my installations and I see that SAP BO recalculates it every time an issue is made. This last thing only happens when the total amount of the transaction is rounded or left with 0 decimals and the other types such as prices, rates, quantities, percent, etc. are left with 2 or 3 decimals.
    Because of my country settings, the total amount has to have 0 decimals (I live in Chile and we don’t have cents in our currency) and the moving average price of an Item should not change when an issue is made, can you help me with this?
    Thanks and best regards to you all.
    Fernando

    Hi Nagesh,
    Thank you for your quick response.
    I understand what you say, but moving average price should not change when an issue is made and that´s what is bothering us.
    The difference between what it shoud be and what SAP BO is calculating is our concern, ie: let´s say the number of transactions is 100, would that difference be negligible?
    Here is an example:
    Goods issue:
    SO 8     11     -10,49     166,67     -1.748     99,35     16.559
    SO 9     11     -10,49     166,673     -1.748     88,86     14.811
    SO 10     11     -10,49     166,678     -1.748     78,37     13.063
    SO 11     11     -10,48     166,684     -1.747     67,89     11.316
    SO 12     11     -10,56     166,681     -1.760     57,33     9.556
    Note that coma (,) is decimal separation and period (.) is the mile separator.
    Where the 3rd line is the quantity of the goods issue, the 4th is the moving average, and the 5th is the total quantity of the issue.
    So you see 10,49 x 1748 = 1748,39977= 1748(SAP) and then SAP BO recalculates the AVG. Price.
    The problem I was talking about was the difference of the stock AVG Price with one hundred transactions or so... now the difference seems negligible (166,7 - 166,681 = 0,011).
    Can you see it changes?, is that a bug?
    Thank you
    Fernando

  • HT4527 Help please!! problems with moving to new computer

    Hi,
    I've been trying to transfer my i Tunes library to my new computer and have run into problems. I've followed the directions in the article on the apple website HT4527 using the external hard drive method of transfer, and although this has successfully moved all my music I seem to have lost all my playlists. Also my new computer doesn't recognise my iPod or i Phone anymore.
    My old computer was running windows XP but I did have the latest version of i Tunes. My new computer is running Windows 7.
    Where did I go wrong?
    AAArgh

    I suspect you only copied the media folder, instead of copying the main iTunes folder. Playlists, ratings, play counts etc. are all stored in the iTunes Library.itl file that is the core of your library. Migrate the whole library properly and everything ends up on the new system. This is my suggested process.
    Backup the library with this User Tip.
    Restore the backup to your new computer using the same tool used to back it up.
    Deauthorize the old computer if you no longer want to access protected content on it.
    Keep your backup up-to-date in future.
    tt2

  • Noise problem with moving bitmaps

    I'm having trouble with the most recent Flash player
    (9,0,45,0). When
    displaying moving bitmaps, the player sometimes shows
    horizontal noise
    lines across the image. This doesn't happen on all platforms,
    but it
    does happen on my customers', so I've got to figure it out.
    It happens in the OS X Flash 9.0 IDE, but not on the same
    machine within
    a browser. It happens on some Windows machines, but not
    others. It only
    happens with bitmaps; if I trace the bitmap into shapes then
    the problem
    goes away (no, that's not an option for my application). The
    format of
    the imported bitmap doesn't matter, nor does whether it is
    being moved
    with a motion tween or ActionScript. Updating to the latest
    Flash player
    reduced the effect for my customer, but not completely.
    I've made a web page that has the live applet (so you can see
    if it
    happens on your system), the applet source, and a screen shot
    of the
    noise effect (when played within the Flash 9.0 IDE). Note
    that it took
    me about fifty tries to get that screen shot, but while the
    applet is
    running the noise is quite easy to see since it's so sharp.
    You can find
    the page here:
    <
    http://www.suitable.com/temp/ScratchTest/>
    Any and all suggestions welcome.
    Thanks,
    Dan
    Daniel T. Griscom [email protected]
    Suitable Systems
    http://www.suitable.com/
    1 Centre Street, Suite 204 (781) 665-0053
    Wakefield, MA 01880-2400

    In article <f2chss$g92$[email protected]>,
    "Rothrock" <[email protected]> wrote:
    > I'm seeing it in some of my projects as well. I seem to
    recall that when
    > previous versions of Flash came out there was a similar
    problem and then it
    > went away quietly. Of course I could just be losing my
    mind?
    Excellent!!! (Well, not excellent that the problem exists,
    nor that
    you're inflicted by it, but that it's at least duplicatable.
    It gives me
    hope that it will be fixed.)
    > I'm not even drawing the BitmapData to screen ? this is
    using CS3,
    > publishing for Flash 8 and AS2, but played back in the 9
    player.
    I'm not even using a BitmapData; I'm just moving a Bitmap
    asset across
    the stage. No ActionScript involved.
    It's clear to me that this is a Macromedia/Adobe bug. I've
    posted a
    report on the Adobe Feature Request/Bug Report form at
    <
    http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform>.
    Please:
    everyone who is experiencing this problem do the same.
    Daniel T. Griscom [email protected]
    Suitable Systems
    http://www.suitable.com/
    1 Centre Street, Suite 204 (781) 665-0053
    Wakefield, MA 01880-2400

  • Linux font problem with LabVIEW 7 Express

    Is there a change in how LabVIEW 7 Express for Linux
    uses fonts? When I run LabVIEW 6.1 (on the same
    machine) the standard font (10pt Application) looks
    very nice (in menus, front panel and diagram). With
    LabVIEW 7 they are not so good to read. What can I do?
    Thanks in advance,
    Armin Herzer

    Hello Evan,
    Sorry for the late replay, but I was on holiday last week.
    I am using Debian GNU/Linux woody 3.0 (testing). The video driver is the one which is shipped with XFree86 in this Debian installation. I also used the newest video driver from NVidia but the problem is the same (btw. is this a NVidia problem? Unfortunally I can only test on machines with NVidia cards). I attached a screenshot to visualize the problem.
    The problem is not VI specific. All text (menus, comments and so on) have this ugly font.
    Thanks in advance,
    Armin Herzer
    FH Ravensburg-Weingarten
    University of Applied Sciences
    Attachments:
    lv6170.png ‏15 KB

  • Problem with moving objects after adding to stage

    Hi,
    I am a student using an educational licence version of Flash
    MX, obtained through my university, as a prototyping tool. All has
    been well until last night, when I found I could not reposition
    anything on the stage. I am something of a novice with Flash Mx and
    have been unable to find out what is causing the problem. I suspect
    I have inadvertantly used a control key combination to change a
    particular setting. The problem first manifested itself when I
    added a combo box from the components panel to the stage and it
    located itself in the top left hand corner and then refused to be
    moved!
    Any ideas gratefully accepted.

    This problem has now been resolved.

  • Problem with moving folders in LR3.0

    Having a problem moving images from Folder A to Folder B, When I highlight 6 photos and attempt to drag and drop all are moved EXCEPT the first photo in the group, then a white box pops us something like unable to move photo #1234. Close the shite box by clicking OK, then do the drag and drop with this same image it works. Is this a bug in LR 3, any other users experience this? Suggestions?
    Thanks, Cynthia

    Cynthia444 wrote:
    I have wanted to wait until it's a final upgrade.
    Cynthia,
    Why don't you do so and just drag this one remaining image a second time in the meantime.
    Beat Gossweiler
    Switzerland

  • Jdk 1.5.0_04 and Eclipse with SuSE Linux - startup problems with Eclipse

    Hi,
    I have SuSE Linux 9.3 and just downloaded Jdk 1.5.0_04 and Eclipse IDE 3.1 for Linux.
    I have sucessfully installed Java in the following directory under Linux:
    '/usr/java/jdk1.5.0_04'
    And I also have downloaded Eclipse IDE 3.1 for Linux. I have unzipped it into the following directory:
    '/home/juergenkemeter/bin/eclipse/eclipse
    I have chosen the upper Java JRE in the Eclipse preferences.
    Now to my problem:
    Sometimes it happens that when I startup Eclipse or try to runa java program, Eclipse is shut down with a) no comment at all, or b) with an error message "JVM terminated. Exit code = 1 (...)". I can send the picture of the whole screenshot of the error message if it helps.
    Now I think that this is due to wrong installation paths of the Jdk and Eclipse?! Perhaps there are some conflicts regarding user rights (admin and the normal user 'juergenkemeter'.
    If anyone has suggestions, that would be helpful. Its nasty when Eclipse shuts down while programming...
    cheers,
    J�rgen

    I only used the getSystemResource because it is slightly more convenient. The
    getResource version requires a "/" in front of the filename, as in:
    java.net.URL imageURL = getClass().getResource("/" + imageName);
    System.out.println("Loading icon: " + imageName);
    for (int i = 0; i < 32000; i++)
    System.out.println(i);
    icon = new ImageIcon(imageURL);
    Unfortunately, this still deadlocks after a few thousand hits.
    Of course, I don't need thousands of icons in my application, but the real-world issue is that the program locks up every few times it is started, which is a real drag for the customers!
    I suppose the InputStream way would work, though it is not very elegant compared to loading the resource in the usual manner. I'll try it if there are no other suggestions.
    Thanks,
    Dan

Maybe you are looking for

  • Backup disc too small?

    I recently purchased a new MacBook Pro and used a Time Machine backup to transfer all the files from my old MacBook Pro to the new one. Now, I am trying to set up Time Machine on the new laptop with the same external hard drive I was using a Time Mac

  • Boot Problem Mavericks

    Whenever I reboot my MacBook Pro it holds for sometime on gray screen and then gives a message on black screen that no bootable medium found. But if I press option button on startup it gives me option to boot from MAC OS and then successfully boots.

  • Can anyone explain how to create this effect in Deamweaver and Fireworks?

    This site was oriinally done in dreamweaver - but the shadow effect was done outside of Dreamweaver. When I save to html and load into Dreamweaver it makes no sense to me. Can anyone explain how to create this effect in Deamweaver and Fireworks? http

  • Studying "programming in AS3" questions

    Hi, Looking at the code below, I presume KeyCode and ENTER are both values (or should I say property?) of the Keyboard class.   Bear with me, I'm new at learning AS3.  So far, I find it easier than learning Flash itself, but still I want to make sure

  • No sound out of left on speakers

    There is no sound out of the left on speakers on my iPhone 4s. I didn't upgrade to IOs 6. It's still IOs 5.1.1 When using earbud it works L & R. I made sure Mono Audio is Off and the slider is centered betweel L & R. Maybe a problem on left speaker?