PROB DIGITISING FROM FIREWIRE CREATING 320x240 CLIPS - HELP!!!!!!!!!

FYI WORKING IN FCP 5.04
I'm doing a sound turnover for a project. I'm working on an avid but I need to deliver quicktimes, and rendering takes FOREVER. Long story short, I'm going out of the avid analog into an A/D converter and into Final cut pro to make my quicktimes.
I'm capturing with a non controllable device and all that works fine in FCP.
This is what I want.
Quicktime clips which are 320x240 48k stereo 29.97 DV/NTSC compression.
Here is how I'm doing it.
I created a capture preset
320x240
digitiser-dv video
compression-dv/dvcpro-ntsc
fps 29.97
audio dv audio 48k
I go to capture use this capture preset and the quictimes are all 720x480!!!!
no matter what I try. I threw out preferences. I re-made the capture preset. I don't udnerstand whats going wrong.
HELP!!
Thanks so much
  Mac OS X (10.4.6)  

okay I get all this.. Thanks for the explanation.
NOW I HAVE A 2 NEW PROBS.
So the signal which is being brought into fcp via firewire has stereo audio which the L channel is Dia/FX and the Right channel is Music. When I am monatoring FCP I can hear that this is coming in correct with the dia / MX being split on the two channels. Then when I digitise and check the clip, not only have the two channels been mixed together (like the L/R stereo information created 2 multiple mixed mono's for L/R channels)
BUT ADDITIONALLY SOUND IS 3 FRAMES LATE!!!! Since I am bringing this in via uncontrollable deck, I cant control a sound offset.
please help
sorry for the horrible spelling in advance

Similar Messages

  • Import from Camera creates multiple clips

    When importing from a DV camera via Firewire into Final Cut X, I get mixed results.  Almost always, it will create several clips, where it should only be 1.  There is no starting and stopping the camera, just one hour of non-stop video.  Between each of the clip sets, I am missing a single frame.  When I do this import, I might get 2 clips.  Do it again, I get 6 clips.
    However, if I use iMove, it comes in as a single clip.
    I've tried this on 2 computers (Mac Pro and Macbook Pro) with the same result.
    I also had this problem with Final Cut Pro 7.
    Any ideas?
    Tim

    i have this bug too. resizing the window, and then hitting play will show the whole window. i have a Panasonic HDC-SD7. it works, but a very annoying.

  • Dropshadows with white box from logo created illustrator EPS, HELP?

    Does anyone know the best way to keep a dropshadow we created in illustrator for a logo? we have tried a photoshop transparent file, the element created in illustrator (in this case an oval with a blur) and everytime we place in InDesign, we get a white box, frustrating!!!!

    By vendor, do you mean the printer? or the client?
    If the client:
    1) Politely say No.
    2) Then explain to them patiently, like to a child how 2+2=4, that EPS is not a valid nor modern file format to use with InDesign and that you are the expert and are being paid for you expertise in such technical design matters.
    3) Otherwise, you take no responsiblity for the output and will have them sign off on that fact to cover your ***.
    The client, in my experience, only wants a product that meets or exceeds their expectations. They don't have to know how you did it.
    If a printer:
    1) get him/her to explain why or how it must be EPS in a InDesign workflow. Then if not satisfied with their explanation...
    2) get another printer who is working in the 21st century.

  • Need help returning correct name from a code created movie clip

    Hello. I am an AS3 n00b with hopefuly a simple question I am designing a simple game in flash. This code creates an array of movie clips and asigns a picture to each one. It is a map screen. What I need is when I click on one of the created movie clips, I need it to return either the index of the clip in the array or the name of the clip. Basicaly anything I can use to tell them apart in the code. Here is the code:
    import flash.display.MovieClip;
    var MapLoader:Array = new Array();
    var strJPGext:String = ".jpg";
    var intContTileNumber:int;
    var strContTilePath:String;
    var intDistStartX:int = 63;
    var intDistStartY:int = 64;
    var intDistMultiplyY:int = 0;
    var intDistMultiplyX:int = 0;
    var intDistCount:int = 0;
    var MapSquare:Array = new Array();
    for (var i:int = 0; i < 729; i++)
             //var MapSquare:MovieClip = new MovieClip();
            MapSquare.push (new MovieClip());
            MapSquare[i].x = intDistStartX + (intDistMultiplyX * 30);
            MapSquare[i].y = intDistStartY + (intDistMultiplyY * 30);
            MapSquare[i].name = "MapSquare" + i ;
            addChild(MapSquare[i]);
            intContTileNumber = i;
            MapLoader.push (new Loader);
            strContTilePath = intContTileNumber + strJPGext;
            MapLoader[i].load(new URLRequest(strContTilePath));
            MapSquare[i].addChild(MapLoader[i]);
            intDistCount++;
            intDistMultiplyX++;
            if (intDistCount > 26){
            intDistCount = 0;
            intDistMultiplyX = 0;
            intDistMultiplyY++;
    stage.addEventListener(MouseEvent.CLICK, reportClick);
    function reportClick(event:MouseEvent):void
        trace("movieClip Instance Name = " + event.target.name);   
    Now all this works fine, it creates the map and assigns the correct picture and places them in the correct X,Y position and it is the correct grid of 27x27 squares. The problem is with the name, when I click on the movie clip, it returns "Instance2" or "Instance5" or whatever. It starts with 2 and then increases each number by 3 for each clip, so the first one is 2, then 5 then 8 and so on. This is no good. I need it to return the name that I assigned it
    . If I put the code in trace(MapSquare[1]) it will return the name "MapSquare1" so I know the name was assigned, but it isnt returning.
    Please assist
    Thanks,
    -red

    Thanks for the resopnse,
    I know I dont really need the name, I just need the index number of the array, but I cant figure out how to get the index name without specificaly coding for it. That is why in the listener event I use event.target.name because I dont know what movie clip is being clicked until it has been clicked on. Basically when a movie clip is clicked it needs to return which index of the array was clicked.
    I could do it this way:
    MapSquare[0].addEventListener(
      MouseEvent.MOUSE_UP,
      function(evt:MouseEvent):void {
        trace("I've been clicked!");
    MapSquare[1].addEventListener(
       MouseEvent.MOUSE_UP,
       function(evt:MouseEvent):void {
         trace("I've been clicked!");
    MapSquare[2].addEventListener(
       MouseEvent.MOUSE_UP,
       function(evt:MouseEvent):void {
         trace("I've been clicked!");
    ... ect
    but that is unreasonable and it kind of defeats the purpose of having the array in the first place. The code that each movie clip executes is the same, eventualy that index will be passed into a database and the data at that primary key will be retrieved and returned to the program. So I just need to know, when one of those buttons is clicked, which one was clicked and what is its index in the array.
    I am a VB programer and in VB this is very easy, the control array automatically sends its own index into the function when one of the buttons is clicked. It seems simple enough, I just dont know how to do it in action script.
    Thanks again,
    -red

  • Time Machine Data Transfer - From FireWire Drive to Time Capsule - HELP!

    Time Machine Data Transfer - From FireWire Drive to Time Capsule - HELP!
    I've been searching for weeks for a solution to my problem. Here's the story I've come across since I installed Leopard on Oct. 26, 2007.
    I first installed Leopard on my Early 2006 MacBook and set up Time Machine with a 200GB external FireWire drive. Since then, things have been fine, until Time Machine started deleting the oldest backups. I'm a pack-rat and hated this feeling of losing data. So, I now have a few months worth of backups on my 200GB FireWire drive.
    The Time Capsule is released, I finally talk myself into getting one and transferring my old data from the 200GB drive to my 1TB TC.
    I did some researching through forums about how to move data from one Time Machine drive to another, so I took the concept and wanted to apply it to my Time Capsule. I made a DMG image of my 200GB drive, in order to move the data. I figured if I can make an image, copy it, and open it on the Time Capsule - all will go smoothly - just as some had mentioned they've done with external drives.
    Now, I have a 164GB DMG image of my Time Machine, with no hope in sight of gaining it back. I've tried taking the image, using Disk Utility, and restoring my original 200GB external with the imaged Time Machine data, but whenever I do, I come across error messages.
    In Disk Utility, I've done the following steps:
    * Disk Image is found on Time Capsule
    * I select the 200GB drive and select 'Restore'
    * I drag and drop the Disk Image to the 'Image' field
    * I drag and drop the 200GB drive into the the 'Restore' field
    * Select 'Erase Destination'
    * Select 'Restore'
    * I get the warning message that I'll erase the drive - I proceed
    * I enter my password
    Error message pops up:
    "Restore Failure: Could not find any scan information. The source image needs to be imagescanned/scanned for restore."
    I select the image in Disk Utility, then proceed with the following steps:
    * Click on "Image" then down to "Scan Image for Restore"
    * I enter my password
    After hours of waiting, I get another error message:
    "Unable to scan. (Broken pipe)."
    I'm going to see, after transferring the DMG to the Time Capsule, if I can drag-and-drop the files from the Time Capsule drive onto the 200GB hard drive.
    IF anyone has any more suggestions, please let me know!

    32 updates on this Mac since December 2007 - Hardware, software, OS...
    They keep coming at about 6 or 7 a month. Some of them I don't care about, but several are essential. 10.5.3 has been seeded to the testers a couple of times and will probably show up in the next few weeks. Jaguar wasn't worth a d*mn until 10.2.6, Panther about 10.3.4, Tiger about 10.4.4 - I'd say we are ahead or on schedule Too bad I can't get Apple to fix Spaces. I wish they'd focus on what I want but I guess some take more time than others.
    2007-12-18 00:32:39 -0800: Installed "GarageBand Update" (4.1.1)
    2007-12-18 00:32:43 -0800: Installed "QuickTime Broadcaster" (1.5.2)
    2007-12-18 00:33:07 -0800: Installed "Security Update 2007-009" (1.0)
    2007-12-18 00:33:29 -0800: Installed "QuickTime" (7.3.1)
    2007-12-19 09:32:03 -0800: Installed "MacBook MacBook Pro Software Update" (1.1)
    2007-12-23 23:57:32 -0800: Installed "Security Update 2007-009" (1.1)
    2008-01-16 09:18:07 -0800: Installed "iMovie Update" (7.1.1)
    2008-01-16 09:18:14 -0800: Installed "Front Row Update" (2.1.2)
    2008-01-16 09:18:45 -0800: Installed "iTunes" (7.6)
    2008-01-16 09:19:31 -0800: Installed "QuickTime" (7.4)
    2008-01-29 21:33:14 -0800: Installed "Keynote Update" (4.0.2)
    2008-01-29 21:33:23 -0800: Installed "Pages Update" (3.0.2)
    2008-01-29 21:33:31 -0800: Installed "Numbers Update" (1.0.2)
    2008-02-02 01:18:43 -0800: Installed "iWeb Update" (2.0.3)
    2008-02-05 20:12:17 -0800: Installed "iPhoto Update" (7.1.2)
    2008-02-15 09:03:49 -0800: Installed "iLife Support" (8.2)
    2008-02-15 09:04:17 -0800: Installed "QuickTime" (7.4.1)
    2008-02-15 09:04:51 -0800: Installed "Leopard Graphics Update" (1.0)
    2008-02-19 23:44:37 -0800: Installed "Keyboard Firmware Update" (1.0)
    2008-02-25 19:24:33 -0800: Installed "iTunes" (7.6.1)
    2008-03-03 17:14:18 -0800: Installed "GarageBand Update" (4.1.2)
    2008-03-03 17:14:31 -0800: Installed "iPhoto Update" (7.1.3)
    2008-03-12 18:11:36 -0700: Installed "AirPort Utility" (5.3.1)
    2008-03-18 10:03:57 -0700: Installed "Safari" (3.1)
    2008-03-20 13:00:58 -0700: Installed "Security Update 2008-002" (1.0)
    2008-03-20 13:01:04 -0700: Installed "Time Machine and AirPort Updates" (1.0)
    2008-03-21 22:49:16 -0700: Installed "Digital Camera RAW Compatibility Update" (2.0)
    2008-04-03 00:50:22 -0700: Installed "Front Row Update" (2.1.3)
    2008-04-03 00:50:50 -0700: Installed "QuickTime" (7.4.5)
    2008-04-03 00:51:58 -0700: Installed "iTunes" (7.6.2)
    2008-04-08 17:16:02 -0700: Installed "Keynote Update" (4.0.3)
    2008-04-08 17:16:08 -0700: Installed "MacBook Pro EFI Firmware Update" (1.5)

  • I created a calendar in the wrong calendar year.   I need to change it from 2012 to 2013. Help!!!

    I created a calendar in the wrong calendar year.   I need to change it from 2012 to 2013. Help!!!

    N000295, I am afraid you will have to start all over again. There is no way to change the year of the already created photo calender.

  • How to create context sensitive help and call the role based help from my Java Project?

    Hello All,
    I am new to Robo Help. I have created a Robo help for my Java Web Applicaion. My application is role base i.e some user's will not see some of the pages of the application. So I want to hide those pages in Robo help as well. I tried creating multiple TOC for different Roles.
    My Question is
    How to call robo Help from my application?(I will be calling using java script. If it is with RoboHelp_CSH.js where can I get that and How to implement it in my project)
    How to implement role based help?
    Thanks,
    Siva.

    I answered that. My point in asking whether it matters was that if it does, then you cannot use content categories and point different users to different categories and not allow them to see the others.
    The alternative, as I said, would be to produce different outputs for each role.
    As it does matter, then using webhelp you will have to use your RoboHelp project to produce a number of outputs, one for each category. Your app would install each webhelp into different folders and when your app determines the user role, you will link to the appropriate help.
    There is another thread running where it has been explained by Willam van Weelden that you can achieve what you want using browser based AIR help. If that form of help can be considered, then the thread is at http://forums.adobe.com/message/4914753?tstart=0#4914753
    Browser based AIR help must be run from a web server. It cannot be installed locally.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Help - Capture is creating separate clips **

    I'm using FCP 5 with a Sony HC-1
    and it seems to find timecode breaks over all my tapes and even when i set the preference unchecked for "create new clip on timecode break"
    it seems to do it anyway.
    anyone see this before?
    thanks ~
    imac g5   Mac OS X (10.4.2)   Sony HDV -HC1 firewire camera

    Patrick,
    Thanks for the reply ~
    although i'm not sure i get it entirely. what are you referring to "stream" ? timecode?
    the material breaks seemingly arbitrarily, not when the camera stopped, etc.
    and it does this on various tapes. i have tried "capture now" and it still does it. timecode starts 2 frames later on the next clip, which i find strange. If this happens all the time for everyone using HDV footage, it seems like an incredibly f'ed up glitch in the program.
    Is there a work around if you've got a bunch of clips - do you know of a way to "merge" them somehow?
    my last thought is that could my settings be wrong for some reason? would it even allow me to control the deck and capture if they were wrong? i'm thinking about the difference between 30fps and 29.97 - and wondering if that's somehow related here.
    anyway, thanks again for the thoughts ~
    Ben

  • I created in iMovie, and extracted audio from one of the clips to use in the title sequence.  All is well, export to iDVD and it plays OK, but when I burn the DVD the audio for the titles does not play. Any suggestions?

    I created in iMovie, and extracted audio from one of the clips to use in the title sequence.  All is well, export to iDVD and it plays OK, but when I burn the DVD the audio for the titles does not play. Any suggestions?

    I am on a MacBook Pro with OS 10.6.7 running iMovie '11 and iDVD 7.1.1.  Thanks for any input.

  • Creating an online help system from FM files

    I have been tasked with converting a 340 page user manual in
    FrameMaker into RoboHelp in order to create an online help system.
    I have imported all the FM files into RoboHelp. Each Project
    file is a chapter from the FM user manual and each topic is a
    subchapter.
    Many of the images crossed over successfully. However, many
    came across blurry and others didn't come across at all, instead
    appearing as a small red box.
    I have been unable to figure out how to get the images that
    did not come across into RoboHelp.
    After compiling and viewing the primary layout - it looks
    pretty good (at least to me). The font and styles in RoboHelp are
    the same that were in FM.
    I am VERY new to RoboHelp and have learned FM primarily
    through trial and error with some outside instruction.
    I need help in getting the images into RoboHelp and some
    advice on whether or not I am on the right track with my online
    help system.

    Hi there Not User Friendly!
    Can you give me an URL showing me your online help?
    Im about making two huge online help systems, but im new to
    Framemaker and RoboHelp.
    One of them contains thousands of pages mades in Framemaker,
    the other one is going to be made from scratch.
    If you have any advices etc, I would welcome them a lot.
    Thanks in advance

  • Displaying 320x240 clips in 480x360 movie.

    I am combining 320x240 clips with other size clips and vertical photos and want to end up with a 480 x 360 movie. How do I best do this without the 320 clips and being resized larger and looking fuzzy? Can I set the smaller clips and also the vertical photos in a field of black or similar solution?

    At import iMovie 6 will scale any source file to the dimensions of your Project. Adding a simple black image file sized to your Project dimensions would allow you to prevent the actual video portion from this scaling.
    In an iMovie DV Project the all black image would be sized at 640X480 and your 320X240 QuickTime file would be placed in a "layer" above the black background. You could probably up-size to 400X300 without too much distortion.
    Making such a file is a few dozen mouse click using QuickTime Pro. Exporting from iMovie to QuickTime would allow you to create your 480X360 size using the expert settings.

  • Problem FCP6. It is impossible to create multicamera clip with DV and HDV.

    Problem FCP6. It is impossible to create multicamera clip with DV and HDV. I wish to create the multicamera clip from files dv and hdv. But the program informs that it is impossible because the different size frame. Video dv and hdv in the multicamera are incompatible? (Excuse for possible errors in the text)

    Ken Summerall, Jr. wrote:
    Do I need to export this as a movie before I can use it to be allowed to Multiclip with the DV footage?
    How else are you going to use it?
    I thought somehow there was a way to use the sequence itself into the multiclip.
    Like a nested sequence used as a clip.
    Thanks for your help.

  • Booting from FireWire Drive

    I have a LaCie 160MB (F A Porsche style) external firewire drive.
    I have been able to create a bootable clone of my iBook HD using Disk Utility and the Restore function.
    I have been able to create a bootable partition by installing the System Software onto it.
    But I have not had success using SilverKeeper or SuperDuper! Does anybody know why? I would really like to use the features of one (or another if available) of these applications.
    Thanks.
    -Ted

    Below is LaCie's Tech Support Reply. What is interesting is that they suggest Carbon Copy Cloner (instead of Silverkeeper). Also interesting is that it worked. I hope this helps some of you.
    Ted
    Hi Ted--
    Thanks for contacting LaCie Technical Support. All of our firewire
    drives can be used as boot volumes. Due to differences in operating
    systems and Macs, we are unable to provide support for booting from
    firewire drives other than the following information:
    1. Make sure the Mac is bootable via firewire. All Macs with built-in
    firewire can be booted from an external drive except:
    -Blue and White G3s
    -PCI-Graphics G4s. This can be determined by looking in the Apple
    System Profiler. The PCI Graphics G4s use the same motherboard as the
    B&W, except with a G4 processor shoehorned in.
    2. The drive must be connected to a native port. It will not work if
    the drive is connected to an add-on card.
    3. The Mac must have the latest firmware installed. The proper updater
    can be found and downloaded from here:
    http://docs.info.apple.com/article.html?artnum=86117
    Download and read the instructions carefully. It is possible to kill a
    Mac if the update is interrupted. Then, perform the update. If the
    firmware is already current, the updater will report this.
    4. Format the drive fresh using either Apple's Disk Utility in OS X or
    Silverlining in OS 9. Use the Mac OS Extended (HFS+) format only.
    (Journaling may be enabled on OS 10.3.)
    5. If making an OS 9 boot drive, you can just copy the System Folder
    over to the root of the boot volume. To be bootable, the System Folder
    must be blessed, i.e. has a happy Mac face on it. If it does not, you
    can try to force it to bless by removing the Finder from the folder and
    moving it to the root. Then, move the Finder back. The folder should
    now be blessed. If not, then there is probably an issue with the System
    Folder.
    6. In making an OS X boot drive, the ONLY two recommended solutions
    are:
    --install from the OS X install disk, preferably the one which came with
    the Mac. You will not be able to make a successful boot drive using an
    older disk set. A newer disk set should also be fine.
    --use a utility, such as Carbon Copy Cloner, to perform a copy of an
    existing OS X install. It is not possible to do this manually. There
    are issues with permissions, hidden files, and files in use that cannot
    be manually overridden. If you are using a disk image, you will still
    need to use a utility, such as Carbon Copy Cloner, to copy the files out
    from the image to the root of the new boot volume. A simple drag and
    drop will not include the necessary hidden files, such as the boot
    loader and the kernel.
    If the volume does not appear as a Start Up Disk, try booting with the
    Option key held down and see if the drive shows in the boot drive
    selection screen.
    If the volume does not show, or the kernel panics on boot, chances are
    the OS install was not performed properly.
    In general, CD/DVD drives are not bootable via firewire, but will work
    under certain circumstances, usually booting from OS X to OS X. They
    should not be relied upon as such. To boot from one, hold down the
    Option key while booting. If the boot CD shows on the screen, you may
    select it and continue the boot.

  • How to create a F4 help for a report selection screen field

    hi,
    can any one guide me to create F4 help for a field in a selection screen in a report program,plz give me a sample code

    hi,
    Here are the following ways
    1.with the help of match code objects we can create the F4 Functionality for Field.
    Syntax is :
    PARAMETERS: p_org LIKE t527x-orgeh MATCHCODE OBJECT zorg.
    2. One more thing is we can do it with Search Help's also.
    3. Even we can do it HELP Views also.
    Help Views:
    You have to create a help view if a view with outer join is needed as selection method of a search help
    The selection method of a search help is either a table or a view. If you have to select data from several tables for the search help, you should generally use a database view as selection method. However, a database view always implements an inner join. If you need a view with outer join for the data selection, you have to use a help view as selection method.
    All the tables included in a help view must be linked with foreign keys. Only foreign keys that have certain attributes can be used here. The first table to be inserted in the help view is called the primary table of the help view. The tables added to this primary table with foreign keys are called secondary tables.
    The functionality of a help view has changed significantly between Release 3.0 and Release 4.0. In Release 3.0, a help view was automatically displayed for the input help (F4 help) for all the fields that were checked against the primary table of the help view. This is no longer the case in Release 4.0.
    As of Release 4.0, you must explicitly create a search help that must be linked with the fields for which it is offered (see Linking Search Helps with Screen Fields ).
    Existing help views are automatically migrated to search helps when you upgrade to a release higher than 4.0.
    A help view implements an outer join, i.e. all the contents of the primary table of the help view are always displayed. You therefore should not formulate a selection condition for fields in one of the secondary tables of the help view. If records of these secondary tables cannot be read as a result of this selection condition, the contents of the corresponding fields of the secondary table are displayed with initial value.
    <REMOVED BY MODERATOR>
    Edited by: Alvaro Tejada Galindo on Feb 15, 2008 3:15 PM

  • Possible to change the business Partner from a created Contract in ICWEB??

    Hello experts,
    I would like to know if it is posible to change the BP from a created contract in ICWEB.
    I check the option "CONTRACT MANAGMENT" and there is an option to change the premise with the button "Move To Other Premise" but I don't find an option to change the Business Partner from a created contract.
    Can you help me, please??
    Thank in advance.
    Edited by: Javier Garcia on Aug 19, 2008 7:01 PM

    Hello S Reddy and a lot of thanks for your help.
    But I don't know where I can select this option, there isn't the  where I can associate the option in customizing or what transaction. Could you explain me with more details, please ??
    Thanks in advance.
    Regards.

Maybe you are looking for

  • Help Needed on Null Pointer Exception

    Hi All, Am using the wls10 platform. Any help would be appriciated. Have been struggling on this for a bit now. Thanks, The the relevant control code is: @JdbcControl.SQL(statement = "SELECT p.PATCH_ID, p.REQUIRES,ps.PRODUCT_DISPLAY_NAME, v.VERSION_N

  • Date format problem in webdynpro

    We are trying to display the join date of employees  in a table. It gives mm/dd/yyyy format. We want the date in dd/mm/yyyy format .Can anyone help me with the code for this?

  • Upgrade Air to new style battery

    I've got an 11" Air that was purchased in Dec of 2011. Can it be upgraded to the new style, longer life, battery?

  • Louis Vuitton sleeve for MacBook Pro - Anyone buy this?

    Would you buy this for your MacBook Pro? http://www.louisvuitton.com/web/flash/index.jsp?direct1=cate&direct2=homme&direc t3=cat10013&direct4=cat1410089&direct5=cat1410094&direct6=prod1290013&langue=en_ US&buy=1 For the price ($715 US), you would thi

  • T400: vertical scroll not working on msn messenger or itune

    Does anyone have this problem? my T400 touch pad vertical scroll doesnt work on software like msn messenger or itune, and some other software like gtalk. I have install the latest UltraNav so I was wondering if anyone has this problem or can help me