Zoom with swipe in xcode 5.0.1

Hello,
I have a problem by working in Maverick, after rapidely after some hours of use, the use of the zoom in the storyboard was not availble with the mouse.
I think that the problem is related with the same bug as safari (see:https://discussions.apple.com/thread/5467320?start=60&tstart=0 ).
I hope that apple will seriously take it into account since numerous applications will be affected I think!
By the way the other solutions evocated onthe link with safari just work for some hours or some days if you are lucky.
Please apple correct this bug!

This is a user-to-user technical support forum. It sounds as if your post may belong in the Developers' Forum.
Best of luck.

Similar Messages

  • Limit Area of zoom and swipe in Gesture script

    hi , i want to simulate zoom ( magnifier ) some text info in my android app
    use these script to enable swipe and Zoom Gesture to my text ( that i put in movieclip with instance name : textzoom)
    import flash.ui.Multitouch;
    import flash.ui.MultitouchInputMode;
    import flash.events.TransformGestureEvent;
    import flash.events.GestureEvent;
    var origX:Number;
    var origY:Number;
    Multitouch.inputMode = MultitouchInputMode.GESTURE;
    origX = textzoom.x;
    origY = textzoom.y;
    textzoom.addEventListener(TransformGestureEvent.GESTURE_ZOOM, onZoom);
    function onZoom(e:TransformGestureEvent):void {
        if (textzoom.scaleX > 0.5 && textzoom.scaleX < 3) {
            textzoom.scaleX *= e.scaleX;
            textzoom.scaleY = textzoom.scaleX;
        } else if (textzoom.scaleX < 0.5) {
            textzoom.scaleX = 0.51;
            textzoom.scaleY = textzoom.scaleX;
        } else if (textzoom.scaleX > 3) {
            textzoom.scaleX =2.99;
            textzoom.scaleY = textzoom.scaleX;
        //trace (e.scaleX );
    stage.addEventListener(TransformGestureEvent.GESTURE_SWIPE , onSwipe);
    function onSwipe (e:TransformGestureEvent):void{
    if (e.offsetX == 1) {
    //User swiped towards right
    textzoom.x += 100;
    if (e.offsetX == -1) {
    //User swiped towards left
    textzoom.x -= 100;
    if (e.offsetY == 1) {
    //User swiped towards bottom
    textzoom.y += 100;
    if (e.offsetY == -1) {
    //User swiped towards top
    textzoom.y -= 100;
    Multitouch.inputMode = MultitouchInputMode.GESTURE;
    stage.addEventListener(GestureEvent.GESTURE_TWO_FINGER_TAP, twoFingerTapHandler);
    function twoFingerTapHandler(event:GestureEvent):void
            textzoom.scaleX =1;
            textzoom.scaleY = textzoom.scaleX;
            textzoom.x = origX;
            textzoom.y = origY;
    now i can use zoom and swipe for read text in bigger size ( make easier to read ) , but now there is two problem :
    1. when i zoom the text grows in stage and will cover all my screen and other part , and i don't want this , i just want the zoom function effect on the textzoom movieclip area .
    2.the swipe function will continue till the text goes out of stage and disappeared !! how can i stop swipe function before textzoom movieclip goes out of stage completely ? so user can detect and see the corner of text and swipe them back
    I upload two image to explain it better cause my english is not very good.
    i really need to solve this , please help me , thanks

    I would really like to know this too.
    If you look at the help file:
    http://help.adobe.com/en_US/photoshop/cs/using/WSfd1234e1c4b69f30ea53e41001031ab64-74dba.h tml#WSfd1234e1c4b69f30ea53e41001031ab64-74daa
    (I hope that's a functional URL) It says that the old drag-zoom thing should still work. But I still get the "scrub" style zooming. None of the pref settings seem to affect it. Help!

  • 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

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

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

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

  • 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

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

  • 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

  • Help with Swipe+zoom. Please review the code.

    Hello there,
    I am trying to get the a page swipe and zoom work for a project for iPhone and iPad. I am not an expert in AS3 but have been able to put togather a piece of code with the helpful folks from this forum. My swipe works like a charm, but when I try to incorporate the code for zoom, the zoom/pinch part doesn't work. I know for people who know AS3 it might be a simple mistake on my part.
    Following is the code I have been playing with. Thanks for your suggestions in advance.
    regards,
    Umesh
    stop();
    import flash.events.MouseEvent;
    import flash.events.Event;
    import flash.events.TransformGestureEvent;
    Multitouch.inputMode = MultitouchInputMode.GESTURE;
    var yourswipeobject:MovieClip;
    var swipeRange:uint = 100;
    yourswipeobject.initX = yourswipeobject.x;
    yourswipeobject.addEventListener(MouseEvent.MOUSE_DOWN,startDragF);
    yourswipeobject.addEventListener(MouseEvent.MOUSE_UP,stopDragF);
    yourswipeobject.addEventListener(TransformGestureEvent.GESTURE_ZOOM,onZoom);
    function onZoom (e:TransformGestureEvent):void{
    yourswipeobject.scaleX *= e.scaleX;
    yourswipeobject.scaleY = yourswipeobject.scaleX;
    function startDragF(e:Event):void{yourswipeobject.startDrag(false, new Rectangle(yourswipeobject.initX-swipeRange,yourswipeobject.y,swipeRange*2,0));
    function stopDragF(e:Event):void{
    yourswipeobject.stopDrag();
    if(yourswipeobject.x<yourswipeobject.initX-swipeRange/2){
        if (currentFrame == totalFrames) {
            gotoAndStop(1);
        } else {
            nextFrame();
    } else if(yourswipeobject.x>yourswipeobject.initX+swipeRange/2){
            if (currentFrame == 1) {
            gotoAndStop(totalFrames);
        } else {
            prevFrame();
    yourswipeobject.x = yourswipeobject.initX;

    Hello there,
    I am trying to get the a page swipe and zoom work for a project for iPhone and iPad. I am not an expert in AS3 but have been able to put togather a piece of code with the helpful folks from this forum. My swipe works like a charm, but when I try to incorporate the code for zoom, the zoom/pinch part doesn't work. I know for people who know AS3 it might be a simple mistake on my part.
    Following is the code I have been playing with. Thanks for your suggestions in advance.
    regards,
    Umesh
    stop();
    import flash.events.MouseEvent;
    import flash.events.Event;
    import flash.events.TransformGestureEvent;
    Multitouch.inputMode = MultitouchInputMode.GESTURE;
    var yourswipeobject:MovieClip;
    var swipeRange:uint = 100;
    yourswipeobject.initX = yourswipeobject.x;
    yourswipeobject.addEventListener(MouseEvent.MOUSE_DOWN,startDragF);
    yourswipeobject.addEventListener(MouseEvent.MOUSE_UP,stopDragF);
    yourswipeobject.addEventListener(TransformGestureEvent.GESTURE_ZOOM,onZoom);
    function onZoom (e:TransformGestureEvent):void{
    yourswipeobject.scaleX *= e.scaleX;
    yourswipeobject.scaleY = yourswipeobject.scaleX;
    function startDragF(e:Event):void{yourswipeobject.startDrag(false, new Rectangle(yourswipeobject.initX-swipeRange,yourswipeobject.y,swipeRange*2,0));
    function stopDragF(e:Event):void{
    yourswipeobject.stopDrag();
    if(yourswipeobject.x<yourswipeobject.initX-swipeRange/2){
        if (currentFrame == totalFrames) {
            gotoAndStop(1);
        } else {
            nextFrame();
    } else if(yourswipeobject.x>yourswipeobject.initX+swipeRange/2){
            if (currentFrame == 1) {
            gotoAndStop(totalFrames);
        } else {
            prevFrame();
    yourswipeobject.x = yourswipeobject.initX;

Maybe you are looking for