Zoom Issue in Color 1.5.3

My opportunities for zooming in on the Color timeline seem to be limited - surely this is not the way it was designed?  Cmd + =/- only works to a small degree, and yet I can't find anything that will zoom me in to create a viewable timeline of much value.  To illustrate, I am currently grading a 12 min short film and it is currently fitting about 3 mins 20 seconds to that one view.  It has also been misbehaving in other projects.  Using the drop down menu has no effect either, and I can't find a setting that I've accidentally messed with.
Suggestions would be most welcome, please.
Thank you.

I don't believe that the Color timeline is intended for the style of usage you imply...  I've basically never had anything but a short scene fit in the timeline so as to be all visible at once. The timeline is more for reference and to display the stacking order of corrections. There are many other facilities in the various rooms for dealing with the minutiae.
Color isn't without flaws, but generally works pretty well. If it is "misbehaving" you may have a corruprt project file or something of that nature.

Similar Messages

  • Issue with Color Fills and Multiply?

    Hi,
    I use Photoshop 7.0, and yesterday I started having an issue with Color Fills.
    (You may actually have to Say I have a black-and white lineart on the background layer, such as
    this. I double-click on the background layer to make it edit-able.
    I click on the Color Fill button, choose solid color, then pick any color (say we use bright red). I go back to the lineart, move the Color Fill layer to underneath the lineart layer, and fill the Color Fill with black. Normally, it would just create white, however for me it has pink/light red. The same thing also happens for patterns and gradients; it leaves a very faded version of the color on the picture.
    I didn't change any options or settings, however my little brother was playing around with Photoshop, and he may have changed something. Can anyone tell me how to get it so that there is no pink or faded color there?
    Thanks in advance.

    One quick way to fix this is to hold down crtl-alt-shift while Photoshop
    starts up, and reset your prefs to their factory defaults. This will not
    lose any of your work.
    The other way is to look through your various settings. Top of the list is
    whether your new files are being created in RGB or CMYK mode. It should be
    RGB.

  • 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

  • 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.

  • Issue in Color Theme on the map with ADF geographic components

    I am facing an issue in bringing up a map using color theme .I can able to bring up a map with color themes using geographic components feature in ADF.
    The problem here is 'Edit Color Map Theme' dialog which lists Map Theme in five categories like continents,counties,countries,states_abbrev,states_names.
    we had implemented map using Color Theme based on the states_abbrev and found it was working properly.
    But after some days we found that the settings we made to work for the map no longer works and resulted in no color theme on the map being displayed on the page.
    It was found that the states_names works properly instead of states_abbrev by that time.
    But again after some days it didnt work with state_names and we revert back our code to follow state_abbrev so as to get the desired result.
    Does somebody know where is the problem and how to approach this issue?

    Quick Install is gone.
    Database repair doesn't work.
    Color coded categories is gone, and as you've discovered Theme colors are gone.
    Print to Excel is gone.
    Many desktop clients that worked with 4.2 do not work.
    It won't work with legacy devces.
    and others.... There are lots of complaints about 6.2 scattered around the forums.  Personally, the HotSync manager keeps forgetting the connections I've set, and goes to default views.
    You aren't missing much of anything, IMHO.
    WyreNut
    Post relates to: Centro (AT&T)
    Message Edited by WyreNut on 02-20-2009 12:18 PM
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

  • 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

  • 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......

  • Issue with color profile image processing

    Their seems to an issue with the iPhone displaying an image which has a Color profile of: Generic HDR Profile. The image appears very dark and nearly unviewable. This has been frustrating to trouble shoot becasue the image will display correctly on the computer, but when it is viewed on the iPhone it looks completely different. When images have other color profiles such as sRGB the images will look the same on both platforms. When an image has a Generic HDR color profile it will not display correctly on the iPhone. 
    Anyone else come across this problem?

    When PSE gets weird, the first thing to do is to reset the preferences. Go to the editor preferences>general, click this button and restart the editor:

  • 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

  • Satellite M115-S1061 - display issue - bad colors

    According to my daughter, her Satellite laptop running XP-SP2 suddenly went dim. At first I thought it might be the backlight inverter so I obtained a replacement but changing that failed to make any improvement.
    Experimenting with the display settings it became apparent that many of the display colors were not what they should have been and I began to think something had happened to the LCD or its cabling causing the loss of one of the primary colors i.e.: blue however, upon rebooting I observed plenty of blue from the diplay until XP fully booted.
    While changing themes and setting in an attempt to obtain a mere usable display, it became increasingly obvious that there is some type of video inversion going on.
    That said, I can find no setting that would could cause this or any similar report of this malady. I have swept for any virus and gone back several restore points with no findings or imprivement.
    The driver has not been updated so there is no ability to rollback to an earlier iteration and a search for an update indicates the current dirver is the latest.
    Also, as noted, during initial boot-up the display appears to be of relatively normal brightness and the colors are as they should be...
    It is not until the XP desktop launches that things go astray.
    Any assistance would be greatly appreciated as school is back in session and I either get this resolved and get a new laptop!
    TIA,
    Bob

    Hi
    > Also, as noted, during initial boot-up the display appears to be of relatively normal brightness and the colors are as they should be... It is not until the XP desktop launches that things go astray.
    According to your description I believe that this might be a graphic card problem.
    I would really recommend connecting an second, external display/monitor to this notebook to check if the same bad colors would be visible on the external monitor.
    If the same bad colors would appear at the same time on the second monitor then the issue could be really related to a bad GPU chip
    In such case a replacement (motherboard) would be necessary
    Bye & Greets

  • Printing issues with color mgmt on a HP 7180 photosmart printer - Can you help?

    I've been have an ongoing issue with my Adobe Elements 6.0 and printing my pictures off a HP7180.  The colors don't match what I see on the monitor as well what's on my camera.  I can send the pictures to KodakEasyshare online and the pictures come back with the same colors as to what I see within my application and monitor.  I've run test pages off my printer and everything is good.  Help me, PLEASE.

    I've tried printing from both the catalog and the editor screen and I've fooled around with the color mgmt.  The printing is still off.  The colors are vibrant from what I can see and when it prints it's not as sharp and the colors tend to be dull or maybe leaning towards more green/blue sometimes even more reddish - orange.  I've taken the liberty and reseted the printer to factory defaults on the hardware and on the pc...It's till giving me this problem.  What's amazing is I can print from Kodakgallery software, photoalbum 3.2 from adobe and the colors are some what true to color.  I can't get it to print right with elements.

Maybe you are looking for

  • Is there a way I can have more than one tab of the same website open?

    It seems kind of silly that I'm not allowed to turn off the feature where it switches to the tab that is already open of that site, even if it is in a different window. Sometimes I need to have duplicates of a site open, like alarm clocks, or certain

  • Error while opening reports in PDF

    Hi, I have few reports which i open in PDF format. But when i try to open the report i get the following error message. Adobe Reader could not open "file name.pdf" becasue it is either not a supported file type or because the file has been damaged(fo

  • I need help -extremely urgent!

    Hi there i have an assignment to submit in one month and i'm stuck using Java on my personal computer. I installed the lastest version 1.5 and when working with Textpad and compiling the code it leaves me with the following message: Registry key 'Sof

  • Thunderbolt 2 VGA adapter

    I have had my MBP for 6 mos and have recently started making Keynote and PowerPoint presentations.  I would like to be able to connect to a projector and share the presentations in the lecture hall but everytime I plug into the Thunderbolt port on my

  • Upload to ftp host - 503 error 'you are not logged in'

    Really struggling with this one - my upload (to united hosting server) crashes at approx 60% giving the above reason. The site files are in total 232mb (big site) and my broad band upload speed is shocking (approx 30kb up...... yes kb!) will the ftp