HP CANVAS WITH WINDOWS 8

Ever since I downloaded Windows 8 I can't Access HP Canvas !

Hi,
Hace you read the folowing posts:
  http://h30434.www3.hp.com/t5/Windows-8-Release-Preview-Reply-Only/Installed-Windows-8-and-Magic-Canv...
  http://h30434.www3.hp.com/t5/Notebook-Operating-Systems-e-g-Windows-8-and-Software/Will-HP-Magic-Can...
  http://h30434.www3.hp.com/t5/TouchSmart-PC-e-g-Windows-8/touchsmart-magic-canvas-compatibility-with-...
Regards.
BH
**Click the KUDOS thumb up on the left to say 'Thanks'**
Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

Similar Messages

  • Node Container that does not resize with Window Resize Event

    Hello,
    I'm not new to Java but I am new to JavaFX.
    I plan to have a container/Canvas with multiple shapes (Lines, Text, Rectangle etc) in it. This Container can be X times in the Szene with different Text Shapes. I need to Zoom and Pan (maybe rotation) the whole Szene and the Containers/Canvas.
    So I was playing around with that but I have two issues.
    1) all Canvas classes that I found (like Pane for example) do resize with the main window resize event. The content of the canvas isn't centered any more.
    2) I added a couple of Rectangles to the canvas and both the rectangles and the canvas have a mouse listener which will rotate the item/canvas. Problem is, that even if I click the rectangle also the underlaying canvas is rotated...I think I need some kind of Z-Info to find out what was clicked.
    Here is the little example program, it makes no produktiv sense but it demonstrates my problem.
    Does anybody has a tip what canvas class would fit and does not resize with the main window and how to figure out what was clicked?
    public class Test extends Application
         Scene mainScene;
         Group root;
         public static void main(String[] args)
            launch(args);
        @Override
        public void init()
            root = new Group();
            int x = 0;
            int y = -100;
            for(int i = 0; i < 5; i++)
                 x = 0;
                 y = y + 100;
                 for (int j = 0; j < 5; j++)
                      final Rectangle rect = new Rectangle(x, y, 30 , 30);
                       final RotateTransition rotateTransition = RotateTransitionBuilder.create()
                             .node(rect)
                             .duration(Duration.seconds(4))
                             .fromAngle(0)
                             .toAngle(720)
                             .cycleCount(Timeline.INDEFINITE)
                             .autoReverse(true)
                             .build();
                     rect.setOnMouseClicked(new EventHandler<MouseEvent>()
                          public void handle(MouseEvent me)
                               if(rotateTransition.getStatus().equals(Animation.Status.RUNNING))
                                    rotateTransition.setToAngle(0);
                                    rotateTransition.stop();
                                    rect.setFill(Color.BLACK);
                                    rect.setScaleX(1.0);
                                    rect.setScaleY(1.0);
                               else
                                    rect.setFill(Color.AQUAMARINE);
                                    rect.setScaleX(2.0);
                                    rect.setScaleY(2.0);
                                    rotateTransition.play();
                      root.getChildren().add(rect);
                      x = x + 100;
        public void start(Stage primaryStage)
             final Pane pane = new Pane();
             pane.setStyle("-fx-background-color: #CCFF99");
             pane.setOnScroll(new EventHandler<ScrollEvent>()
                   @Override
                   public void handle(ScrollEvent se)
                        if(se.getDeltaY() > 0)
                             pane.setScaleX(pane.getScaleX() + 0.01);
                             pane.setScaleY(pane.getScaleY() + 0.01);
                        else
                             pane.setScaleX(pane.getScaleX() - 0.01);
                             pane.setScaleY(pane.getScaleY() - 0.01);
             pane.getChildren().addAll(root);
             pane.setOnMouseClicked(new EventHandler<MouseEvent>(){
                   @Override
                   public void handle(MouseEvent event)
                        System.out.println(event.getButton());
                        if(event.getButton().equals(MouseButton.PRIMARY))
                             System.out.println("primary button");
                             final RotateTransition rotateTransition2 = RotateTransitionBuilder.create()
                                  .node(pane)
                                  .duration(Duration.seconds(10))
                                  .fromAngle(0)
                                  .toAngle(360)
                                  .cycleCount(Timeline.INDEFINITE)
                                  .autoReverse(false)
                                  .build();
                             rotateTransition2.play();
             mainScene = new Scene(pane, 400, 400);
             primaryStage.setScene(mainScene);
            primaryStage.show();
    }Edited by: 953596 on 19.08.2012 12:03

    To answer my own Question, it depends how you add childs.
    It seems that the "master Container", the one added to the Scene will allways resize with the window. To avoid that you can add a container to the "master Container" and tell it to be
    pane.setPrefSize(<child>.getWidth(), <child>.getHeight());
    pane.setMaxSize(<child>.getWidth(), <child>.getHeight());
    root.getChildren().add(pane);and it will stay the size even if the window is resized.
    Here is the modified code. Zooming and panning is working, zomming to window size is not right now. I'll work on that.
    import javafx.animation.Animation;
    import javafx.animation.ParallelTransition;
    import javafx.animation.ParallelTransitionBuilder;
    import javafx.animation.RotateTransition;
    import javafx.animation.RotateTransitionBuilder;
    import javafx.animation.ScaleTransitionBuilder;
    import javafx.animation.Timeline;
    import javafx.animation.TranslateTransitionBuilder;
    import javafx.application.Application;
    import javafx.event.EventHandler;
    import javafx.geometry.Point2D;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.input.MouseButton;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.input.ScrollEvent;
    import javafx.scene.layout.Pane;
    import javafx.scene.paint.Color;
    import javafx.scene.shape.Rectangle;
    import javafx.stage.Stage;
    import javafx.util.Duration;
    public class Test extends Application
         Stage primStage;
        Scene mainScene;
         Group root;
         Pane masterPane;
         Point2D dragAnchor;
         double initX;
        double initY;
         public static void main(String[] args)
            launch(args);
        @Override
        public void init()
            root = new Group();
            final Pane pane = new Pane();
            pane.setStyle("-fx-background-color: #CCFF99");
            pane.setOnScroll(new EventHandler<ScrollEvent>()
                @Override
                public void handle(ScrollEvent se)
                    if(se.getDeltaY() > 0)
                        pane.setScaleX(pane.getScaleX() + pane.getScaleX()/15);
                        pane.setScaleY(pane.getScaleY() + pane.getScaleY()/15);
                        System.out.println(pane.getScaleX() + " " + pane.getScaleY());
                    else
                        pane.setScaleX(pane.getScaleX() - pane.getScaleX()/15);
                        pane.setScaleY(pane.getScaleY() - pane.getScaleY()/15);
                        System.out.println(pane.getScaleX() + " " + pane.getScaleY());
            pane.setOnMousePressed(new EventHandler<MouseEvent>()
                public void handle(MouseEvent me)
                    initX = pane.getTranslateX();
                    initY = pane.getTranslateY();
                    dragAnchor = new Point2D(me.getSceneX(), me.getSceneY());
            pane.setOnMouseDragged(new EventHandler<MouseEvent>()
                public void handle(MouseEvent me) {
                    double dragX = me.getSceneX() - dragAnchor.getX();
                    double dragY = me.getSceneY() - dragAnchor.getY();
                    //calculate new position of the pane
                    double newXPosition = initX + dragX;
                    double newYPosition = initY + dragY;
                    //if new position do not exceeds borders of the rectangle, translate to this position
                    pane.setTranslateX(newXPosition);
                    pane.setTranslateY(newYPosition);
            int x = 0;
            int y = -100;
            for(int i = 0; i < 5; i++)
                 x = 0;
                 y = y + 100;
                 for (int j = 0; j < 5; j++)
                      final Rectangle rect = new Rectangle(x, y, 30 , 30);
                       final RotateTransition rotateTransition = RotateTransitionBuilder.create()
                             .node(rect)
                             .duration(Duration.seconds(4))
                             .fromAngle(0)
                             .toAngle(720)
                             .cycleCount(Timeline.INDEFINITE)
                             .autoReverse(true)
                             .build();
                     rect.setOnMouseClicked(new EventHandler<MouseEvent>()
                          public void handle(MouseEvent me)
                               if(rotateTransition.getStatus().equals(Animation.Status.RUNNING))
                                    rotateTransition.setToAngle(0);
                                    rotateTransition.stop();
                                    rect.setFill(Color.BLACK);
                                    rect.setScaleX(1.0);
                                    rect.setScaleY(1.0);
                               else
                                    rect.setFill(Color.AQUAMARINE);
                                    rect.setScaleX(2.0);
                                    rect.setScaleY(2.0);
                                    rotateTransition.play();
                      pane.getChildren().add(rect);
                      x = x + 100;
            pane.autosize();
            pane.setPrefSize(pane.getWidth(), pane.getHeight());
            pane.setMaxSize(pane.getWidth(), pane.getHeight());
            root.getChildren().add(pane);
            masterPane = new Pane();
            masterPane.getChildren().add(root);
            masterPane.setStyle("-fx-background-color: #AABBCC");
            masterPane.setOnMousePressed(new EventHandler<MouseEvent>()
               public void handle(MouseEvent me)
                   System.out.println(me.getButton());
                   if((MouseButton.MIDDLE).equals(me.getButton()))
                       double screenWidth  = masterPane.getWidth();
                       double screenHeight = masterPane.getHeight();
                       System.out.println("screenWidth  " + screenWidth);
                       System.out.println("screenHeight " + screenHeight);
                       System.out.println(screenHeight);
                       double scaleXIs     = pane.getScaleX();
                       double scaleYIs     = pane.getScaleY();
                       double paneWidth    = pane.getWidth()  * scaleXIs;
                       double paneHeight   = pane.getHeight() * scaleYIs;
                       double screenCalc    = screenWidth > screenHeight ? screenHeight : screenWidth;
                       double scaleOperator = screenCalc  / paneWidth;
                       double moveToX       = (screenWidth/2)  - (paneWidth/2);
                       double moveToY       = (screenHeight/2) - (paneHeight/2);
                       System.out.println("movetoX :" + moveToX);
                       System.out.println("movetoY :" + moveToY);
                       //double scaleYTo = screenHeight / paneHeight;
                       ParallelTransition parallelTransition = ParallelTransitionBuilder.create()
                               .node(pane)
                               .children(
                                   TranslateTransitionBuilder.create()
                                       .duration(Duration.seconds(2))
                                       .toX(moveToX)
                                       .toY(moveToY)
                                       .build()
                                   ScaleTransitionBuilder.create()
                                       .duration(Duration.seconds(2))
                                       .toX(scaleOperator)
                                       .toY(scaleOperator)
                                       .build()
                      .build();
                       parallelTransition.play();
        public void start(Stage primaryStage)
             primStage = primaryStage;
            mainScene = new Scene(masterPane, 430, 430);
             primaryStage.setScene(mainScene);
            primaryStage.show();
    }

  • Long canvas with scroll bar

    Hi. I have a form with a very long canvas containing more items than fit on the screen at a time - meaning some items are far down on the canvas and do not appear unless the user physically uses the mouse and scrolls down. This causes a problem for me because as the user tabs through the various fields the cursor will eventually "appear" to disappear. It has not actually disappeared of course, but it has simply navigated to an item that is further down on the canvas out-of-sight. Thus the user must recognize that this has happened and then use the mouse to scroll down and find the cursor again.
    Is there a way to automatically coordinate this scrolling so that the cursor always stays in view for the user - meaning that the user will never have to manually scroll down to find the cursor? Or worst case, can I programatically scroll down for the user so that the cursor always remains visible?
    Any help would be greatly appreciated. If you have any sample code please send it to: [email protected]
    Thanks in advance.
    Edited by: Buechler on Jun 30, 2009 12:20 PM

    -> 3) Changed the default Window width to 5 and it's height to 12
    Don't do that. That apparently guarantees the problem you have.
    The Window size should be no larger than will fit on the user's screen, and the user running the lowest screen resolution should be your target. We create forms no larger than will fit on the 800x600 layout. Our forms always use the Real,Pixel coordinate system, and I create forms with the window size set to a maximum of 784x442. Those reduced numbers allow the form to fit within a browser window in web forms. Our forms run under both 6i Client/Server AND Web, and there is a pre-form that adjusts the web form window size a little larger, but that is all.
    Also, when you run your form, that scrollbar you see is there because your window is not maximized. Our forms always maximize the window, and even have a when-window-resized trigger with this:
    <pre><font face = "Lucida Console, Courier New, Courier, Fixed" size = "1" color = "navy">DECLARE
    W0 Window := Find_Window('WINDOW0');
    BEGIN
    If Get_Window_Property(W0,Window_State)<>'MAXIMIZE' then
    Set_Window_Property(W0,Window_State,Maximize);
    End if;
    END;</font></pre>
    The wwr trigger ensures the user never sees the Window0 border -- it is useless unless you are running a form with multiple windows, which we never do.
    So.... Maximize your Window0, and then you will see the behavior I have been describing. Create a stacked canvas with a vertical scrollbar, and it will behave even better.

  • Newbie Help - Tab Canvas with Multiple Pages, Arrow to Navigate between

    Hi All,
    I am developing my first form. It is a page that requires several pages. I have created a tab canvas and put the pages on (there are 10 pages). When i run the form, i can see the first 4 page headers, and cannot see the other headers. Is there a way to have a arrow at the top so i can click on it to move the display so i can see the other pages?
    How would this normally be done? What i am after is a similar multi page navigation to that in the assignment screen, or any oracle screen with several pages.
    many thanks
    Rupz

    Hi, thanks for your reply.
    If i press F2, a list of all of the pages appear, but i do not get any arrows.
    I have a single tab canvas with 10 pages on it. The pages fit on the canvas, but not on the display window. Do i need to modify the canvas in any way to get the navigation arrows to display?
    thanks
    Rupz

  • Hi..Iam an Architect...I would like to purchase a macbook pro 15.4 inch 512 gb, 16 gb.So i would like to know the possibilities and advantages of using 3d softwares and autocad.And also is 3dsmax available for mac os or should i install it with windows.

    hi..Iam an Architect...I would like to purchase a macbook pro 15.4 inch 512 gb, 16 gb.So i would like to know the possibilities and advantages of using 3d softwares and autocad.And also is 3dsmax available for mac os or should i install it with windows.

    System Requirements for AutoCAD 2013 for Mac:
    Apple® Mac OS® X v10.8.0 or later (Mountain Lion), OS X v10.7.2 or later (Lion), or OS X v10.6.8 or later (Snow Leopard) with 64-bit Intel processor
    Apple® Mac® Pro 4.1 or later; MacBook® Pro 5.1 or later (MacBook Pro 6.1 or later recommended); iMac® 8.1 or later (iMac 11.1 or later recommended); Mac® mini 3.1 or later (Mac mini 4.1 or later recommended); MacBook Air® 2.1 or later; MacBook® 5.1 or later (MacBook 7.1 or later recommended)
    3 GB of RAM (4 GB recommended)
    2.5 GB free disk space for download and installation (3 GB recommended)
    All graphics cards on supported hardware
    1,280 x 800 display with true color (1,600 x 1,200 recommended)
    All Mac OS X supported language operating systems
    Apple® Mouse, Apple Magic Mouse, Magic Trackpad, MacBook® Pro trackpad, or Microsoft-compliant mouse.
    Mac OS X-compliant printer
    Additional Requirements for 3D Modeling (All Configurations)
    Pentium 4 or Athlon processor, 3 GHz or greater or Intel or AMD dual-core processor, 2 GHz or greater
    4 GB RAM or more
    6 GB hard disk space available in addition to free space required for installation
    1,280 x 1,024 true color video display adapter 128 MB or greater, Pixel Shader 3.0 or greater, Direct3D®-capable workstation-class graphics card
    3ds Max 2014 and 3ds Max Design 2014 are available for windows only:
    System requirements for 3ds Max 2014 and 3ds Max Design 2014
    Windows 8 or Windows® 7 64-bit Professional operating system
    64-bit Intel or AMD multi core processor
    4 GB RAM minimum (8 GB recommended)
    4.5 GB free disk space for installation
    3-button mouse
    Latest version of Microsoft® Internet Explorer®, Apple® Safari®, or Mozilla® Firefox® web browser
    Recommened Mac:
    15-inch MacBook Pro with Retina display : 15.4-inch (diagonal) LED-backlit display with IPS technology
    2880-by-1800 native resolution at 220 pixels per inch with support for millions of colors
    Hardware
    2.4GHz quad-core  Quad-core Intel Core i7
    16GB 1600MHz DDR3L SDRAM
    512GB Flash Storage
    Autodesk AutoCAD 2014 for Windows vs AutoCAD 2013 for Mac
    USER INTERACTION                                                                          Windows         Mac
    Command line


    Multifunctional grips


    Dynamic input


    Auto-complete command entry2


    Hide and isolate objects


    Create and select similar objects


    Delete duplicate objects


    Properties palette


    Quick properties palette

    Quick view


    In-canvas viewport controls


    Editable UCS icon


    Layer tools3


    Layer groups


    Layer state manager4

    New layer notification

    Filter

    Quick select

    DesignCenter

    Tool palettes

    Content palette

    Navigation bar

    ShowMotion

    Coverflow navigation

    Multi-touch gestures

    AutoCorrect command entry

    File tabs

    DOCUMENTATION
    Geometry creation & measurement tools


    Parametric constraints


    Associative arrays


    Copy array


    Object and layer transparency


    Strike-through text


    Blend curves


    Multiple hatch editing


    Sheet set manager

    Project manager

    Dynamic blocks5


    Model documentation tools

    Table style editing

    Hatch creation preview

    Multiline style creation

    Digitizer integration

    Change space

    Express tools6

    Text align

    DESIGN
    Solid, surface, and mesh modeling


    Surface curve extraction


    PressPull


    Autodesk materials library


    Material creation, editing, and mapping

    Basic rendering


    Sun properties7


    Visual styles7


    Advanced rendering settings

    Camera creation

    Walkthroughs, flybys, and animations

    Autodesk ReCap point cloud tool

    Import Sketchup files (SKP)

    Geographic location

    CONNECTIVITY
    External references (DWG)


    Image underlays


    PDF underlays


    DWF underlays

    DGN underlays

    In-place editing of DWG references


    Batch publish


    Publish or plot to PDF


    Plot styles


    Plot style table editor


    AutoCAD WS connectivity


    Autodesk 360 connectivity

    Data links

    Data extraction

    Hyperlinks

    Markup set manager

    dbConnect manager

    eTransmit

    WMF import and export

    FBX import and export

    SAT import and export


    Additional model import

    Design feed

    Share on Facebook

    LICENSING
    Standalone licensing


    Network licensing


    Cross-platform licensing

  • Canvas with high level API

    Hi all,
    I want answers for my two questions very urgent..please tell me
    1) can we use canvas with high level API like Forms,TextFeild,List etc. 2) Then can i know CustomItem work with canvas.
    Thanks in advance
    Regards / sourab

    Hi,
    Is there possible to desgn the session window (like that we have in yahoo messenger) using canvas.If so means,please explain it for me.
    Thanks / sourab

  • Is lightroom 5 compatable with windows xp

    Hi,i was using photoshop elements 11 to resize and print my pictures to canvas  using windows xp but the printed size was never the same as the dimensions put into photoshop so i discussed with a friend who told me he had the same problem and he had changed to lightroom and that solved his problem.He was using windows 8.I purchased lightroom 3 to use with XP but i cant seem able to resize (larger or smaller) my images,ca this be done using lightroom 3,also, is lightroom 5 compatable with XP and are you able to resize in this latest version,i would appreciate any comments or advise,thanks

    There is no resize option in any version of Lightroom.  If you need an image that is sized differently then you need to export a copy and specify the dimensions for that copy.  Your other question about Lightroom 5 running on XP; the answer is no.  Lightroom 5 needs at least Windows 7.  But if your motivation is to have Lightroom 5 and so you can resize your images, that feature is not there.  Your only option is to export copies sized to your liking.

  • Syncing iphone with windows 7 contacts - error message outlook.pst not foun

    I have set set up ITunes to sync my Iphone GS with Windows Contacts. When I sync I get an error message :
    The file c:\Program Files\Common Files\System\Mapi\1033\Outlook.pst could not be found
    Sometimes the error message comes up 2 or 3 times.
    Secondly, my Iphone is syncing with something because an old version of my windows address book is now on my iphone. Of course if I add a new contact to Windows Contacts, it does not appear on my iphone.
    I dont have Outlook installed on my PC. It was removed, but I guess I do have an old outlook.pst file from my old times with Windows XP.
    So how does Itunes manage the sync and how can I stop it syncing with my old address book and use Windows Contacts? I have tried resetting my sync history but it did not work.
    I am running Windows7 (upgrade from Vista).

    I am also having issues with syncing my Iphone 3GS with the latest version on Itunes. I have for a long while now been doing just great. My contacts, phone numbers, emails have all synced very nicely, no problems. As soon as I downloaded the new Itunes 9.1 I can no longer sync contacts, and calendars, as usual.
    I tried several things that were suggested to me in the troubleshooting but nothing has helped. It usually tells me that my computer is not set up for syncing, and after arranging that it still doesn't work. As well, it says it cannot find the requested services.
    Please help.
    I am running windows 7, and have been for a while, it's not windows 7, it's the new Itunes upgrade.

  • IPod Classic - ok with Windows, not with iTunes

    Hi,
    I have a Classic 160GO iPod.
    Suddenly this problem appeared :
    - no music or pictures were recognized by my iPod, but the disk space was used for "Other"
    - this iPod is not known with iTunes
    - This iPod is known as a removable hard disk, via Windows 7 (Main computer), Windows XP (secondary computer), a linux thing (a friend computer).
    1. I already checked this iPod with the diagnostics mode (see https://discussions.apple.com/message/19048752#19048752)
    result is :
    - reallocs : 0
    - Pending sectors : 32
    My understanding is that my iPod hard disk is ok and valid.
    2. I followed most of the recommended way to repaird the iPod as per Support (8 out of 10)
    NOthing is working.
    I confirm I have installed the latest version of iTunes.
    3. I read the following page : https://discussions.apple.com/message/19158071#19158071 to find the relevant firmware.
    But the iPod Classic 160GO is not in the list.
    My questions
    --> Do you have an idea to solve my problem ?
    --> What could happend i I format my iPod with windows ? It would be only a hard disk after, wouldn't it ?
    --> I f I format, is there a solution to re-install the iPod software (= firmware ?)
    Thank you for your help.

    The iPod hardisk is  looks new from the Reallocs and ON Hours, but, it is rebooting more to get the correct spin for data verification, causing tImeouts,  so the Pending Sector will increase.
    There maybe something, near the iPod environment, that is causing the drive to fail, and overheat, if it has not already been damaged, or maybe it is just one Hardisk, that slipped through poor quality control.
    You can bring the Retract, Realloc and pending number low, by doing low level format, see this article, but your problem of Hardisk rebooting to find a good cluster, wont go away
    Just my thoughts.
    Magnets are the primary cause of hardisk crashes,  I would also suspect, using your handphone, while it is near the iPod would also be bad, see the YouTube video on hardboiled eggs using handphone.

  • Does a 7th generation ipod nano work with windows 8?

    we bought a new HP laptop with Windows 8 and are having difficulties wtih our 7th generation Ipod nano's not being recognized by the computer. Is Windows 8 compatible with the Ipod nano 7th generation?

    Hello LCREW,
    The article linked below provides some useful troubleshooting steps that can help get your iPod to appear in iTunes.
    iPod: Appears in Windows but not in iTunes
    http://support.apple.com/kb/TS1363
    Cheers,
    Allen

  • Does the Ipod Nano work with Windows XP SP1???

    I studied the system requirements for the ipod nano and there was written, that I need a WinXP with SP2 for it.
    Because I use Sound-Software that only works with Windows XP SP1 I have to keep this system, and I now would like to know if that works. Could anyone answer this question??

    Have you try putting your ipod into disk mode if you need help putting it in disk mode here's a page from apple
    of how to put your ipod nano into disk mode: http://support.apple.com/kb/ht1363

  • IPod Nano Video with Windows Movie Maker

    I found this page by Apple that explains how to use video from the 5G iPod Nano, http://support.apple.com/kb/HT3837
    But, I cannot find Windows Movie Maker V2.5, and V2.1 with Windows XP will not import the video from the iPod Nano. Anybody have any ideas on how to solve this? (Besides buying a Mac...)
    Also, Windows Media Player 11 will not play the video created with the 5G iPod Nano either.
    Message was edited by: trubol

    You can use the AVS Video Editing software to import MPEG-4 Movie files in the same way you'd import .avi files into Windows Movie Maker. Also, the AVS Video Editor will allow you to import iTunes .mp4 audio files and incorporate them into your soundtrack. If you still want to use Windows Movie Maker for your video editing you can also use video conversion software from the same company, i.e. AVS Video Converter 6, to convert from MPEG-4 into .avi or .wmv format. I've found converting to .wmv to be considerably slower than converting to .avi though. Here's a link to the AVS video software offerings below. BTW, the AVS Video Editor can be used for free, while there's a charge for the Converter.
    * As always, exercise caution when using Shareware. So far my own experience has been good.
    http://www.avs4you.com/AVS-Video-Editor.aspx?type=GoogleAdWordsSearch&gclid=CMKa 0-yPqp8CFQ975QodU24Y1Q

  • Ipod sync issues with Windows 7

    I just purchased a new computer with the Windows 7 operating softeware and now I cannot sync my Ipod Touch (3rd generation) but I do not experience this issue with my old computer with Windows Vista.  When I need to update my Ipod I have to connect it to my old computer.  Help.  I do not want to pay Apple for support when I see countless post about this issue.

    Diane Wordsmith wrote:
    Are you set to manually manage on both computers? If not, an auto sync on one of them will erase the iPod and place that computer's library on it.
    No that wouldn't be it. The manual vs. Auto sync setting is stored on the iPod, not on iTunes. So if you take a manually managed iPod and plug it into an iTunes it has never connected to before, the new iTunes will still recognize the iPod as manually managed and not do anything bad to it (in theory).
    Patrick

  • Recognizing an iPod with Windows Vista

    I have a new computer that came with Windows Vista. I have not been able to get iTunes to operate correctly for Windows Vista to recognize the USB connection to my iPod. Anyone have a patch or downloadable software suggestion to resolve this?

    groans
    I finally figured I had nothing to lose--I'd just downloaded a new version of Real Player, which supposedly will work with iPods and Windows Me--and I let my computer format the iPod, hoping that would let it work with Windows again. Apparently not. Now it won't turn on--it's giving me the folder-and-exclamation-point icon. Resetting it didn't help, and I can't restore it because I can't install the software to my computer in the first place.
    I suppose the only thing to do is borrow a friend's computer or something.

  • Error 2356 with windows vista 64bit

    I have had Itunes and Quicktime working fine but suddenly quicktime was nt working giving me an end program error when i need to play anything so i decided to reinstall Itunes and Quicktime but it started to even give me an error uninstalling them but i managed to manually uninstall them and delete even the reg files but when i try to installl any of them now its gives me an 2356 error
    Please advise?

    Unfortunately, I tried every solution on the page (including restoring) and it still doesn't work. I thought the problem was because of a bad video file that iTunes warned me to delete, but that doesn't work at all.
    There has to be an issue with Vista. The iPod worked just fine on my Dell with Windows XP. As soon as I switched computers, it stopped working. What issues does iPod have with Vista?

Maybe you are looking for

  • AP Payment -f110

    Hi Friends, I created one vendor with payment terms 0002(within 14 days 2% and with in 30 days 1%). and through FB60 i created one PO dated 05/20/08. Another vendor with out payment terms and created one PO. Today itself i am processing payment F110.

  • Multiple problems with Mail

    Here is the setup: iMac Intel running 10.4.8 Mail 2.1.1 seperate user accounts, each with their own email address email is valornet.com (local ISP), set up to download to Mail Multiple problems with one of the user accounts (not affecting the others)

  • First time iphone user

    How do I back up my data,music,apps,and phone numbers?

  • When should i expect my new iphone to ship?

    when should i expect my new iphone to ship? I ordered it on 9/19 and it still shows 11/7 as expected delivery, however countless people have already received theirs ahead of schedule. I click on my order status and it says the order does not exist in

  • Defined User Define Type not show data in sql-query

    hi. I am define new type as create type cust_address_ty as object (STREET VARCHAR2(25), CITY VARCHAR2(25), COUNTRY VARCHAR2(25)); then insert data into new created table when we run sql select command for * from following error occured. SQL> select *