QuickTime Zooming Issue

When I play a video in quicktime, the video seems to bee zoomed in to the top left hand corner. I am not seeing all of the video. How do I fix this?

Apple Discussions!
"I am running 44.1"
Change the Audio Output setting to 44100.0 Hz.
http://docs.info.apple.com/article.html?artnum=300832 Mac OS X: No audio from certain multimedia content
Trick/Tip: Open up GarageBand if installed then, open a program (optional).
Quit out of the GarageBand app.
Have you tried repairing permissions & restarting?

Similar Messages

  • IOS Wallpaper Scale/Zoom Issue Returns in iOS 7.1

    Is anyone experiencing the photo zoom/scale for wallpaper issue again where they cannot fit scale down the photo subjects to fit into the iPad's frame?
    This used to be fixed by turning off the Parallax effect via Settings > General > Accessibility > Reduce Motion ON
    However, it seems like Apple has broken it again.
    Can anyone else confirm this? I just tried changing wallpaper on iOS 7.1 and cannot get the photo to fit as if I was looking at it from the Photos App.

    Nope, it's broken for me.   Images with resolutions much larger than the iPads native resolution won't scale down.  You can easily scale up, just not down.  It's very aggravating that this remains an issue in 7.1
    And, I'm sick of hearing people say it's working when it doesn't.  It's not just my device.  I've confirmed it on numerous devices new and old, iPhone and iPad.    Not being able to scale an image down when you could prior to iOS7 is not "better".   Losing capability is not "better". 

  • Zoom issues in IOS 8

    I am having the same issue with the zoom, once I triple tap to activate zoom works fine for a bit then the whole OS seems to lock up, at which point I have to restart the iPad and then triple to to turn zoom off, by the way this happens on both the iPad and iPhone, this issues really needs to be fixed.
    Now with the other issues of the zoom going from full screen back into windows mode, I think I found a work around.  I Noticed this issue several months back I would go into settings and change it to full screen mode and at some point it would go back into window mode, when I checked in setting it was still set to full screen so I would uncheck it then recheck it want back into full screen mode for a bit and would go the same.  Then I noticed it only happened when the keyboard was called it would window the screen and keep the keyboard at normal size when I finished with the keyboard zoom stayed in window mode, this in my opinion is a bug so this is how I fixed this issue for anyone who is having the problem.
    1 Go to settings-General
    2 Go to accessibility
    3 Go to Zoom
    4 turn on Follow Focus
    5 Turn on Zoom Keyboard
    This should take care of that issue, I do not like the keyboard being on zoom but that is the only way for now to keep zoom in full screen.  Once I did this it has never gone into Window Mode again.  What I do is zoom when I want to see something and triple tap out of zoom to use the keyboard.
    This is my issue with Apple again IOS 8 seems half baked, I expect bugs in any OS that is the nature of the beast, but issues like lockups and things going in and out of modes seem to be nothing more than laziness on Apple's part. 

    Use iTunes to restore your iOS device to factory settings

  • Zoom issue when using selection tool in Photoshop CS5

    Hi, i have a macbook pro with a multi touch trackpad. For some reason when i'm using the selection tool and i try zooming in or out using the multi touch track pad nothing happens or sometimes it takes forever for anything to take place. Other times, i have to resort to using the keypad to zoom in or out.
    what could be causing this issue as it is really slowing me down

    Hi - thanks for your comments. It was happening on all of the selection tools however I have solved the problem by changing the 'Advanced Graphics Processor Setting' to 'Basic' in Photoshop CC.
    Thanks anyway

  • Links don't work zoomed, issue not solved?

    I've been waiting for months on this issue;
    when zoomed, zoomed to anything, links don't work in Safari.
    I was told months ago, something is wrong with Safari toolkit.
    I just updated and issue remains.
    (just amazing)
    <Edited by Host>

    HI,
    Try maintenance... the link works perfect here; Safari 4.0.5 SL 10.6.2
    From the Safari Menu Bar, click Safari / Empty Cache. When you are done with that...
    From the Safari Menu Bar, click Safari / Reset Safari. Select the top 5 buttons and click Reset.
    Go here for trouble shooting *3rd party plugins or input managers* which might be causing the problem. Safari: Add-ons may cause Safari to unexpectedly quit or have performance issues
    Since you are running Snow Leopard, *make sure Safari is opening in 32-bit mode, not 64.* Right or control click the Safari icon in the Applications folder, then click: Get Info In the Get Info window click the black disclosure triangle next to General so it faces down. Select 32 bit mode. Also, (in that same window) *make sure Safari is NOT running in Rosetta.*
    

Web pages now include a small icon or 'favicon' which is visible in the address bar and next to bookmarks. These icons take up disk space and slow Safari down. It is possible to erase the icons from your computer and start fresh. *To delete Safari's icon cache using the Finder, open your user folder, navigate to ~/Library/Safari/ and move this file "webpageIcons.db to the Trash.*
    bpageIcons.db to the Trash.*
    Carolyn

  • Zoom Issues with JScrollPane

    Hello all,
    I have ran into an issue with zoom functionality on a JScrollPane.
    Here is the situation (code to follow):
    I have a JFrame with a JDesktopPane as the contentpane. Then I have a JScrollPane with a JPanel inside. On this JPanel are three rectangles. When they are clicked on, they will open up a JInternalFrame with their name (rect1, rect2, or rect3) as the title bar. Rect3 is positioned (2000,2000).
    I have attached a mousewheel listener to the JPanel so I can zoom in and out.
    I have also attached a mouse listener so I can detect the mouse clicks for the rectangles. I also do a transformation on the point so I can be use it during clicks while the panel is zoomed.
    All of this works fantastic. The only issue I am having is that when the JScrollPane scroll bars change, I cannot select any of the rectangles.
    I will give a step by step reproduction to be used with the code:
    1.) Upon loading you will see two rectangles. Click the far right one. You'll see a window appear. Good. Move it to the far right side.
    2.) Zoom in with your mouse wheel (push it towards you) until you cannot zoom anymore (May have to get focus back on the panel). You should see three rectangles. Click on the newly shown rectangle. Another window, titled rect3 should appear. Close both windows.
    3.) This is where things get alittle tricky. Sometimes it works as intended, other times it doesn't. But do something to this affect: Scroll to the right so that only the third rectangle is showing. Try to click on it. If a window does not appear - that is the problem. But if a window does appear, close it out and try to click on the 3rd rect again. Most times, it will not display another window for me. I have to zoom out one step and back in. Then the window will appear.
    After playing around with it for awhile, I first thought it may be a focus issue...I've put some code in the internal window listeners so the JPanel/JScrollPane can grab the focus upon window closing, but it still does not work. So, either the AffineTransform and/or point conversion could be the problem with the scroll bars? It only happens when the scroll bar has been moved. What affect would this have on the AffineTransform and/or point conversion?
    Any help would be great.
    Here is the code, it consists of two files:
    import java.awt.Color;
    import java.awt.Dimension;
    import javax.swing.BorderFactory;
    import javax.swing.JDesktopPane;
    import javax.swing.JFrame;
    import javax.swing.JScrollPane;
    public class InternalFrameAffineTransformIssue
         public static void main ( String[] args )
              JFrame frame = new JFrame("AffineTransform Scroll Issue");
              frame.setLayout(null);
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              JDesktopPane desktop = new JDesktopPane();
              frame.setContentPane(desktop);
              MyJPanel panel = new MyJPanel(frame);
              JScrollPane myScrollPane = new JScrollPane(panel);
              panel.setScrollPane(myScrollPane);
              myScrollPane.setLocation(0, 0);
              myScrollPane.setSize(new Dimension(800, 800));
              myScrollPane.getVerticalScrollBar().setUnitIncrement(50);
              myScrollPane.getHorizontalScrollBar().setUnitIncrement(50);
              myScrollPane.setViewportBorder(BorderFactory.createLineBorder(Color.black));
              frame.getContentPane().add(myScrollPane);
              frame.setBounds(0, 100, 900, 900);
              frame.setVisible(true);
    import java.awt.Dimension;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.Rectangle;
    import java.awt.event.MouseAdapter;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseListener;
    import java.awt.event.MouseWheelEvent;
    import java.awt.event.MouseWheelListener;
    import java.awt.geom.AffineTransform;
    import java.awt.geom.NoninvertibleTransformException;
    import java.awt.geom.Point2D;
    import javax.swing.JFrame;
    import javax.swing.JInternalFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.event.InternalFrameAdapter;
    import javax.swing.event.InternalFrameEvent;
    import javax.swing.event.InternalFrameListener;
    public class MyJPanel extends JPanel implements MouseWheelListener
              double zoom = 1;
              Rectangle rect1 = new Rectangle(50, 50, 20, 20);
              Rectangle rect2 = new Rectangle(100, 50, 20, 20);
              Rectangle rect3 = new Rectangle(2000, 2000, 20, 20);
              AffineTransform zoomedAffineTransform;
              JFrame frame;
              JPanel myPanel = this;
              JScrollPane myScrollPane;
              public MyJPanel(JFrame inputFrame)
                   setAutoscrolls(true);
                   addMouseListener(new MouseAdapter(){
                        public void mousePressed ( MouseEvent e )
                             System.out.println("Clicked: " + e.getPoint());
                             AffineTransform affineTransform = zoomedAffineTransform;
                             Point2D transformedPoint = e.getPoint();
                             //Do the transform if it is not null
                             if(affineTransform != null)
                                  try
                                       transformedPoint = affineTransform.inverseTransform(transformedPoint, null);
                                  catch (NoninvertibleTransformException ex)
                                       ex.printStackTrace();
                             System.out.println("Tranformed Point: " + transformedPoint);
                             if(rect1.contains(transformedPoint))
                                  System.out.println("You clicked on rect1.");
                                  createInternalFrame("Rect1");
                             if(rect2.contains(transformedPoint))
                                  System.out.println("You clicked on rect2.");
                                  createInternalFrame("Rect2");
                             if(rect3.contains(transformedPoint))
                                  System.out.println("You clicked on rect3.");
                                  createInternalFrame("Rect3");
                   addMouseWheelListener(this);
                   frame = inputFrame;
                   setPreferredSize(new Dimension(4000, 4000));
                   setLocation(0, 0);
              public void paintComponent ( Graphics g )
                   super.paintComponent(g);
                   Graphics2D g2d = (Graphics2D) g;
                   g2d.scale(zoom, zoom);
                   zoomedAffineTransform = g2d.getTransform();
                   g2d.draw(rect1);
                   g2d.draw(rect2);
                   g2d.draw(rect3);
              public void mouseWheelMoved ( MouseWheelEvent e )
                   System.out.println("Mouse wheel is moving.");
                   if(e.getWheelRotation() == 1)
                        zoom -= 0.05;
                        if(zoom <= 0.20)
                             zoom = 0.20;
                   else if(e.getWheelRotation() == -1)
                        zoom += 0.05;
                        if(zoom >= 1)
                             zoom = 1;
                   repaint();
              public void createInternalFrame ( String name )
                   JInternalFrame internalFrame = new JInternalFrame(name, true, true, true, true);
                   internalFrame.setBounds(10, 10, 300, 300);
                   internalFrame.setVisible(true);
                   internalFrame.addInternalFrameListener(new InternalFrameAdapter(){
                        public void internalFrameClosed ( InternalFrameEvent arg0 )
                             //myPanel.grabFocus();
                             myScrollPane.grabFocus();
                        public void internalFrameClosing ( InternalFrameEvent arg0 )
                             //myPanel.grabFocus();
                             myScrollPane.grabFocus();
                   frame.getContentPane().add(internalFrame, 0);
              public void setScrollPane ( JScrollPane myScrollPane )
                   this.myScrollPane = myScrollPane;
         }

    What I'm noticing is your zoomedAffineTransform is changing when you click to close the internal frame. This ends up being passed down the line, thus mucking up your clicks until you do something to reset it (like zoom in and out).
    Clicking on the JInternalFrame appears to add a translate to the g2d transform. This translation is what's throwing everything off. So in the paintComponent where you set the zoomedAffineTransform, you can verify if the transform has a translation before storing the reference:
             if (g2d.getTransform().getTranslateX() == 0.0) {
                zoomedAffineTransform = g2d.getTransform();
             }Edited by: jboeing on Oct 2, 2009 8:23 AM

  • Quicktime Plugin Issue in Safari on Mac OSX Lion.

    (Strange) Safari - Quicktime - issue on Mac OSX Lion (All Updates done - 20/11/2011)
    Strange issue with Safari - Quicktime video playing - on Mac OSX Lion (All updates done till 20th Nov 2011 night)
    Problem discovery: Tried to view the Apple iPhone 4S Keynote on Apple Website. Strange that Safari does not display any videos from Apple Website.
    Following works OK:- You Tube worked fine.
    - Google Chrome worked fine. (It shows the quick time player loading and then displays the video absolutely fine.)
    Conclusion: There is some problem with Safari Quicktime Plug-in.
    Strange Discovery:
    - There are two users on the MAC. Logged in with a general user (Non Admin)
    - When tried to view Apple Videos on Safary ... THEY WORKED FINE !!! 
    - The user where they donot work is an ADMIN User ... Strange !!!
    System:
    - Mac-Mini 2010 - 8 GB RAM - with OSX Lion fully software updated until 20th Nov 2011 night.
    - DIVX is installed and is also a paid version - registered with DIVX website.
    - VLC is installed.
    - Perian was installed - after problem discovery - uninstalled it - no use.
    Please help with a solution if anyone has faced and solved this problem. Sub question is : If DIVX / anyother plug-in causes problems with QuickTime plugin on Safari, why does it affect only one user on the system and not other users on that system ?
    Notes:
    1) There is a similar looking thread on MacRumors here but concluded that required to start a seperate one with clear problem statement.
    2) Apple Forums
    (a) One thread on topic that hints that some 3IVX plug-in can cause issues with Safari Quicktime Plugin: here
    (b) Another thread from Apple Forum, that hints that DIVX causes problems to Safari Quicktime Plug in, Link is Here

    Refer to a thread on Apple Discussions Forum itself, Link is HERE; refer to the posting by "Charles Cole",
    Charles Cole
    Re: Does anyone recommend OS X Lion?
    Aug 2, 2011 8:09 PM (in response to Landrix)
    Charles writes about DIVX and QuickTime Plugin conflict in Safari:
    One thing I've discovered that might help anyone having a Quicktime Plug-in issue. If you have DivX as a codec on your system (usually installed to play .avi files) you'll want to uninstall it so that Sarfari 5.1 will default to the Quicktime Plug-In and not the DivX plug-in. Otherwise, you can't see Quicktime movies in Safari.
    Note: this post is about and at the time of OSX Lions launch, i.e. 10.7.0.
    Now we have 10.7.2, still cannot believe Apple has not fixed this bug !!!

  • Keynote 09 exporting to QuickTime playback issue

    Hello,
    I am looking for some amazing expertise and really appreciate any help and guidance.
    I've exported a presentation from Keynote 09 to Quicktime and have an issue. When I try to play the presentation in QT X, I click to advance from slide 1 to 2 and it works perfect, but then when I click to advance to slide 3 it returns me to the start of slide 1 every time. Meanwhile when I use the spacebar/quickview without opening QT the entire presentation plays perfectly.
    When I look at the QT file on a PC (using a thumb drive or a CD) QT 7 the file plays correctly in my testing. I have heard from others who these CDs were provided to that some may have had a similar issue, but I can not verify.
    Please let me know any additional information I can supply. Can anyone help me understand this issue better and possibly help me correct it? Is this a known issue, or a simple user error?
    Many thanks,
    Michael

    Thanks Dani and Glad...
    As an update on my side:
    I called in to Apple to try and find out if I jump up to Final Cut Studio (with a bit of a learning curve), if I would be able to replicate exactly the (slideshow) video I made easily in Keynote, hopefully avoiding this issue with the assumption that it is specifically related to Keynote.
    Prior to getting on the line with a Final Cut expert, I did fully explain why I was calling with the hope of getting a solution for this issue as I would like to keep Keynote in my arsenal, especially since I am semi-fluent in it.
    The person helping was very nice and asked to put me on hold for 3-5 minutes, which I am perfectly happy to wait for complete and accurate information. The solution I was presented with was as follows:
    1) Go to export to QT as usual.
    2) Click the second drop down (Formats) and select 'Custom...'.
    3) A new window will pop up, click the 'Settings...' button.
    My 'Compression Type' drop down was set to 'H.264'....I was told to
    4) Change the 'Compression Type' to 'MPEG-4 Video.
    (I do not think it is related to the fix being suggested or just as a preference, I was told to slide the Compressor - Quality slider on the bottom left to 'Best')
    5) Click the 'OK' button on the bottom left
    That window will close.
    6) Click the 'Next' button and continue with your export.
    I did this and the QT file worked, unlike the original I had done. I can not confirm it isn't a hit or miss like Glad saw...but I did ask if this was a "just try this and let's see" (like Microsoft, altctldel...try restarting your machine) or if this is a known issue....it wasn't totally clear, but I was told (not exact words, but basically) there may be something funky about Keynote or QT with H.264. I don't know codecs so have no idea, but I continued....
    In case I still don't feel comfortable with this "fix" (which I am not sure I do...I also made a new, but less complex video and switched back to H.264 - this one worked...) I asked to still be connected to a FC expert, just to ask my questions anyway as it would be good knowledge to have, even if just for future self development.
    I again did my best to explain what was going on, and the Final Cut person did not understand how changing to H.264 would make any difference...to mention, it is possible I had a hard time getting on the same page as this person who was trying to help me so he may not have understood exactly what I was asking exactly - but he did understand my bottom line - I need to make this video that works when exported to Quicktime!
    Not sure if related (would be curious if this is relevant to others here), again not being familiar with codecs, etc - I had dropped a few QT movies I was given from someone else not being sure what they used to create it. I thought a Quicktime movie is a QT move - universal standard....apparently so for playing but not for re-exporting.
    I was advised to get a QT 7 Pro key so in the future I can open QT movies I am sent in QT and re-export it as a QT movie from my machine (OS, codec, etc, etc, etc) before dropping it into a project I am working on.
    Being on OS 10.6 I have QT X, which does not have this functionality (as mentioned - no Pro version) and when I tried to get a QT 7 Pro key in the past I was misinformed that I wouldn't be able to install it on my machine since it is running a newer version and wouldn't let me install an outdated/older version. Apparently, this is not totally accurate - it is missing from my Utility folder, but I need to do a custom install of it (only way to do it - can't just DL it) from the 10.6 OS disk.
    Please, let me know if any of this worked for you or if I can add more details I left out.
    Best of luck (...for us all)!!!!
    Michael

  • Flash CS 4 to Quicktime frame issues

    I'm rendering short (3 min.) Flash movies to Quicktime. The
    movies are H.264, 1280 x 720, 15 fps, and I'm working on the
    fastest machine Apple currently makes. Flash can't seem to complete
    the task, as it leaves artifacts from earlier frames in subsequent
    frames. It's very annoying.
    Is there a setting I can tweak that will make this program do
    what I bought it for?
    Thanks in advance for any help.
    Jody Radzik
    Institute for the Future

    You appear to be discussing features built-in to Dreamweaver that involve Flash content, so you may get better information from the Dreamweaver forum in regards to using these feaures.
    It is unlikely that Dreamweaver 2004 would be compatible with Flash CS4, though compatibility is not really an issue since Flash has little use for Dreamweaver to do nything it needs to, and Dreamweaver is pretty much just a fancified text editor, where if you needed to incorporate Flash CS4 content you could have Flash publish the html code and then paste that code into the html file in Dreamweaver.

  • Adobe Connect Webcam "Zooming" issue on PC NOT on MAC  HELP??

    Hi All,
    So this is about the resolution of the webcam and it "auto" zooming when the webcam window is reduced.
    ie.. I have a 480p camera and when the video window is large (approx a quarter of screen real-estate) all is fine.  As i reduce the window or ad more cams from other presenters the image is cropped to just the centre 280p . rather than just reducing the window size it reduces the images size as well.   So a head shot turns into an extreme close up!
    This issue does not happen on a mac.
    Both are using the adobeconnectaddin  and are up to date with flash etc.
    Any ideas?

    Have you ever received any information to help in regard to this problem?  I'm looking for similar "fixes" for LiveCycle Designer forms to work on a Mac.
    Since Firefox is now a Mac browser would your idea of coding work in that?  If so I'd love to learn how!
    Thanks,
    Kara Zirkle
    IT Accessibility Coordinator
    George Mason University
    703-993-9815
    [email protected]

  • Flash movie in Safari in Macbook Pro Retina Display zooming issue

    Hello,
    On Macbook Pro Retina Display in Safari browser, zooming any flash application in browser does not work properly.
    I have made a YouTube video showing the problem in action:
    http://www.youtube.com/watch?v=bi1d1x8bpnA
    When I zoom in and out using two fingers pinch zooming does not go as expected - it is zooming into bits outside of the zoom area while the zooming is in the process.
    Please fix the issue.
    Thanks.
    Andrey
    P.S:
    I have also created an Adobe BugBase bug report here:
    https://bugbase.adobe.com/index.cfm?event=bug&id=3323043

    Hi Steffen....!!
    The phenomenon which you just described is absolutely not common in the late 2013 retina macbook. Even I have the same model but I have never noticed such sounds neither during normal operations nor after tilting it.
    I am afraid, but it seems to be a hardware issue. Might be because the fan assembly has become loose due to which its touching the other parts.
    There is also a possibility  that some dirt or small piece of something might have gone inside the macbook through the air vents which may be interfering with the fan mechanism. I think so you can try to open the back cover of the macbook and see if something is interfering with the fans if your macbook is out of warranty. If its covered with Apple care, I suggest take it to Apple store and let them diagnose the issue.
    Hope this helps......

  • ITunes & QuickTime Player Issues

    For the past few days I have been unable to load iTunes. I have tried to reinstall both iTunes, but have encountered many problems. I have downloaded the latest version of iTunes with QuickTime Players from the iTunes website, and followed the installation procedures but when I click on the desktop icon I get the following error messages…
    QuickTime failed to initialise Error # - 2095
    Please make sure QuickTime is properly
    installed on this computer
    I have tried to uninstall both iTunes and QuickTime using various methods including:
    Control Panel>Add or remove programs
    Cleaner>Tools>Uninstall
    But am convinced neither of these methods has been successful as every time I attempt to uninstall and re-install from scratch I am unable to run iTunes and encounter problems with QuickTime Player.
    Has anyone else encountered similar problems, and could anyone assist me in where I am going wrong and how I can get iTunes up and running again.
    This is the last throw of the dice for me, as I have spent the best part of an afternoon and evening trying to sort this problem with no joy whatsoever.
    Thanks
    Windows XP
      Windows XP  

    Thanks, it working now. However, I am getting a new error message now when I want to make iTunes as my default media player. Here is the error message:
    It's similiar to my previous issue. This time I need to create permission for iTunes. Where would I have to go this time to gain permission? Please let me know and thanks again.
    Windows XP Pro
    Windows XP Pro

  • Quicktime Export Issue

    On my MacPro have a sequence shot in 720p60 with an HVX200 and when I try to "Export using Quicktime Conversion" and converting to H.264 at 50% (ie. 640x360) the resulting quicktime file is 960x720? I can startup my MacPro in target firewire mode and use my G4 powerbook to perform the same operation using the same files and it works properly. Is this an issue with the Intel version of Final Cut. Anyone have any idea what is going on here?

    just created a 720p60 sequence, exported it using qt conversion to h.264 at 640x360 and the resulting movie is ........ perfect. (or at least, an h.264 movie at 640x360)
    I tested this with FCP5.1.2 running on an intel MBP

  • CS4 zoom issues

    I am having issues with the zoom feature in cs4. When I zoom into an image to work on details the image  goes soft or fuzzy.  My current file is 9x12 inches at 300 ppi  it is fuzzy at 50% and impossible to see clearly. I'm not zooming in too far, it happens at 50% and other percentages. This is new to me and I am finding hard to work at a percentage that is comfortable. Is there a setting that controls the fuzziness of the monitor?
    thanks,
    Dan

    Hi there
    Are you working with Adobe Captivate? Or are you working with CS4 (Creative Suite 4)? If it's CS4, you need to post your issue in the appropriate forum (In-Design, PhotoShop, Etc.)
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Mx.controls.Text zoom issue with wrapped text. Is this a bug?

    We have created a diagram drawing tool in Flex, but we are having a serious issue with zooming. Everything zoom fine expect the Text control if it contains wrapped text. At certain zoom levels, some of the text seems to disappear (usually text at the end). I have tried everything, embedding fonts, turning anti-aliasing on and off, setting anti-aliasing to normal or advanced, but it doesn't seem to fix the problem. Is this is a known bug?
    If you check out the pictures (see attachments), you will see that the part of the text ('34') disappears at a certain zoom level.
    There is another blog who suggest to embed the font and set the antiAliasType to ‘animation’ (http://www.mehtanirav.com/2008/08/20/zooming-text-area-in-flex-messes-up-word-wrap-bug%20), but this doesn't seem to work for me either. I don't know if I am doing this correctly though, but I embedded a font and called text.setStyle("fontAntiAliasType","animation"). However, 'animation' is not one of the  AntiAliasType contants. According to the official documentation, the AntiAliasType constants are 'advanced' or 'normal'.
    Any help will be appreciated.

    Try this:
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    import javax.swing.text.*;
    class textpaneColor extends JFrame {
       JTextPane tp = new JTextPane();
       JButton button = new JButton("color");
       public static void main(String args[]) {
          textpaneColor obj = new textpaneColor();
          obj.showMe();
       void showMe() {
          button.addActionListener(new buttonListener());
          setSize(200,200);
          getContentPane().setLayout(new BorderLayout());
          getContentPane().add(tp, BorderLayout.CENTER);
          getContentPane().add(button, BorderLayout.SOUTH);
          setVisible(true);
       class buttonListener implements ActionListener {
          public void actionPerformed(ActionEvent e) {
             SimpleAttributeSet set=new SimpleAttributeSet();
             StyleConstants.setForeground(set,Color.BLUE);
             StyledDocument doc=tp.getStyledDocument();
             doc.setParagraphAttributes(0,999999,set,true);
    };o)
    V.V.

Maybe you are looking for

  • I forgot how to use FormsCentral

    I started using FormsCentral in April last year and was working on one specific form.  I have many different versions of the one form and I saved all of them to my desk top.  Now when I open the form, I can no longer edit it.  For the life of me, I c

  • Javax.xml.transform.TransformerConfigurationException

    Hi, I am deploying a bpel process and a bpel test to a remote oc4j, then running the tests via an ant build script. The tests are run fine and the results are created in an xml file, however the bpeltest task then try's to convert the xml to a junit

  • Correcting my iCloud email address

    I have just been looking at my "Accounts" in Mail Preferences. Noticed that my iCloud email address in the field marked "Description" was misspelled and corrected that. However, in the field marked "Email address" I have not been able to figure out h

  • Can't set up Mail with Exchange

    Searching has shown that there seem to be a lot of problems with Exchange and Mail, but I wanted to check and see if there's anything else I can do to fix this. My Exchange server works fine with the iPhone and with Entourage, but with Mail it will n

  • Tax Invoice details

    Hi Expert, I required all the details field of Tax Invoice ( Service Type) including breakup of Service tax as Ed Tax etc. as query. Regards Swapnil