How to Rotate Camera HP ENVY Windows 10

First, I do not know if I have Windows 64 or 32 bit but I just downloaded it a couple of days ago. Question: I still have the issue with the camera FACING ME. In other words, I am taking a selfie. How can I change the camera view so I am taking a picture of someone else? Thanks.  Also, wonder why it doesn't give you this option when you are in the camera? Thanks everyone for your help! Would also like to know how to KEEP Google Chrome and not have it revert back to BING search all the time if you have that answer! Thanks again.

Had you considered installing the free version of Virtualbox? Create a VHD of Windows 95 to satisfy the requirement of Windows 95 for the program.
It  seems to me that dual booting with Windows 95 may be going a tad overboard just for one program.
Does the MUSICAL INSTRUMENTS/ ENCARTA/ MYTHOLOGY software you reference run under Windows XP?
There is actually an app in the Microsoft store called Musical instruments that runs under Windows 8.1. It may be worth taking a look at for you.
****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
2015 Microsoft MVP - Windows Experience Consumer

Similar Messages

  • Settlers 7; I don't know how to rotate camera on macbook pro. Please Help!

    Can anyone tell me how to rotate the camera in settlers 7 on my mac book pro 15" track pad or keyboard? The game wont let me play until I've done this first test.
    Also is it worth buying Sims 3 or will I have just as much trouble as I've had with Settlers 7?

    Thanks for your reply Kappy but I did not mean the camera that is in the lap top lid that is used to take photos of yourself with photo booth. I mean rotating the camera view in the game of Settlers 7. I can zoom in and out and move horizontally and vertically but don't know how to rotate the view.

  • How to rotate camera around origin?

    Hello!
    I managed to create a view like:
    TransformGroup cameraTransformGroup;
    Transform3D cameraTransform3D = new Transform3D();
    //Camera 10f from center at z-axis
              cameraTransform3D.set(new Vector3f(0.0f, 0.0f, 10.0f));
              cameraTransformGroup = simpleUniverse.getViewingPlatform().getViewPlatformTransform();
              cameraTransformGroup.setTransform(cameraTransform3D);
    I mange to rotate the camera around it's own y-axis like:
    rotY(cameraTransformGroup, Math.PI/32);
         public TransformGroup rotY(TransformGroup transformGroup, double angle)
              Transform3D oldTransform3D = new Transform3D();
              Transform3D rotationTransform3D = new Transform3D();
              transformGroup.getTransform(oldTransform3D);
              rotationTransform3D.rotY(angle);
              oldTransform3D.mul(rotationTransform3D);
              transformGroup.setTransform( oldTransform3D );
              return transformGroup;
    Now I need something like:
    public TransformGroup rotY(TransformGroup transformGroup, double angle, float anchor_x, float anchor_y, float anchor_z )
    I really need some help with this code so if you guys got any nice solution please let me know!
    Best regards
    Fredrik

    import javax.vecmath.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.media.j3d.*;
    import com.sun.j3d.utils.universe.*;
    import com.sun.j3d.utils.geometry.*;
    import com.sun.j3d.utils.picking.*;
    import com.sun.j3d.utils.behaviors.mouse.*;
    import java.applet.*;
    import com.sun.j3d.utils.applet.MainFrame;
    public class DataViewer extends Applet
         public static void main( String args[] )
              new MainFrame( new DataViewer(), 640, 480 );
         PointArray geom;
         PickCanvas pc;
         TextField text;
         public void init()
              setLayout( new BorderLayout() );
              GraphicsConfiguration gc = SimpleUniverse.getPreferredConfiguration();
              Canvas3D cv = new Canvas3D( gc );
              add( cv, BorderLayout.CENTER );
              cv.addMouseListener( new MouseAdapter()
                   public void mouseClicked( MouseEvent event )
                        pick( event );
              text = new TextField();
              add( text, BorderLayout.SOUTH );
              BranchGroup bg = createSceneGraph( cv );
              bg.compile();
              SimpleUniverse su = new SimpleUniverse( cv );
              su.getViewingPlatform().setNominalViewingTransform();
              su.addBranchGraph( bg );
         private BranchGroup createSceneGraph( Canvas3D cv )
              BranchGroup root = new BranchGroup();
              TransformGroup spin = new TransformGroup();
              spin.setCapability( TransformGroup.ALLOW_TRANSFORM_READ );
              spin.setCapability( TransformGroup.ALLOW_TRANSFORM_WRITE );
              root.addChild( spin );
              // axes
              Transform3D tr = new Transform3D();
              tr.setScale( 0.3 );
              TransformGroup tg = new TransformGroup( tr );
              spin.addChild( tg );
              Axes axes = new Axes();
              tg.addChild( axes );
              // appearance
              Appearance ap = new Appearance();
              ap.setPointAttributes( new PointAttributes( 10f, true ) );
              // objects
              int n = 20;
              geom = new PointArray( n, PointArray.COORDINATES | PointArray.COLOR_4 );
              geom.setCapability( PointArray.ALLOW_COORDINATE_READ );
              geom.setCapability( PointArray.ALLOW_FORMAT_READ );
              geom.setCapability( PointArray.ALLOW_COLOR_READ );
              geom.setCapability( PointArray.ALLOW_COLOR_WRITE );
              geom.setCapability( PointArray.ALLOW_COUNT_READ );
              Point3f[] coords = new Point3f[n];
              Color4f[] colors = new Color4f[n];
              for ( int i = 0; i < n; i++ )
                   coords[i] = new Point3f( (float)(Math.random()-0.5), (float)(Math.random()-0.5), (float)(Math.random()-0.5) );
                   colors[i] = new Color4f( (float)(Math.random()), (float)(Math.random()), (float)(Math.random()), 1.0f );
              geom.setCoordinates( 0, coords );
              geom.setColors( 0, colors );
              BranchGroup bg = new BranchGroup();
              spin.addChild( bg );
              pc = new PickCanvas( cv, bg );
              pc.setTolerance( 5 );
              pc.setMode( PickTool.GEOMETRY_INTERSECT_INFO );
              Shape3D shape = new Shape3D( geom, ap );
              bg.addChild( shape );
              PickTool.setCapabilities( shape, PickTool.INTERSECT_TEST );
              shape.setCapability( Shape3D.ALLOW_GEOMETRY_READ );
              // rotation
              MouseRotate rotator = new MouseRotate( spin );
              BoundingSphere bounds = new BoundingSphere();
              rotator.setSchedulingBounds( bounds );
              spin.addChild( rotator );
              // translation
              MouseTranslate translator = new MouseTranslate( spin );
              translator.setSchedulingBounds( bounds );
              spin.addChild( translator );
              // zoom
              MouseZoom zoom = new MouseZoom( spin );
              zoom.setSchedulingBounds( bounds );
              spin.addChild( zoom );
              // background and light
              Background background = new Background( 1.0f, 1.0f, 1.0f );
              background.setApplicationBounds( bounds );
              root.addChild( background );
              AmbientLight light = new AmbientLight( true, new Color3f( Color.red ) );
              light.setInfluencingBounds( bounds );
              root.addChild( light );
              PointLight ptlight = new PointLight( new Color3f( Color.green ), new Point3f( 3.0f, 3.0f, 3.0f ), new Point3f( 1.0f, 0.0f, 0.0f ) );
              ptlight.setInfluencingBounds( bounds );
              root.addChild( ptlight );
              PointLight ptlight2 = new PointLight( new Color3f( Color.orange ), new Point3f( -2.0f, 2.0f, 2.0f ), new Point3f( 1.0f, 0.0f, 0.0f ) );
              ptlight2.setInfluencingBounds( bounds );
              root.addChild( ptlight2 );
              return root;
         private void pick( MouseEvent event )
              Color4f color = new Color4f();
              pc.setShapeLocation( event );
              PickResult[] results = pc.pickAll();
              for ( int i = 0; (results != null) && (i < results.length); i++ )
                   PickIntersection inter = results.getIntersection( 0 );
                   Point3d pt = inter.getClosestVertexCoordinates();
                   int[] ind = inter.getPrimitiveCoordinateIndices();
                   text.setText( "vertex " + ind[0] + ": (" + pt.x + ", " + pt.y + ", " + pt.z + ")" );
                   geom.getColor( ind[0], color );
                   color.x = 1.0f - color.x;
                   color.y = 1.0f - color.y;
                   color.z = 1.0f - color.z;
                   if ( color.w > 0.8 )
                        color.w = 0.5f;
                   else
                        color.w = 1.0f;
                   geom.setColor( ind[0], color );

  • How to install external microphone on windows 8.1 hp envy 17 17-j010ep

    how to install external microphone on windows 8.1 hp envy 17 17-j010ep
    the problem is that on the device manager sounds
    it shows the external microphone but i cannot activate it, when i do activate it stays deactivated with a down arrow red

    Hi Apedrodinis,
    I understand you are having issues with the microphone using Windows 8.1 on your HP Envy 17 17-j010ep. Here is a generic document on resolving microphone and line-in problems Windows 8.
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&dlc=en&docname=c03421813&lc=en&product=5397916&tmp...
    Hope it helps.
    Thanks
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • How to rotate window media player clockwise or counter clockwise

    When I receive video , it is 90 degree off clock wise. how to rotate window media player clockwise or counter clockwise?

    Hello,
    These sort of questions belong in the
    Music, Photos, and Video forum on Microsoft Community.
    As the Microsoft Community is on a different platform, we cannot move the question for you.
    Once there, click on Participate near the top of the screen, and select 'Ask a Question' or 'Start a Discussion':
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book:
    Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C406F75746C6F6F6B2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

  • Camera using with Windows 7 on my Macbook Pro(2012)

    Hey there,
    I have a Windows 7 on Macbook Pro 2012 (Bootcamp). I have no idea, how I can use my built-in camera on the Windows side?
    Do I have to download a software?
    Thanks so much!!!

    You need to install it.
    Go back to OSX, open Boot Camp Assistant, read and follow the directions on page 1

  • How do I open the updates window in "Adobe Application Manager"?

    How do I open the updates window in "Adobe Application Manager"? Or can I or should I....??
    I am a brand new Cloud member.  I heard of the Retina update.  Assuming this was where the updates would logically appear I went to the "Adobe Application Manager" app first.  Without closing the "Adobe Application Manager" I opened Photoshop and went to the help menu and selected "Updates..."; a second window opened in the already open "Adobe Application Manager".
    I selected update all.
    The result is below:
    DW CS6 12.1 Creative Cloud
    There was an error installing this update. Please quit and try again later. Error Code: U44M1I200
    Dreamweaver CS6 12.0.1 update to address critical issues
    There was an error installing this update. Please quit and try again later. Error Code: U44M1I200
    Photoshop 13.1 for Creative Cloud
    There was an error installing this update. Please quit and try again later. Error Code: U44M1I200
    Adobe InDesign CS6 8.0.1 update
    There was an error installing this update. Please quit and try again later. Error Code: U44M1I200
    Adobe Bridge CS6 5.0.1 Update
    There was an error installing this update. Please quit and try again later. Error Code: U44M1I200
    Adobe Illustrator CS6 Update (version 16.2.0)
    There was an error installing this update. Please quit and try again later. Error Code: U44M1I200
    DPS Desktop Tools CS6 2.05.1 Update
    There was an error installing this update. Please quit and try again later. Error Code: U44M1I200
    Dynamic Link Media Server CS6 1.0.1 Update
    There was an error installing this update. Please quit and try again later. Error Code: U44M1I200
    Photoshop Camera Raw 7.2
    There was an error installing this update. Please quit and try again later. Error Code: U44M1I200
    Extension Manager 6.0.4 Update
    There was an error installing this update. Please quit and try again later. Error Code: U44M1I200
    Adobe Media Encoder CS6 6.0.2 Update
    There was an error installing this update. Please quit and try again later. Error Code: U44M1I200
    Now, I closed the "Adobe Application Manager" and opened "Photoshop" again and again selected "Updates..." from the help menu.  The "Adobe Application Manager" opened again with just one window this time and the updates happened correctly.
    I was hoping one of the updates would be to the "Adobe Application Manager", I don't think so.
    So, If I were you I wouldn't select "Updates..." from an Adobe app unless the "Adobe Application Manager" is closed until they fix it...
    Current version: Adobe® Application Manager - Version 7.0.0.128 (7.0.0.128) Note the Two windows in the "Adobe Application Manager" in the attached image.

    The updates are currently available by going to Help>Updates within the Application.  Once you invoke the Updater, which is a component of the Adobe Application Manager, it will locate and apply the updates.  It looks like most of your updates have failed to install.  I would recommend you begin by trying to apply the updates that are available on our product update page at http://www.adobe.com/downloads/updates/ and seeing if you face the same difficulty.
    If you continue to experience problems with applying the updates then please review your installation log to determine the cause of the failure.  You can find details on how to locate and interpret the installation log at Troubleshoot with install logs | CS5, CS5.5, CS6 - http://helpx.adobe.com/creative-suite/kb/troubleshoot-install-logs-cs5-cs5.html.

  • How to Update Camera Raw 5.0 to Camera Raw 5.6 for Photoshop CS4

    How to Update Camera Raw 5.o to Camera Raw 5.6 for Photoshop CS4?
    I can access the the download button but after I depress it
    I need specific step by step instructions from start to finish
    Morty
    [email protected]

    It would help us if you told us what operating system and version you are using.
    generic instructions
    Windows
    1. Right click on the downloaded Camera_Raw_5_7_updater.zip
        Click on Extract All
    2. In the Extract All dialog check Show extracted files when complete, then click on Extract
    3. When the next window opens showing the extracted files, right click on the Setup.exe and click on Run as Administrator.
       In the User Account Control dialog click Yes
      Just follow the directions in the install dialog when it opens
    Mac
    1. Double click on the downloaded Camera_Raw_5_updater.dmg to mount the dmg image
    2. When the next window opens, double click on the Setup.app
        In the next window enter your password
    Just follow the instructions in the install dialog that appears
    I didn't take screenshots of the installer dialogs, because i already have the 5.7 camera raw plugin installed

  • How to rotate photos in albums?

    how to rotate photos in albums??

    yes, i can downloaded the photo(s) and use preview or iphoto ot some other program to rotate each one, but it seems so awkward, inelegant and SLOW, just to take a quick peek at the five separate photos that someone sends.
    is there really not an app or some similar thing to help?  i recall downloaded an app for explorer on windows, to take care of the same problem...

  • HT201401 how to rotate a video after recording on my iphone

    how to rotate a video after recording on my iphone?

    Import the video with your computer as with any other digital camera and you can use a video viewing/editing app on your computer to rotate the video.
    For what purpose?

  • How to rotate images tacken by iPad?

    Apple iPad MD513TA/T
    Over a thousand pictures have been taken by this iPad, but all upside down.
    Some of the pictures have been coppied/pasted to PC and have been tested for rotating by Windows Office Picture Manager. 
    The Office Picture Manager could display the pictures but its rotating function was nonfunctional for these pictures.
    How to rotate the pictures taken by iPad?  On iPad?   On PC?
    Thanks.

    If this happens on Windows systems it is because the Windows Photo Viewer and Live Photo Gallery may ignore the EXIF orientation of the photos. This data tells the viewer which way is up.
    See here for discussion and details from Microsoft on how this may be fixed on Windows:
    http://answers.microsoft.com/en-us/windows/forum/windows_7-pictures/windows-phot o-viewer-or-live-photo-gallery-does/a161c8da-c1ce-4347-a92e-724f9e535c15
    You can also avoid this problem by taking photos in landscape mode with the iPhone/iPad held with the Home button to the right. In portrait mode keep the Home button down.

  • How to get Installation Media for Windows 7 Home Basic?

    I Have a Lenovo G470 laptop which previously came with Genuine Windows 7 Home Basic. But Once My OS was corrupted and I take my laptop to Lenovo Service Center, they installed Windows 7 Home Premium In my laptop. I never faced any Activation Issue after that.
    Few days ago my laptop was again corrupted and I Downloaded Windows 7 Home Premium ISO and burned it in a DVD and had a clean installation in my laptop, but this time Activation Issue occurred. I tried to get help from Microsoft technical support, they told me to ask for Installation media from Lenovo. When I contacted Lenovo technical support they told me that they do not provide any installation media. They charge a amount of 850 and also formats all data on HDD.
    How they Succeed to activate Windows 7 Home Premium OS in a Windows 7 Home Basic base laptop without any Activation Issues.
    Why Lenovo Don't Provide Installation Media when I am having a Valid Product Key?

    Hi ashikns7, 
    Welcome to Sony Community!
    How did you upgrade to Windows 8? did you try to reformat  the computer usingthe partition on the hard drive?
    Try the steps on the link below:
    How to reformat the computer using F10
    https://us.en.kb.sony.com/app/answers/detail/a_id/35585/c/65,66/kw/factory%20reset%20using%20f10
    You can also purchase the Vaio Recovery Disc from the country of origin. 
    For further assistance regarding your concern, please contact the Sony offices/Sony representative offices nearest to your place of residence in Asia Pacific region http://www.sony-asia.com/countryselector.html?hpid=countryselector:AsiaPacific. Due to proximity, they are in a better position to respond to your questions or concerns.
    Regards,
    Jen
    If my post answers your question, please mark it as "Accept as Solution"
     

  • How to install hyper-v on windows 8 ?

    How to install hyper-v on windows 8 ?
    I want to install virtual PC but after some research I came to know that windows 8 no longer support virtual pc and it has been replaced by something called hyper-v.
    I just bought a Windows 8 laptop.
    I tried looking into windows on / off features (in control panel) and there is NO hyper-V.
    I know why I don't have hyper-V because after doing some research it seems like it is only available on windows 8 PRO.
    Here is comparison chart:
    http://en.wikipedia.org/wiki/Windows_8_editions#Comparison_chart
    I have Widows 8 on my laptop (NOT Windows PRO).
    Now in this situation, how to install hyper-v on my laptop ?
    Also, will I be able to run windows 7 virtually on my windows 8 laptop using hyper-v just like virtual pc ? like switching in windows between OS ? If I cannot do this and hyper-v does not work like virtual PC then I don;t think hyper-v will be useful to
    me at all and i don't wanna figure it out if it is not useful in any way ?

    Hi jeffcarter,
    To enable the Windows 8 Client Hyper-V feature, our computer needs to meet the following requirements:
    1. Hardware supports Second Level Address Translation (SLAT)
    2. 64-bit Windows 8 Pro or Enterprise.
    3. 4 GB or above of RAM.
    Therefore, it seems that your computer cannot install Hyper-V. Also, Windows Virtual PC cannot be run on Windows 8. Thanks for your understanding.
    In addition, regarding how to configure your BIOS to enable Intel VT-X, you can refer to your motherboard’s operating manual or query the vendor support for help.
    More information:
    Client Hyper-V
    Bringing Hyper-V to “Windows 8”
    Hope this helps.
    Jeremy Wu
    TechNet Community Support

  • How can update camera raw 8.6 ?

    Lightroom 5.6 needs Camera Raw 5.6 for a full compability.
    How can update camera raw 8.6?
    Thanks!

    Hi Mierteran,
    Please follow the link: Adobe - Adobe Camera Raw and DNG Converter : For Windows : Adobe DNG Converter 8.6 to download Update Camera Raw 8.6.
    Let me know if its works or not.
    Thanks,
    Ratandeep Arora

  • Rotate Listener log on Windows

    Can someone please tell me how to rotate the listener.log without bouncing the listener on a Windows machine.
    We have unix kit installed on our servers and I did:
    D:\oracle\product\10.1.0\Db_1\NETWORK\log>pwd
    d:/oracle/product/10.1.0/db_1/network/log
    D:\oracle\product\10.1.0\Db_1\NETWORK\log>ls -lart
    total 577743
    drwxrwxrwx 0 Jun 24 2005 ../
    -rw-rw-rw- 0 Jul 16 16:53:02 sqlnet.log
    -rw-rw-rw- 288,468,458 Aug 09 18:38:13 Copy of listener.log
    -rw-rw-rw- 0 Aug 09 18:44:11 a.txt
    drwxrwxrwx 0 Aug 09 18:44:11 ./
    -rw-rw-rw- 0 Aug 10 11:21:33 listener.log
    D:\oracle\product\10.1.0\Db_1\NETWORK\log>cat a.txt > listener.log
    The process cannot access the file because it is being used by another process.
    D:\oracle\product\10.1.0\Db_1\NETWORK\log>
    It works well in linux environment but here in windows its not working. Can someone please tell me how to rotate it in Windows environment.
    Regards

    Hi
    I tried the following and it worked on another server.
    C:\> cd \oracle\ora92\network\log
    C:\oracle\ora92\network\log> lsnrctl set log_status off
    C:\oracle\ora92\network\log> rename listener.log listener.old
    C:\oracle\ora92\network\log> lsnrctl set log_status on
    But name of my listener is LISTENER_1. So these commands are not working here.
    Regards
    Message was edited by:
    Singh

Maybe you are looking for

  • Remote access VPN clients connected to Internet from VPN

    Greetings, I need to let remote VPN clients to connect to Internet from the same ASA VPN server " client connects to ASA through VPN tunnel from outside interface then access Internet from the same ASA from outside interface again thanks

  • Report with XML as input !

    Hello, I am hv been trying to create a simple report with an XML input but by the end of it, it doesnt give any data on the report. I tried it with XML + SQL input, it gave me a blank report and when I tried with a pure SQL input it did give data in

  • Pricing in transportation

    Hi, I have the following requirement in transportation pricing. 1.     If I am transporting my material from 1 state to another state fixed price needs to be captured . I have created 1 table with key combination of Country + Vendor + Destination + D

  • Windows 7 and ovi suite?

    does ovi suite run on windows 7? in download page it doesnt say anything about windows 7 but wondering if anyone managed to install it and everything works? thanks

  • LR5.3 64bit won't open on my new Windows 8.2 machine

    To cut a long story short I have just installed LR5 on my new PC and it won't open. PS and Bridge open just fine. All that happens is the same thing as the picture at the top of this thread http://forums.adobe.com/message/5410681 It looks like a regi