Photoshop like navigator palette?

Something I have always wanted is a Photoshop-like navigator palette for working in a slide at 400%. Or a pan tool. Navigating with the scroll bars is not very easy.
I believe Keynote actually doesn't have nothing like this, or does it?
Thank you.

Doesn't work the same way as the trackpad pan does. Although, if the desktop user has a Mighty Mouse, then you can pan the same way. Would be nice to have a "grab" hand tool for those that don't have access to that hardware.
Just on a lark, I tried several different combinations of clicking and scrolling just to see if there was a way to increase and decrease the magnification LOL! Nothing but Command-shift-> and Command-shift-< though.

Similar Messages

  • Making a zoomer just like navigator in photoshop

    Hi all,
             I am stuck in last few days to make a zoomer application. I am not getting any help on google also.
             it is just like navigator in photoshop . example of this application Link given below.
             http://www.auktionsverket.se/dbk/rdbk_oversikt.asp?d=2010-06-04&at=k&sp=en&bm=E006&id=2855 &snr=0
             Click on any image, then one popup window will open, then click on "zoon in" buttton then flash application will open that is the exact example
             which I want to make.
             I am not getting any help from anywhere And I never made any application of this type But I have to do it.
             So please help me , any idea , any code, any concept, any example  any thing whatever you have.  please.
           THANK YOU .

    Thank You  Deepanjan for replying me. It is really very helpfull for me .
    I have done till getting current position of navigator in percent Because I wanted to do it on percent based calculation.
    Because size of the Big  image can be  resized at any time. I have placed both images without code (manually) and made the  navigator dragable within the small image boundary and scaling the Big image proportionately according to zooming
    I am also scalling down navigator according  to the Big image scaling UP AND getting current position of navigator in percent, percent is correct.
    Because it is showing 0-100, everything is correct    Now My problem in how to position Big  image based on percent (which is gotten from the navigator).
    Please Remember  Registration Point of ther Both (navigator and Big image) in center.
    I am pasting My code here since there is no attachment option present and there's no other way I can show you the code.
    ==========================================   CODE   ================================================================
    package com
        import flash.display.MovieClip;
        import fl.controls.Slider;
        import fl.events.SliderEvent;
        import flash.events.*;
        import flash.geom.Rectangle;
        public class main extends MovieClip
            private var slider:Slider;
            private var isMouseDown:Boolean = new Boolean();
            private var percentX:Number = new Number();
            private var percentY:Number = new Number();
            private var imagePercentX:Number = new Number();
            private var imagePercentY:Number = new Number();
            private var stageWidth:Number = new Number(800);
            private var stageHeight:Number = new Number(400);
            private var borderMCWidth:Number = new Number()
            private var borderMCHeight:Number = new Number();
            private var ration:Number = new Number();
            public function main ()
                trace(" it is main calss ");
                borderMCWidth = small_mc.border_mc.width;
                borderMCHeight = small_mc.border_mc.height;
                sp.source = big_mc;
                big_mc.x = stageWidth/2;
                big_mc.y = stageHeight/2;
                ration = stageHeight/stageWidth;
                addSlider();
                init();
                small_mc.border_mc.alpha = 0;
                stage.addEventListener(MouseEvent.MOUSE_MOVE,MouseMoveing);
                plush_btn.addEventListener(MouseEvent.CLICK,plushBtnClicked);
                minush_btn.addEventListener(MouseEvent.CLICK,minushBtnClicked);
            private function plushBtnClicked(e:MouseEvent)
                big_mc.scaleX += 0.1;
                big_mc.scaleY += 0.1;
                if(big_mc.width > stageWidth || big_mc.height > stageHeight)
                    small_mc.border_mc.alpha = 1;
                    imagePercentX = (stageWidth/big_mc.width)*100;
                    imagePercentY = (stageHeight/big_mc.height)*100;
                    small_mc.border_mc.width =  (borderMCWidth*(imagePercentX))/100;
                    small_mc.border_mc.height =  small_mc.border_mc.width*ration;
                    sp.update();
                    trace("imagePercentX :"+imagePercentX);
                    trace("imagePercentY :"+imagePercentY);
                else
                    small_mc.border_mc.alpha = 0;
            private function minushBtnClicked(e:MouseEvent)
                big_mc.scaleX -= 0.1;
                big_mc.scaleY -= 0.1;
                if(big_mc.width > stageWidth || big_mc.height > stageHeight)
                    small_mc.border_mc.alpha = 1;
                    imagePercentX = (stageWidth/big_mc.width)*100;
                    imagePercentY = (stageHeight/big_mc.height)*100;
                    trace("imagePercentX :"+imagePercentX);
                    trace("imagePercentY :"+imagePercentY);
                    small_mc.border_mc.width =  (borderMCWidth*(imagePercentX))/100;
                    small_mc.border_mc.height =  small_mc.border_mc.width*ration;
                else
                    small_mc.border_mc.alpha = 0;
            function MouseMoveing(e:MouseEvent)
                if(isMouseDown)
                    var numX:Number = new Number();
                    var numY:Number = new Number();
                    numX = small_mc.border_mc.x+((small_mc.width/2)-(small_mc.border_mc.width/2));
                    numY = small_mc.border_mc.y+((small_mc.height/2)-(small_mc.border_mc.height/2));
                    var diffX:Number = (small_mc.width-small_mc.border_mc.width);
                    var diffY:Number = (small_mc.height-small_mc.border_mc.height);
                    percentX = (numX/diffX)*100;
                    percentY = (numY/diffY)*100;
                    trace("percentX :"+percentX);
                    trace("percentY :"+percentY);
                    sp.horizontalScrollPosition = (sp.maxHorizontalScrollPosition*percentX)/100;
                    sp.verticalScrollPosition = (sp.maxVerticalScrollPosition*percentY)/100;
            private function addSlider()
                slider = new Slider();
                slider.liveDragging = true;
                trace("slider.height :"+slider.height);
                slider.move((stage.stageWidth/2),(stage.stageHeight-20));
                addChild(slider);
                //slider.addEventListener(SliderEvent.CHANGE,sliderCnaged);
                slider.addEventListener(SliderEvent.CHANGE, sliderCnaged);
            private function sliderCnaged(e:SliderEvent)
                trace("slider value :"+e.target.value);
            private function init()
                small_mc.border_mc.buttonMode = true;
                small_mc.border_mc.addEventListener(MouseEvent.MOUSE_DOWN,MouseDown)
                small_mc.border_mc.addEventListener(MouseEvent.MOUSE_UP,MouseUp);
            private function MouseDown(e:MouseEvent)
                isMouseDown = true;
                var rect:Rectangle = new Rectangle(((small_mc.border_mc.width/2)-(small_mc.width/2)),((small_mc.border_mc.height/2 )-(small_mc.height/2)),(small_mc.width-small_mc.border_mc.width),(small_mc.height-small_mc .border_mc.height));
                small_mc.border_mc.startDrag(true,rect);
            private function MouseUp(e:MouseEvent)
                isMouseDown = false;
                small_mc.border_mc.stopDrag();
    ========================================================================================== ========================
    Code is fired from the document calss .
    You can get percent in the Bold.
    just import a image convert to MovieClip name it "big_mc" (Ragistration point in the center)
    drag a scroll pane name it "sp"
    for navigator.....
    make a MovieClip name it "small_mc" (Ragistration point in the center)
    in the "small_mc"  make a ectangle and convert to movieClip name "border_mc" (Ragistration point in the center)
    in the "small_mc" in the lower layer keep  image in small size for navigator movement.
    My stsageWidth = 800, StageHeight = 400.
    In short I Want to position the Big image (in any scale) based on percent gotten from navigator (percentX ,percentY);
    Please provide hints to help me to solve .I think the problem is arising due to Registration point  but badly need the a solution.
    Thanks again for replying, have a great Day.

  • I have Windows Vista and cant upgrade right now to windows 7 so how can I get a later version of Photoshop like CS6?

    I have Windows Vista and cant upgrade right now to windows 7 so how can I get a later version of Photoshop like CS6? I cant find a donwload link anywhere. Please help!

    You download cs6 trials from here:
    Download CS6 products

  • Photoshop CS4 layers palette too wide problem!

    http://img232.imageshack.us/img232/6828/swatchesld2.jpg
    The Photoshop CS4 layers palette is too wide and distorts the layout of the default color swatches palette when docked on the same column. And I don't want to have to put the color swatches palette anywhere else but the same column. Can the layers palette be fixed so that it can be as narrow as the other palettes, so it won't cause a conflict with the swatches layout?

    As for the rescalability of panels I think this is more of a Windows issue, but even on mac these are nowhere near as well designed as they were.
    Panel and UI design issues are now unfortunately more complex than just to do with Photoshop. The whole Creative Suite is now unified to some extent in the way it handles panels. Part of these problems stem from the fact that Indesign and Illustrator's concerns are quite different to those of Photoshop. Partly because the designers of these two applications have introduced a great swaithe of additional panels, which now need to be accomodated. Hence the panel buttons, and poorly docking panels.
    The design of The Creative Suite interface now seems much more influenced by Flash Web design, and Windows OS. Unfortunately with flashing buttons, icons, and distracting transparency whenever you move anything, Photoshop appears on the surface much more complex than it needs to. This surface complexity will lead to further misguided accusations of "bloat".
    Photoshop CS and CS2 in my humble opinion, had much more "solid" and well designed panel (or palette) interfaces. Although here and there there have been one or two useful additions to the overall UI, including more readily accessible workspaces, tiling, and obvious clickable icons for people who can't deal with keyboard shortcuts.

  • Photoshop-like tools in FCE?

    I've got some clips where the lighting is insufficient or the colors are washed out. Are there any photoshop-like tools that can be used to fix in post what I should have done right the first time? Thanks.

    My favorite plugin differs depending on the goal I'm trying to achieve. Have you looked through the various filters available in FCE?
    Have you looked through the numerous tutorials online? ( like this one: http://www.youtube.com/watch?v=8yQC_woqrF8 )
    -DH

  • I want to develop photoshop like basic software using c programming.can anyone help

    I want to develop photoshop like basic software using c programming.can anyone help.any suggestions.Any good programming resouces where i can learn to do it.thanks in advance

    I think it would be complex to make that  i can suggest you good resources for  c programming.cprogramming .com is for high level if ur expert in c programmming.if u are beginner cprogramming.tk will help you.cpluslus is for discussing about c programming.
    http://www.cprogramming.com
    http://www.cprogramming.tk/
    http://www.cplusplus.com
    I hope it helps.best of luck

  • VimNav - another vimperator-like navigation script for webkit browsers

    I wanted to use vimperator-like navigation for my Midori browser, so I did combine the functions of several scripts around, webkit user scripts and uzbl ones, and tweaked all to my liking. This turned out to a major rewrite and can be loaded from here.
    Note: This is currently tested for Midori only. Basically it is a greasemonkey script and should be useable with other (e.g. gecko-based) browsers as well. This will require some rewrite, however.
    To use the script with Midori, put it into ~/.local/share/midori/scripts/VimNav.user.js.
    I implemented several additional features and configuration possibilities for (my) convenience, mainly:
    - simple vim-like page scroll (defaults to "hjkl" row)
    - key bindings fully configurable
    - vimperator-like navigation by labeled hints
    - define special collateral sequences for labels display, e.g. "abc" instead of "123" or even let the script select an optimally short collateral sequence for the given page
    - use shortened labels for partially matched links (like uzbl "follow.js") or color-code remaing selection possibilities (like "KeyNav.user.js" from Userscripts.org)
    - scroll the page during label navigation
    - temporarily hide labels during label navigation
    - switch to a new page automatically as soon as a match was found or let the user confirm the selection (allows for label correction with backspace)
    - open new link in the current window or use another window (resp. tab) for it.
    For details read the configuration section at the beginning of the script.
    Have fun!
    Edit: Download location altered to point to the most recent version.
    Last edited by bernarcher (2010-05-29 14:18:15)

    Andrwe wrote:There is just one question for me:
    Is the leading 0 necessary for numeric hinting?
    Not necessarily so, but I wanted to implement autoselection in a more consistent way. For instance, if there is a series of hints numbered 1 through 35, and you want to select, say, label number 2. So you press the "2" and have labels "2" and, possibly somewhere elsewhere far out of sight, "20" through "29" to select from. As you do want the "2" you need to explicitely confirm, e.g. by pressing return.
    On the other hand, if there are leading zeros, you select each label in a consistent way starting at the most significant digit: "0", then only "0" trough "9", usually placed close together, remain. You press "2" and, voilá, (if autoselect is on) the browser navigates to where you want.
    So you don't really save a keystroke but can remain consistent. In fact, if you additionally use the "optimal" collateral sequence, hints seldomly need more than two (alphanumeric) digits, which makes navigation fast and efficient. The only cost there is that pages with a changing number of links (as this forum) occasionally switch between pure numerical and alphanumerical hint labels on subsequent calls. But this is something I easily can live with.

  • How to display the Navigator Palette?

    How does one display the Navigator Palette in PSE 7? The help provides a great discription of what it does but not a clue to how to access it.(:
    Thanks.

    Window>Navigator

  • Hidden tools palette? I would like a palette which shows ALL tools, not popups...

    I am really frustrated (for decades now) that Photoshop groups some tools together which don't make sense to me, and so are hard to find when I do want to use them.
    Examples (and vice versa):
    Ruler under Eye dropper
    Pencil under Brush
    Paint Bucket under Gradient
    Sponge under Burn
    Shapes under Line
    etc
    I would like a tools palette which shows ALL tools, all the time.
    Has anyone done one of these? Might I get a copy?
    Thanks
    William

    MTSTUNER wrote: There are two prebuilt ones for photoshop cs5 in the photoshop exchange area.
    http://www.adobe.com/cfusion/exchange/index.cfm?s=5&o=desc&exc=16&cat= 292&event=productHome&l=%2D1&from=4
    Excellent! Thank you, very much. That's exactly what I needed!
    This one is in a regular palette window which can be grouped with other windows, so does not take up any extra space.
    Download All Tools Palette Panel for CS5

  • Photoshop like app for new iPad...

    I'm needing a bit of help here from all you guru's of the iPad world..I'm a iPad newby crossover from the Xoom crowd and am looking for the best iPad app that will let me do the same basic functions that my Photoshop CS5 I use on my PC does...import a picture or photo in and resize it or put a text layer in on it, or create a new blank layer and add color to it with a paint bucket tool and add some text to it or layer in a picture or photo into the work. How about some graduants to the layer. I do a lot of custom logo, avatars, and game sigs work and my CS5 for my PC works super for my work...is there such an app out there for my new iPad like that???

    Really appreciate all your help here guys but as I said, I've been doing a ton of research and have found what I need. FYI...PhotoForge2, Photogene, Signiture iPad, and the new Photoshop Touch all will add text to anything you want but all but the Photoshop Touch have various limited applications they can perform or accomplish.
    After trying all of these and an FYI for Ralph, the last program I picked up, the new version of Photoshop Touch, does it all and darn near all the important things needed that the CS5 on my desktop does. Truly an amazing program for an iPad format. I was very pleasantly surprised and was well worth the $10 bucks it cost me. A thumbs up for James with his suggestion and it was perfect! Thanks again guys!

  • Metadata like new palette

    Hello everyone,
    I have recently started to use ExtendScript and Bridge SDK. My task is to display additional set of data in a new palette that looks like Metadata, i.e. It should have colapsible headings, two columns, left column bolded with right alignment etc.
    I have tried to imeplement this with TreeView, however it does not support two columns, ListBox does not support multi levels, etc
    Does anyone have a clue how to implement new palette or panel that looks like Adobe Bridge metadata panel.
    Thanks in advance!

    Whoo - it is on Ebay now!
    http://cgi.ebay.com/Apple-Mac-PowerBook-G4-laptop-computer-m5884-MintW0QQitemZ300376246769QQcmdZViewItemQQptZAppleLaptops?hash=item45efd1c9f1
    Starting $0.99, low reserve, BIN $450.
    If anyone is interested, please bid!
    Thanks,
    -Lindsay

  • Best free photoshop-like program?

    Hi, I need to produce slides for a slideshow that will fill the 1024x768 screen resolution of a set of older G4 Macs (eMac, iMac flat-panel). What is the best freeware application to do this? I need to be able to save the slides as .jpeg’s.
    I’ve tried wrestling with some of the programs that came installed on this Macbook, like Pages and that doesn’t really do the job. When I had my old Mac I would use Adobe Photoshop Elements 2.0 or Graphic Converter (for tracing the edges of an image in order to remove the background).
    Any ideas? I’ve gone to the App Store but there are so many I don’t know where to start when I’ve got a limited time to do this.
    Many thanks.

    Does it have to be free? Photoshop Elements and Graphics Converter are both still around. Graphics Converter can even be tried out for free ("with few restrictions* and at your leisure until you decide to purchase").
    If it has to be free, I understand that some users like Gimp.

  • Photoshop CS6 Info Palette & Adjustment Layers

    I have searched but can't find an answer to my question so I thought this may be the best place to ask.
    When I am using adjustment layers in PS 13.0.3 (mountain lion), I notice that the info palette is not giving me a before and after readout of the adjustment.
    e.g. I add a curves adjustment layer and remove some cyan from the highlight end, I can see on screen that cyan is removed but the info palette gives me 2 readings, both the same. This can make it difficult if I want to remove an exact amount of colour. I have the info palette is set up the same as every previous version of photoshop I have used, 1st reading actual colour, 2nd reading cmyk. I know this is a bit difficult to explain so I have included an image showing the palette, CS6 on the left and CS5 on the right, same image, same coordinates. CS5 is showing that 4% cyan has been removed, was 18% now 14%, CS6 is showing what it is now.
    I work in prepress and do a lot of colour correction for books and magazines so I need to know the before & after readings. Is this a bug/feature??

    I'm having this same problem as well.
    Two of our macs have this problem and two do not.
    The two macs with this problem are:
    Mac Pro
    2 x 2.93 Ghz 6-Core intel Xeon
    96 GB 1333 HZ DDR3 ECC
    ATI Radeon HD 5770 1024 MB
    OSX Lion 10.7.5
    The two macs that work correctly are:
    Mac Pro
    2 x 3.06 Ghz 6-Core Intel Xeon
    96 GB 1333 HZ DDR3 ECC
    ATI Radeon HD 5870 1024 MB
    OSX Lion 10.7.5
    Does anyone know what might cause this problem?

  • Adobe Premiere Pro w/ Photoshop-like Effects

    Hello, I know I run the risk of sounding like a completely uninformed moronic n00b by asking this, however my girlfriend has been bugging me about it so as we all know what the woman wants the woman gets *except alimony, child support and respect...jk*
    She does modeling and has modeling videos that she provides to agencies, potential employers etc. Shes recently had a baby and has a C-section scar that shes very insecure about...in her photos she easily photoshops it to be lighter in pigment or sometimes covers/erases it completely. So my question is, is this possible to somehow do in Premiere Pro? I told her itd be possible to edit frame by frame, but who has that kind of time, considering a video would be about 30 seconds long, at 30 fps thats 900 still images. I get instant diarrhea just thinking about attempting that task.
    I was hoping there was some type of time saving, easy cool trick that I just dont know about. Again it is a video with her and the camera moving, its not a still image i can just apply a layer to an area of the video and apply to all frames, the scar is a moving target and I must see to it that it, as opposed to her, never works in this town again. Any help would be greatly appreciated, sorry for taking so long to get to the point and for my poorly placed humor. Thank you in advance,
    Josh
    Adobe Premiere Pro CS6
    Master  Collection

    You have some viable and some not viable options, some of which you had better put to your girlfriend out of throwing distance
    Rotoscope each individual frame
    Spend hours learning AE only to have the end result that looks like a Photoshop touched up image
    Be creative with the video techniques to avoid any shots of the offending area
    Light her so that the scar is not visible
    Get her to wear clothing that hides the scar (an probable impossible task)
    A pro make up artist will be able to mask the scar
    Develop a major fault with your NLE system so that the edit has to be done by an other guy (he takes the fall)
    Get her to wear the scar with pride, she is a Mom after all
    Change your girlfriend
    Sorry for the last but could not resist it
    Good luck
    Col

  • Contextual Panel of GP in collapsable window like Navigation Panel

    hi all
    i want to put the Contextual Panel of Guided Procedure in the collapsable window LIKE the Navigation Panel of the portal (not in Navigation Panel).
    For this to achieve, In Portal Content,
    I created a copy of "Navigation Panel & Content Area Layout" and made its "Object is a Template" as TRUE.
    Then I created a new page of Default Page Template so that i can use my "Navigation Panel & Content Area Layout" and put the Contextual Panel of GP in "Navigational Panel".
    Now when I added this page into "Portal Content -> Content Provided by SAP -> Platform Add-Ons -> Guided Procedures -> Pages -> Process Instance" page, a warning message appears saying "The object you have added is not fully compatible with the page. Therefore, its Isolation Method property has been set to URL and read only." and does so, and because of this the Contextual Panel of GP comes in the collapsable Navigational Panel as per my requirement but the height of the page is not sufficient enough to display the whole page in the required format.
    Thus, defeats my sole purpose.
    So please help to solve this problem.
    Thanks & Regards
    Vivek

    hi all
    lets leave the above requirement aside.
    even if that works, it won't solve my purpose because
    i found that even if i get the gp's Contextual Panel / Process Activies Panel in a collapsable window
    or i hide the it, this won't appear in the collapsable window or get hidden when i initiate the process using the generated URL.
    As per my requirement, i need a URL which will initiate a new GP process and doesn't show
    Contextual Panel / Process Activies Panel on the left side.
    But the generated URL doesn't hide it.
    I think there should be some additional parameter which I should pass along the URL and the started process won't show the Contextual Panel / Process Activies Panel.
    If anyone knows how to get rid of Contextual Panel / Process Activies Panel, please reply.
    Thanks & Regards
    Vivek

Maybe you are looking for

  • Airtight Gallery Not Displaying in Firefox

    I am using Lightroom to generate the Autoview gallery from Airtight and the Lightroom export facility to drop it into my Dreamweaver defined site. The gallery works fine in Internet Explorer but does not display in Firefox. I have tried hardcoding th

  • Create mp3 version grayed out in iTunes

    Mac OSX 10.7.4 Itunes version 10.7 The "Create MP3 Version" button is grayed out and I can't select it.  I can't convert my AAC audio files as I could before.  I could do it before the most recent update.

  • Customized EQ settings

    After having read numerous responses indicating customized iTunes EQ settings are non-transferable to my iPod, I'd like to first get out of the way, this is not my question of my problem. My problem > After creating customized EQ presets on my Window

  • General Settings - Font Size??

    Hi, Does anyone know how we can access the General Settings - Font Size that the user has set for themselves?  I cannot seem to find anyway to get this via the SDK or even where this is stored in a table to simply query it. Thanks, David

  • Can my Macbook handle photoshop cs2/cs3

    Hello everyone. When i do some editing when zoomed in on photos in iphoto the computer slows down, i dont no why. So now i think can my macbook (2GHZ intel core 2 duo and 1GB of ram) handle adobe photoshop cs2 or cs3. Do i need to buy more ram. Pleas