Zoom with wheel

Is there any way to change the default scroll to zoom when using the mouse wheel? I couldn't find any options in prefs. Yes, I know I can use the ALT key to accomplish this with the wheel but I would prefer it if AI worked like every other Adobe program I use in this respect.
Thanks!

BUMP!!!
I thought these suites were supposed to be highly integrated... How can they be deemed so integrated when performing the same exact functions are performed using ever-so-different methods??  I am an avid Photoshop and Illustrator user and it is down right irritating when I go from one ap to the other and have to change up my shortcut methods.  It is like a mental kick in the brain everytime you want to do the SAME EXACT FUNCTION between applications.  It is like walking face first into a very clean sliding glass door... It is like dunking your donut into the ashtray that was too close to your coffee... ok I think you get the picture, it sucks.
You already give us the option to turn on or off the "Zoom with Scroll Wheel" in PS, why not in AI?  As in Photoshop, I personally would rather zoom than scroll vertically or horizontally with the wheel in Illustrator without the alt button thank you very much.  I can do the other with other shortcuts or just by panning with the space bar.
Give the user control of how they use the software please!  I mean come on... you have plenty of completely useless options to give us, like for instance we can turn off the blue color of the PS icon in the Photoshop toolbar and turn it into a gray icon (whoo hoo... now there's a useful tool).  It is like the engineers would rather spend any extra time hiding Easter eggs in the aps for us to find than spend more time giving us more useful options to better completely customize our aps.  I guess that I am asking too much.
What the heck is that option for the icon color mode for anyway?

Similar Messages

  • Zoom with scroll wheel?

    The zooming with scroll wheel feature stopped working after I installed MAC OS X 10.6.  Anyone have a suggestion about how to get that feature working again?  Thanks.

    Okay...did that too.  We'll see.  I appreciate your help. 
    Having a major printing problem though.  Looks like I am going to be doing a lot of testing soon because the presents for my Canon iP6700D don't work like they did two days ago.  Canon has a new driver which I believe is the problem.  Maybe I can get back to the other one that worked like a charm.  -- Sandy

  • Vertical zooming with toggle wheel?

    Only been a few days but so far the most difficult thing for me transitioning into CS6 from 3.0 is the lack of vertical zooming with the mouse's toggle wheel in multitrack view.  The sidebar just scrolls now--no zoom.  I know there's a little button for that below the tracks but...its just not the same lol and it never zooms where I want it to.   This is slowing me down like crazy and hoping there might be a way to enable that I don't know about.  I'm not seeing anything about it in the forum or preferences in the program.  I know it seems like nothing but for someone who's been using 3.0 nearly everyday since it came out this one simple thing is really difficult to get used to.  I was perfectly happy dragging the bar for scrolling and zooming all in the same place. 
    Besides the muscle memory side of things--it seems like having to take your eyes off the multi-tracker to hit that button a few times instead causes one to 'lose their spot' so you can easily lose track of what your zooming in on in the first place.  The bottons wont even zoom to the center its like its just some random spot that its zooming to.  Having to look at the keyboard for the key commands (as another option) isn't any better for workflow and still gives me no control over the vertical zoom destination...I have to scroll through everything to find what I'm looking for (not cool when there's like 50+ tracks going) after I'm zoomed in only to find out I need to zoom in further and the process repeats.  So at this point what used to be quick stroke of the toggle wheel is now a process lol.
    IF no vertical toggle wheel zooming is there at least a way to control the location of vertical zooming?  or at least the degree of it rather than the intervals provided by the buttons or key commands?

    Brevity being what it is...
    ver·ti·cal
    [vur-ti-kuhl] http://dictionary.reference.com/help/luna/Spell_pron_key.html
    adjective
    1.
    being in a position or direction perpendicular to the plane ofthe horizon; upright; plumb. 
    2.
    of, pertaining to, or situated at the vertex. 
    3.
    of or pertaining to the cranial vertex.

  • One more nugget: Chart zoom with the "Mouse Over" effect

    Hello all.
    Just read my signature first, it might explain a lot. I do not intend to compete with Darren and I don't think this "nugget" (at least it supposed to be one) will amaze any of the LV veterans and this forum is rich of them. But maybe it will bring some new ideas to some of you or maybe it will be useful for some LV beginners (like me). It is very likely, my code will have some lapses, but please be gentle pointing that out to me. If you feel a need, you can always optimize the code and develope it further. Just don't forget to share!
    So back to the point.
    I am developing a project using LV. In my program there is a waveform chart which has to show 4 plots. Depending on the length of the X Scale, it sometimes gets hard to see the plots clearly because of their density.So I decided that I need a tool, which would zoom the chart in. And this is what I have came up with after a few "Google" searches to check which part of the bike is already invented and also a bit of programming by myself. 
    Maybe you guys (at least the veterans) know the BetterVIEW Consulting LV example where they have implemented the Mouse Over effect. So a part of their example has been used in this tool and part of the credit must go to them. I thank them a lot
    This tool uses a cluster and its property of visibility to show/hide the cluster depending on if the current position of the mouse cursor is in the desired range or not. The program also gets the image of the chart and returns the subset of the image. The subset is taken for the area arounf the mouse cursor. So if you move the mouse, the zoomed in area will also chage in response. After that, the subset of the image is zoomed in for better view. 
    The user might chage the zoom factor during the execution. Also it is possible to turn the zoom option On or Off if you don't wish to see it for the moment. 
    This is how the front panel looks like:
    And this is the image of the block diagram (see the attached files for the vi, the VI Snippet tool distorts the code too much, so I haven't added it):
    I haven't found anything the same in the forum. Yet I'm a newbie here and I don't have that much experience surfing it. If it wouldn't be something new (in the forum, not necessarily to some of you personally), just ignore the thread. I hope this was worth your time and your attention. 
    Good coding
    Message Edited by Giedrius.S on 02-11-2010 12:46 PM
    While evaluating my code please have in mind that I am a LV novice. Therefore sometimes my code might violate some coding rules that I have to learn about myself. But how else could I do that...
    Chart zoom with "Mouse Over" effect
    Attachments:
    Zoom.vi ‏198 KB
    Mouse_pos.vi ‏20 KB
    Check_pos.vi ‏18 KB

    Very nice Giedrius.
    It takes guts to "step up to the chalk board" so I will do what i can to give you some ideas to think about. This is similar to the type of feedback I offer durring our in-house code reviews.
    1) The floating property nodes outside the loop are not sequenced by wires so they could execute after the loop starts. Sometimes this could cause weird errors. Seq with the error cluster.
    2) Property nodes can be re-sized so you can apply more than one property setting in the same call. Property node have to execute in the UI thread (which is single threaded) so using a single nodes will force a single context switch rather than one for each.
    3) Setting the same property repeatedly in a loop just burns CPU. THe Scale min for both X an Y can be moved outside the loop ?
    4) THe Wait Until Next ms" function does not get used in any of my code. It is not a way to get a fixed wait but rather a random wait. If you code completes 1 ms after the next multiple, the delay is double less 1 ms. If you have multiple loops using them and it f the delay for each are not unique prime numbers, then the "Wait until next ms multiple" is a good (cough cough) way of getting them all to wake up at the same time and fight for the CPU.
    5)An Event Struture to monitor mouse enter/leave and mouse move (this would have to be a sepearte loop) is easier on the CPU than polling.
    6) Is that math in the case to handle the Chart position on the FP? If so then using the property nodes for the chart to find its postion will let you code adapt to GUI changes.
    7) Right to left wires are not well recieved.
    8) A Bundle by Name is prefered over a "Bundle" since it is self documenting. I know the Picture function so I can see that is the rectangle you are specifying but reader not famliar with that function would not be able to "READ" the code without poking at it.
    9) THe event structure would also help with setting the Zoom factor. Only poke it when you have to.
    That is all that comes to mind at the moment.
    Again thank you!
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • Vertical Pinch Zoom with Logic 9 & Lion

    Trying to figure out an easy way to do a vertical zoom in Logic 9 and Lion
    Back in the old days (last week) when I used logic 8 and lepoard, it was easy with cntl up/dn (or something like that, my fingers know the routine)
    The pinch work fine for horizontal zoom with the new setup, but how do I do a vertical zoom?  (The old cntl/up thing doesnt seem to work any longer.)
    Thanks!
    Geoff

    Greetings,
    So far, everything seems as stable as before.  Which doesn't actually mean its rock solid, but otherwise workable.  I'm running a Focusrite Saffire Pro 24DSP with beta audio drivers.  So far, everything is running well.  I decided to jump into the 64bit work environment with Logic.  I have yet to encounter huge problems with the 32bit audio bridge.  Just making sure I bounce everything that is 32bit.
    As for everything else within Logic, I can't say I hate Lion.  Matter of fact, Lion seems buggier than Logic at the moment.  Logic handles well in Lion, but Lion on its own overall is a different can of worms.  I am mixed about a 10.7.1 update.  Usually, it fixes something on the OS, but breaks something else in Logic.
    I have faith that Lion will turn out to be as solid as Snow Leopard.  SL was my favorite OSX so far.  Lion still leaves allot to be desired in terms of stability.
    Again, answer to your question:  for me, Logic and Lion play nice.............for now.
    LGK

  • Can't zoom with trackpad in safari how can i solve that?

    Help please!!!
    can't zoom with trackpad in safari how can i solve that?

    There are two places on settings where you can tunr zoom on or off for the trackpad.
    They both need to be on for it to work.
    The first is under: system preferences>trackpad>scroll & zoom, then you just need to chekc the box to turn zoom on. ( this is the one you already have checked i think)
    The second is under: system preferences>universal access>seeing, then check the box that says zoom.
    Hope this helps.

  • Zoom with ROI tools not working

    Hi
    I do have a question regarding the zooming with the ROI-tools. If I aquire (Vision Aquisition2) automatically stored images I would like to change the zoom factor interactively. If I am using the ROI tools
    of the displayed image the ROI-tools are not working and seems to be de-activated. How can I activate the zooming-tool during the image aquisition?
    Is it possible to have an "image in image"-picture whereby the first image shows 100% and the second image for example only 40%? I assume I could therefore use the IMAQ Wind-library.
    With the "IMAQ wind draw" I unfortunately get always a extra window with the zoomed image. How can I avoid this and set the zoomed window directly into the existing first image?
    thanks

    Hi Norick,
    I am not sure if I got your questions right..
    Are you saying that you cannot use the ROI tools or zoom tools while you acquire images and display them?
    I cannot see how the ROI or zoom tools are deactivated during acquisition. This is not the case on my PC.
    If you want to have an image in image then the simplest way is to have a second image display connected to
    the same image that you already display. You can resize the new image display to be small and hide the ROI toolbar,
    label and scrollbars. It will look somewhat like this:
    Here is the simple block diagram:
    Please let me know if this answers your questions or if I got you wrong.
    Best regards,
    David

  • I can't zoom with finger pinch( 2 fingers)

    I can't zoom with finger pinch( 2 fingers) in photos, safari and google maps on iphone 4s...
    Does anyone have any idea what may be the problem?

    I HAVE SOLVED THE PROBLEM FINALLY!!!
    Somehow I knew that this was a software problem so I tried to find a solution by deleting the apps one by one... the problem was caused by an app called QuickDo, after I've deleted QuickDo everything was fine. The strangest thing is that I've been using QuickDo for 3 months and everything was working perfectly, until sudenly this problem occurred...

  • On start up I get grey screen with wheel turning but it goes no further

    On start up I get grey screen with wheel turning but it goes no further

    Take each of these steps that you haven't already tried. Stop when the problem is resolved.
    Step 1
    The first step in dealing with a startup failure is to secure the data. If you want to preserve the contents of the startup drive, and you don't already have at least one current backup, you must try to back up now, before you do anything else. It may or may not be possible. If you don't care about the data that has changed since the last backup, you can skip this step.   
    There are several ways to back up a Mac that is unable to start. You need an external hard drive to hold the backup data.
         a. Start up from the Recovery partition, or from a local Time Machine backup volume (option key at startup.) When the OS X Utilities screen appears, launch Disk Utility and follow the instructions in this support article, under “Instructions for backing up to an external hard disk via Disk Utility.” The article refers to starting up from a DVD, but the procedure in Recovery mode is the same. You don't need a DVD if you're running OS X 10.7 or later.
    b. If Step 1a fails because of disk errors, and no other Mac is available, then you may be able to salvage some of your files by copying them in the Finder. If you already have an external drive with OS X installed, boot from it. Otherwise, if you have Internet access, follow the instructions on this page to prepare the external drive and install OS X on it. You'll use the Recovery installer, rather than downloading it from the App Store.
    c. If you have access to a working Mac, and both it and the non-working Mac have FireWire or Thunderbolt ports, start the non-working Mac in target disk mode. Use the working Mac to copy the data to another drive. This technique won't work with USB, Ethernet, Wi-Fi, or Bluetooth.
    d. If the internal drive of the non-working Mac is user-replaceable, remove it and mount it in an external enclosure or drive dock. Use another Mac to copy the data.
    Step 2
    If the startup process stops at a blank gray screen with no Apple logo or spinning "daisy wheel," then the startup volume may be full. If you had previously seen warnings of low disk space, this is almost certainly the case. You might be able to start up in safe mode even though you can't start up normally. Otherwise, start up from an external drive, or else use the technique in Step 1b, 1c, or 1d to mount the internal drive and delete some files. According to Apple documentation, you need at least 9 GB of available space on the startup volume (as shown in the Finder Info window) for normal operation.
    Step 3
    Sometimes a startup failure can be resolved by resetting the NVRAM.
    Step 4
    If you use a wireless keyboard, trackpad, or mouse, replace or recharge the batteries. The battery level shown in the Bluetooth menu item may not be accurate.
    Step 5
    If there's a built-in optical drive, a disc may be stuck in it. Follow these instructions to eject it.
    Step 6
    Press and hold the power button until the power shuts off. Disconnect all wired peripherals except those needed to start up, and remove all aftermarket expansion cards. Use a different keyboard and/or mouse, if those devices are wired. If you can start up now, one of the devices you disconnected, or a combination of them, is causing the problem. Finding out which one is a process of elimination.
    Step 7
    If you've started from an external storage device, make sure that the internal startup volume is selected in the Startup Disk pane of System Preferences.
    Start up in safe mode. Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a Fusion Drive or a software RAID, you can’t do this. Post for further instructions.
    Safe mode is much slower to start and run than normal, and some things won’t work at all, including wireless networking on certain Macs.
    The login screen appears even if you usually log in automatically. You must know the login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    When you start up in safe mode, it's normal to see a dark gray progress bar on a light gray background. If the progress bar gets stuck for more than a few minutes, or if the system shuts down automatically while the progress bar is displayed, the startup volume is corrupt and the drive is probably malfunctioning. In that case, go to Step 10. If you ever have another problem with the drive, replace it immediately.
    If you can start and log in in safe mode, empty the Trash, and then open the Finder Info window on the startup volume ("Macintosh HD," unless you gave it a different name.) Check that you have at least 9 GB of available space, as shown in the window. If you don't, copy as many files as necessary to another volume (not another folder on the same volume) and delete the originals. Deletion isn't complete until you empty the Trash again. Do this until the available space is more than 9 GB. Then restart as usual (i.e., not in safe mode.)
    If the startup process hangs again, the problem is likely caused by a third-party system modification that you installed. Post for further instructions.
    Step 8
    Launch Disk Utility in Recovery mode (see Step 1.) Select the startup volume, then run Repair Disk. If any problems are found, repeat until clear. If Disk Utility reports that the volume can't be repaired, the drive has malfunctioned and should be replaced. You might choose to tolerate one such malfunction in the life of the drive. In that case, erase the volume and restore from a backup. If the same thing ever happens again, replace the drive immediately.
    This is one of the rare situations in which you should also run Repair Permissions, ignoring the false warnings it may produce. Look for the line "Permissions repair complete" at the end of the output. Then restart as usual.
    Step 9
    If the startup device is an aftermarket SSD, it may need a firmware update and/or a forced "garbage collection." Instructions for doing this with a Crucial-branded SSD were posted here. Some of those instructions may apply to other brands of SSD, but you should check with the vendor's tech support.   
    Step 10
    Reinstall the OS. If the Mac was upgraded from an older version of OS X, you’ll need the Apple ID and password you used to upgrade.
    Step 11
    Do as in Step 9, but this time erase the startup volume in Disk Utility before installing. The system should automatically restart into the Setup Assistant. Follow the prompts to transfer the data from a Time Machine or other backup.
    Step 12
    This step applies only to models that have a logic-board ("PRAM") battery: all Mac Pro's and some others (not current models.) Both desktop and portable Macs used to have such a battery. The logic-board battery, if there is one, is separate from the main battery of a portable. A dead logic-board battery can cause a startup failure. Typically the failure will be preceded by loss of the settings for the startup disk and system clock. See the user manual for replacement instructions. You may have to take the machine to a service provider to have the battery replaced.
    Step 13
    If you get this far, you're probably dealing with a hardware fault. Make a "Genius" appointment at an Apple Store, or go to another authorized service provider.

  • Pan and Zoom with APP CS 5.5

    Good morning,
    I am a new user of APP ( previously I used Avid Studio). I am looking for the feature "Pan and Zoom" with panoramic pictures, up to 360°. With Avid Studio this feature is very simple and included as a standard video effect, but what with APP CS 5.5 ?
    Many thanks in advance.
    Sincerely,
    Jacques

    HIi Jeff,
    Many thanks for your very prompt assistance and answer to my question.
    I shall try in the next future and I shall inform you.
    I apologize in advance if I remain silent for sometime.
    Best regards.
    Jacques Gourier
    Le 15/04/12 17:42, SAFEHARBOR11 a écrit :
    >
          Re: Pan and Zoom with APP CS 5.5
    created by SAFEHARBOR11 <http://forums.adobe.com/people/SAFEHARBOR11>
    in /Premiere Pro CS5, CS5.5, & CS6/ - View the full discussion
    <http://forums.adobe.com/message/4336032#4336032

  • Magic mouse zoom with ctrl

    Good day,
    I am new with mac and I am trying to use the zoom with the magic mouse and the ctrl button, really not easy...
    on excel/word: alt + cmd + scrolling up & down executes zooming in and out of the excel table (only).
    but on the picture viewer/safari: ctrl + scrolling up & down executes zooming in and out of the complete screen (and not only the picture) without possibility to move the view (and this is possible only if the option is selected in preferences/accessibility/zoom: allow zoom with scrolling and selected button).
    Would someone know how to activate the zooming with ctrl and mouse scrolling but only of the content of a window and not of the complete screen?
    Thank you in advance.
    Rodolphe

    Hello:
    According to the guidance in system preferences>mouse double tapping with one finger does it.  I just tried it and it works here.
    I also note the right clicking opens a menu.
    Barry
    Message was edited by: Barry Hemphill

  • Is camera zoom with iphone 5 possible

    is camera zoom with iphone 5 possible?

    In iOS6.1.3 there is a slider in the bottom of the field (in Camera App), that is for zooming. You can also do it with two finger pinching.

  • Zoom with Scrollwheel in PSE8?

    Hello,
    in PSE5 it was still default that with using the mouse scrollwheel you could zoom in and out the image / work region. Since PSE6 this function seems not to be available anymore. I want to use PSE8 and the question is if there is way to enable zooming with scrollwheel somewhere in the program?
    Thanks very much upfront!

    Ahhhh....thanks for your help! That was stopping me from using pse8 and I kept going back to pse5...now
    I'm ready to go!
    xoxoox Sue

  • New iMac/ need a mouse with wheel on top. any ideas?

    Just boufght  a new iMac,  I prefer a mouse with wheel on top.  Any suggestions?
    Thanks,  Jim

    Hello, James.  
    Thank you for visiting Apple Support Communities.  
    I see you are looking for a mouse with a scroll wheel on top.  There are various models and options available to consumers via various sales outlets.  I have included a link below that has a couple options available via our online store.  
    Mice & Keyboards 
    -Jason H.  

  • End autoscroll with wheel movement.

    About a year ago I asked if there was away to cancel autoscrolling with wheel movement. Someone else had asked the same question 6 months prior to that. Both questions were closed with no answer. Does anyone have a solution for this? In literally every Windows program, moving the mouse wheel ends the autoscrolling, but not if Firefox. Note that I want to use autoscrolling, I just need it to end on mouse wheel. This may seem minor, but the "muscle memory" of doing this makes it virtually impossible for me to use Firefox as my default browser.

    I am aware that clicking will end auto scrolling. However, moving the mouse wheel should ALSO end auto scrolling. That is the standard behavior on Windows, at least. Firefox does not work that way, for some reason, and there doesn't appear to be a way to get it to work that way.

Maybe you are looking for

  • Browse and Purchase iTMS over EDGE - Download over WiFi

    I posted this request on http://www.apple.com/feedback/iphone.html copy and paste it as well. I would like the ability to browse the iTunes store on the iPhone when on the EDGE network and add them to a "download queue" that downloads only when WiFi

  • OS X 10.4.11 and Safari 3.04 for PPC--What Happened to My Bookmarks?

    I have tried everything with the new Combo Updater to 10.4.11 for PPC but I can't get my Safari 3.04 to keep any Bookmarks. I eliminated AcidSearch 0.62 and Safari Extender 1.6.6--neither of which works yet with 10.4.11 and Safari 3.04 for PPC--but e

  • Multiple telnet server

    Currently we have one client and one server configured using telnet. Is it possible to add another server (either different IP address or port number) and send client message to a target server resolved by the content of message?

  • Family Sharing Confusion

    I have a few questions about family sharing. I set myself up as the organizer. I also added my wife and daughter (7yo) both of which were using my iTunes account info to purchase songs, movies, etc. 1) How do I set up their devices for family sharing

  • What kind of camcorder would you recommend for FCE HD 3.5?

    Hello everyone, I'm very new here and have been trying to search for the answer to my question without having to bug anyone, but now I am under the gun, as it were. I need to purchase something within a week and a half and would truly appreciate sugg