Camera zoom with OS 4

I got the new OS and thought we were supposed to be able to get a 5x zoom on our 3GS phones, but I don't seem to see anything different

Tap the camera screen, right above the capture button, and it will appear.

Similar Messages

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

  • Camera zoom-out

    Hi.
    I'm using Motion 4 and I'm trying to achieve a camera zoom-out with some conditions. Here's a image to explain the size and the type of zoom I'm looking for. My background images have 3072x1536 pixels and my canvas in Motion is defined to be 1024x768 pixels.
    As you can see by the picture, I want to scale my camera view but I only want to do it through the upper right diagonal so that my bottom left point stays at the same place.
    I've already tried to change the camera between framing and viewpoint but If I got my layers appart in 3D space they all start to phase out because of the perspective. Considering a flat image on the background, how can I scale/zoom-out my camera to do the effect on the image?
    Thank you!

    Walk backwards, as there is no zoom in video mode. Either that, or look for an app that provides "video zoom".

  • 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

  • Camera Zoom Expression

    Hi All, I've been recently using a workflow I quite like to create hundreds or thousands of instances of a 3D object in AE, and I'd like to take some of the guesswork out of it with an expression for the camera.
    Let me give you an example of the kind of shot I'm working on. 
    Imagine you're pushing in towards the window of an office building when it opens and out of it starts pouring hundreds of paper airplanes.  My workflow is to do the following once I've got the office building and the airplanes built in AE.  Design the camera move, with one airplane which follows a typical path.  Then use the perspective changes on that airplane to create a 2D "card" which can be fed to a particle system which replicates the move hundreds of times with minor variations.
    What I'm trying to make:  a set of expressions to use with the camera for the purposes of creating the 2D card.   What it needs to do is point the camera at the object and control zoom.  Ultimately it needs to keep the object's  orientation and apparent size constant through the shot, so that the only change in the object that you see is the change in perspective.
    I've been eyeballing this in the past and it works relatively well, but I think if I nailed it down I could have a really useful system for creating apparently 3D particles.   Thanks in advance for any help!

    Say your 3D object is called "target". It might be as simple as adding this to the camera's POI:
    thisComp.layer("target").transform.position
    and this to the Zoom:
    p = thisComp.layer("target").transform.position;
    length(p,transform.position);
    It could get more complicated than that, depending on what you're doing exactly, but that's the basic idea.
    Dan

  • Camera zoom not working on 3g 3.0 upgrade

    i upgraded to 3.0 and then downloaded camera zoom app it do's not work apple said i to delete it and redownload it if that do's not work contact the maker he said they put a update out but apple needs to prove it frist . that can i do???

    Thanks for the pointer on the wired Mic, in all my efforts to make the application work with bluetooth, I completely forgot about the most obvious solution.
    Can't see the forest for the trees.
    As for writing in Caps, I have to admit I never really paid much attention to caps or no caps. I simply typed and if I hit the lock button I continued on.
    Your observation and willingness to share your observation with me is greatly appreciated. I honestly didn't know the implication or perception of typing in all Caps. It is not nor was it my intention to shout. Sorry.
    Again, thanks for taking the time to help
    Peg

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

  • My camera zooms in automatically when im using skype... 2009 macbook

    My camera zooms in automatically when im using skype... 2009 macbook anyone have any suggestions.. thank you

    Hi LynnAshley!
    You may want to try reinstalling iPhoto by deleting it from your Launchpad on your MacBook Pro, then re-downloading it from the Mac App Store:
    OS X Mavericks: Reinstall apps that came with your Mac
    http://support.apple.com/kb/PH14193
    You may also want to think about backing up your iPhoto Library first:
    iPhoto 9.5: Back up your iPhoto library
    http://support.apple.com/kb/PH15262
    Thanks for using the Apple Support Communities. Have a good one!
    -Braden

  • Use camera zooms only in nested comps, not parent comp?

    hello
    I recently received some advice on a project where I was having some vector art pixelization problems during camera zooms--I was told that camera zooms should not be made in the main comp, but that instead, they should be made in the precomps (or nested comps) to avoid this pixelization problem. It seems to me that AE should be able to propogate clean, illustrator vector graphics during camera zooms, all the way up to a main comp, through the use of the "continuously rasterize" and "collapse transformation" options.. but perhaps this is not so?
    can anyone elaborate on this issue?
    thanks
    LML

    If vector images are set to continuously rasterize you can scale them or push the camera into them as far as you like with no problems. If certain effects have been applied to your eps or ai files they will be rasterized when imported into AE so they will behave exactly like a raster image. There's nothing you can do about that. Turning CR on or off will have no effect. If CR isn't fixing the pixelization issues then you've applied a layer effect somewhere in the chain that's causing the image to rasterize. Sometimes these problems can be fixed by pre-composing and doing the scaling in the pre-comp (layer effects). Sometimes they can't. Most of the time, if the problem is in the Illustrator file you can fix it by editing the original and removing the layer effects applied in Illustrator.
    You can change the antialiasing quality of vector graphics in the file interpretation options from faster to more accurate. You'll find it under More Options.

  • I have recently purchased MacBook Pro with Mac OSX 10.7.3 Lion and I would like to install Final Cut Pro 6 Studio2, and it came up with this error: 'you can't open application FinalCutProStudio.mpkg because PowerPc apps are no longer supported..pls advise

    I have recently purchased MacBook Pro with Mac OSX 10.7.3 Lion and I would like to install Final Cut Pro 6 Studio2, and it came up with this error: 'you can't open application FinalCutProStudio.mpkg because PowerPc apps are no longer supported......Is there a way to run FCP6 on lion withoput this error? Any help would be appreciated.....

    Hi Shane,
    Just one more quesiton re: this topic, I am looking to get rosetta but do not have Leopard or Snow Leopard...
    I read that it is not on Snow Leopard only on Leopard....so do I need to get only Leopard? Can u advise?
    Alternatively I do have Mac OS X Tiger so is it on this and can I install it from here?
    Please excuse my lack of knowledge here, just trying to get my FCP 6 up and running asap....
    Best Rgds.

  • I need to update my apps in the App Store, but when i try to update, the Sign Up Apple ID pop up box came out with different Apple ID. How can I change it to mine? My iTunes Store already login with my own Apple ID.

    I need to update my apps in the App Store, but when i try to update, the Sign Up Apple ID pop up box came out with different Apple ID. How can I change it to mine? My iTunes Store already log in with my own Apple ID.

    Just now you said the other Apple ID stored inside it, is that mean all my data back up in that the other ID?

  • Installing Tiger on a Macbook Pro that came only with Leopard

    Hi guys,
    Any ideas on how to install Tiger onto a Macbook Pro that came preloaded with Leopard, and only has a Leopard disc?
    I've got a refurbished Macbook Pro recently. Realised that one of my application doesn't work, Capture One Pro. Visited Phase One's website and they said it only supports 3.9 and above at the time it was released, which makes it 10.4.10.
    Systems in the story below: Macbook Pro Core Cuo. Macbook Pro C2D (new set), Mac Pro, iMac Core 2 Duo
    Here's what I've tried
    1. I've an original disk that came with my MBP CD. When I try to boot from that disk on my MBP C2D, it gives me the crash screen -> "please hold the power for secs to restart".
    2. I've tried installing Tiger onto my iMac and did a harddisk clone via Carbon Copy Cloner (CCC) to my MBP CD. Tiger was able to run on my MBP CD fine.
    3. Then I tried using CCC to clone it over to my MBP C2D. It doesn't work. Shows me the crash screen.
    4. I've tried installing Tiger on my Mac Pro. Used CCC to clone over the disk image to MBP C2D. Doesn't work too. Crash screen.
    5. Created disk images of Tiger with Disk Utility on iMac, Mac Pro. Tried to restore using the iMac, Mac Pro disk images of Tiger. Doesn't work. Shows me the crash screen.
    6. Updated Tiger to 10.4.11 on my Mac Pro. Created disk image using Disk Utility. Restored MBP C2D with it. Crash screen on load.
    I'm out of ideas and Apple Support won't open until Monday.
    It seems that this MBP C2D is set on not installing Tiger, no matter what. Wonder if getting hold of a Tiger retail disc will do the trick?

    You can install tiger onto a MacBook Pro up to version 3,1.
    Run System Profiler and under hardware:
    Hardware Overview:
    Model Name: MacBook Pro
    Model Identifier: MacBookPro4,1 This line is the model number!
    Processor Name: Intel Core 2 Duo
    Processor Speed: 2.4 GHz
    Number Of Processors: 1
    Total Number Of Cores: 2
    L2 Cache: 3 MB
    Memory: 2 GB
    Bus Speed: 800 MHz
    Boot ROM Version: MBP41.00C1.B00
    SMC Version: 1.27f1
    Serial Number: XXXXXXXXXXX
    Sudden Motion Sensor:
    State: Enabled
    I have got tiger installed onto this MacBookPro which is the latest 4,1 model, but you require the latest Tiger disk (which the Apple Genius had in my case), but the volume, brightness and trackpad gestures do not work! Everything else is fine.

  • So i have a 2011 MacBook Pro and when i turned it on this morning a flashing folder came on with a question mark in the middle of it and it keeps flashing. So i tried googling any solutions and up so far nothing has worked. Please Help ?

    I tried googling several solutions, but so far nothing seems to work. Everytime i start up my laptop i press CMND+R to make it go to the repair disk utility but instead it takes me as if i have to install lion when i had Snow Leopard 10.6.8. When i do go to the repair disk utility, on the eft hand side shows two hardrives one is Untitled and another is Hitachi, i tried downloading snow leopard 10.6.8 onto a Re-writable disc  using my windows computer. When i insterted it onto the disc drive it came out under SUPER DRIVE and everytime i double click on the CD it says something about attaching images/ I also forgot to mention that the MAC OSX 10.6.8 Update shows on the left hand side on the bottom in DMG format. I dont know what else to do, please help?

    DestroyGalaxies wrote:
    a flashing folder came on with a question mark in the middle of it
    This is the firmware telling you it can't find a bootable OS X volume.
    Usually to solve this all you do is hold the option key down on the built in keyboard while booting the computer, this enters Startup Manager and then you choose OS X to boot, then in System Preferences > Startup Disk you change it to the boot volume and it tells the firmware.
    Everytime i start up my laptop i press CMND+R to make it go to the repair disk utility but instead it takes me as if i have to install lion when i had Snow Leopard 10.6.8.
    What you have is a 10.7 or 10.8 Recovery HD from when 10.7 or 10. was on the machine previously.
    The Macintosh HD partition only was erased and 10.6 installed on it, without erasing the entire drive like what should have occured to remove the Recovery HD partition.
    So you have a mucked up machine.
    i tried downloading snow leopard 10.6.8 onto a Re-writable disc  using my windows computer.
    Well there goes your problem there, your downloading illegal copies of Snow Leopard from a untrusted location.
    10.6 is not available for download, except from pirate sites. You likely have malware or a compromised system.
    I dont know what else to do, please help?
    What you need to do is call Apple via phone, tell them the make of your machine and order the appropriate 10.6 disks, they are inexpensive now. Some machines that came with 10.6.3+ origianlly need machine specific disks, other wise pre-10.6.3 Intel Macs can use the 10.6.3 white retail disks.
    Once you have the disks, you need to backup your personal information off the computer to a external storage drive using the emergency quick copy method, then disconnect it to prevent mistakes.
    Most commonly used backup methods
    Next follow this proceedure and make sure to select the ENTIRE drive on the far left with the drive makers name and size, this will erase the entire drive, then install 10.6 from the disk
    How to erase and install Snow Leopard 10.6
    When finished setup the machine and log onto the Internet and use Software Update to get current on 10.6.8
    Don't use pirated software, it's likely been compromised in some fashion.

  • PO_QTY came out with 0 and negative number

    Hi experts,
    I was loading data via 2LIS_02_SCL,2LIS_02_ITM. PO_QTY was populated by ABAP instance. But some PO_QTY number came out with zero and negative number while some of other PO_QTY number came out with the right number.
    I was working on this problem for 2 days but have no idea on it. Anybody can help me?
    Thanks a lot.
    Junbo

    dear Junbo,
    are you working with business content extractor only, i mean no enhancement to that field ? i think it can be 'program error' that po quantity is not correct, try to search oss note ? what's your r/3 PI level ? applied the oss note mentioned before working with lo-mm pur ? it's stated in mm pur extraction doc (if you have not this doc, let's know your email, will send you).
    if you are using business content extractor only without enhancement to this field, you may create oss message to get sap help. debug with rsa3 option debug marked is possible.
    hope this helps.

  • Iphone 4 randomly came up with a grey screen showing 'ios6' and then said 'connect to iTunes'. However iTunes won't pick the device up and states there is an error with the device?

    My iPhone was working fine yesterday and then showed a grey screen with the message 'ios6'. When I tried to use the phone it came up with the error message 'connect to iTunes'. When I got home from work I did this, at first iTunes could not detect the device and then it suggested a system restore. Once the restore had completed I selected the language, country/region and then came back to the same error message 'connect to iTunes'. When I tried to connect the device iTunes could not detect it and stated that there was a problem with the device.
    I have telephoned my network provider to request a replacement device on my insurance but they have said they cannot authorise until I have had the fault diagnosed my Apple. Only problem is there are no genius appointments free until Friday!
    Any help would be massively appreciated!

    We're not Apple. Se can not magically make a genius appointment available for you.

Maybe you are looking for

  • Ipod 1st gen wont show up in itunes 4.0

    I recently upgraded my old imac g4 to 10.3.9. Now, my old shuffle will not show up in itunes 4.0. It mounts itself to the desktop, but wont show up? Any quick fixes out there? Thanks, MB

  • What's the best way to export my Outlook 2007 for windows to either Mail ..

    Trying to export both emails and address book from Outlook 2007 for windows to either mail or entourage but not sure how to do this and second what mail program to use? Mail or entourage? Any help for a 2 day newbie is most appreciated. Exwindow

  • Getting  lookup failed exception

    hi all, im developing a simple application.when i try to access the Submitaction in the controller.im getting the below error. Error opening /SubmitBook/SubmitBookController.jpf. The source of this error is: com.bea.portlet.adapter.scopedcontent.Acti

  • Adobe 7.X DNG converter won't display "action buttons" at botton

    Hello, I have a new camera and upgraded to Adobe Digital negative converter ver. 7.3 to support it.  Oddest thing.  It cuts off the bottom.  The "action buttons" [about DNG converter] [extract] [convert] or [exit] buttons at the bottom soI cant execu

  • PDF - Page Number Bug

    I put a PDF document into Books folder of iTunes and synced to both my iPhone 4 and my iPad. I first opened in iPhone - no problem, although the text was small. iBooks on the iPad crashed everytime I tried to open the PDF. I broke the PDF into sectio