Compile Error - No Spill Candidate Found

Hi,
Im trying to create a FPGA vi using the high throughput math in Labview 2009. However whenever I click save or run, i get the following error: -
"Compile error. Report this problem to National Instruments Tech Support
out of regs - no spill candidate found, reg 969!"
This error occurs when I have any of the high throughput stuff in my vi, however as soon as delete them, the error disappears. Can anybody help,
Thanks,
Mark

Find attached.
Attachments:
Servo_FPGA10.vi ‏228 KB

Similar Messages

  • Compiling Error... Found: Class Expected: Value

    Hello, I am writing a GUI with a "join file" feature.
    So far, I load my files (multiple files enabled):
    private void loadFile()
                 JFileChooser fc = new JFileChooser();
                  fc.setMultiSelectionEnabled(true);
                int returnVal = fc.showOpenDialog(MyFrame.this);
                   if (returnVal == JFileChooser.APPROVE_OPTION)
                       File[] files = fc.getSelectedFiles();
           }I join them by adding them into a vector (not sure if there's a better way?):
    public void joinFiles(File[] files)
                   Vector v = new Vector();
                   for (int i = 0; i<files.length; i++)
                       String fileName = new String(files.toString());
                   String line;
                        try
                             BufferedReader in = new BufferedReader(new FileReader(fileName));
                             if ( !in.ready() ) throw new IOException();
                                  while ( (line = in.readLine() ) != null)
                   v.add(line);
                        in.close();
                        catch (IOException e)
                        System.out.println(e);
    Then, as I have a GUI, I have menu item actions set up as follows:
    public void actionPerformed(ActionEvent e){
              if(e.getSource() == load){
                   loadFile();
              if(e.getSource() == join){
                   joinFiles(File[] files);
              }This generates the error:
    fileManipulator.java:93: '.class' expected
    joinFiles(File[] files);
    ^
    fileManipulator.java:93: ')' expected
    joinFiles(File[] files);
    ^
    fileManipulator.java:93: unexpected type
    required: value
    found : class
    joinFiles(File[] files);
    ^
    Help me please!!

    public class FileStuff {
        File [] fileArray;  //Declare as instance variable.
    private void loadFile()
        JFileChooser fc = new JFileChooser();
        fc.setMultiSelectionEnabled(true);
        int returnVal = fc.showOpenDialog(MyFrame.this);
        if (returnVal == JFileChooser.APPROVE_OPTION)
            //files IS NOT ACCESSIBLE OUTSIDE THIS "if" statement.
            File[] files = fc.getSelectedFiles();      // DELETE THIS
            fileArray = fc.getSelectedFiles();    // ADD THIS !!!!!!!
    public void joinFiles(File [] files)
    {  .. no change ..}
    public void actionPerformed(ActionEvent e)
    {  .. no change to "loadFile" part ..;
       if (e.getSource() = join)
          joinFiles(fileArray);
    }

  • Compiler error out of regs, reg 1239

    I've installed LV2009 and trying to open version  8.6 vi.
    I am getting a pop-up message "Compiler error. REport this problrm to Nationa Instruments Tech Support. out of regs - no spill candidate found, reg 1239!"
    32-bit Labview client  on Win 7 64 bit and Win server 2008 64 bit give same error.
    The code attached.
    Solved!
    Go to Solution.
    Attachments:
    SyncLoc.llb ‏465 KB

    After converting and testing the problematic VI in LV 2009 sp1, I found that the code that worked for me since LV 8.2 and 8.6 is bugged now.  
    I am using an array of waveforms. I apply "Split 1D Array", followed by "Decimate 1D Array" library functions. The resulted array is stripped of the waveform information in LV2009.
    I isolated the bugged piece in the attached VI.
    Is it a bug?
    Attachments:
    Test decimate array.vi ‏23 KB

  • Just in time Compilation Error

    Hai ,
    i got the following Error :
    Just in Time Compilation Error
    Invalid parser construct found on line 26 at position 19.
    ColdFusion was looking at the following text:.Invalid
    expression format.
    The usual cause is an error in the expression structure.
    this error occurs on cold fusion 5.
    this class works fine on Cold fusion mx and 7.
    This class basically uses the zip api of java to zip files.
    <cfobject type="java" class="myZip" name="z">
    <cfset result =
    z._ZFolder("G:\Official\Development\Team05\zip\","G:\Official\Development\Team05\mi.zip") >
    <cfoutput>#result# </cfoutput>

    It might help to escape the # character in the other two
    colours, thus
    bordercolordark="##006600" bordercolorlight="##66CC33"

  • C# compiling error: 'System.Array' does not contain a definition for 'Select' and no extension method 'Select' accepting a first argument of type 'System.Array' could be found (are you missing a using directive or an assembly reference?)

    Hello experts,
    I'm totally new to C#. I'm trying to modify existing code to automatically rename a file if exists. I found a solution online as follows:
    string[] allFiles = Directory.GetFiles(folderPath).Select(filename => Path.GetFileNameWithoutExtension(filename)).ToArray();
            string tempFileName = fileName;
            int count = 1;
            while (allFiles.Contains(tempFileName ))
                tempFileName = String.Format("{0} ({1})", fileName, count++); 
            output = Path.Combine(folderPath, tempFileName );
            string fullPath=output + ".xml";
    However, it gives the following compilation errors
    for the Select and Contain methods respectively.:
    'System.Array' does not contain a definition for 'Select' and no extension method 'Select' accepting a first argument of type 'System.Array' could be found
    (are you missing a using directive or an assembly reference?)
    'System.Array' does not contain a definition for 'Contains' and no extension method 'Contains' accepting a first argument of type 'System.Array' could be
    found (are you missing a using directive or an assembly reference?)
    I googled on these errors, and people suggested to add using System.Linq;
    I did, but the errors persist. 
    Any help and information is greatly appreciated.
    P. S. Here are the using clauses I have:
    using System;
    using System.Data;
    using System.Windows.Forms;
    using System.IO;
    using System.Collections.Generic;
    using System.Text;
    using System.Linq;

    Besides your issue with System.Core, you also have a problem with the logic of our code, particularly your variables. It is confusing what your variables represent. You have an infinite loop, so the last section of code is never reached. Take a look 
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.IO;
    namespace consAppFileManipulation
    class Program
    static void Main(string[] args)
    string fullPath = @"c:\temp\trace.log";
    string folderPath = @"c:\temp\";
    string fileName = "trace.log";
    string output = "";
    string fileNameOnly = Path.GetFileNameWithoutExtension(fullPath);
    string extension = Path.GetExtension(fullPath);
    string path = Path.GetDirectoryName(fullPath);
    string newFullPath = fullPath;
    string[] allFiles = Directory.GetFiles(folderPath).Select(filename => Path.GetFileNameWithoutExtension(filename)).ToArray();
    string tempFileName = fileName;
    int count = 1;
    //THIS IS AN INFINITE LOOP
    while (allFiles.Contains(fileNameOnly))
    tempFileName = String.Format("{0} ({1})", fileName, count++);
    //THIS CODE IS NEVER REACHED
    output = Path.Combine(folderPath, tempFileName);
    fullPath = output + ".xml";
    //string fullPath = output + ".xml";
    UML, then code

  • Error compiling IDL to C++: LIBORB_CAT:147: ERROR: Registry `REG_KEY_SYSTEM' not found.

    I'm trying to compile a simple IDL file into C++ using idl.exe, and am seeing the
    following output:
    LIBORBCMD_CAT:27: ERROR: An internal software error occurred.
    -LIBORB_CAT:147: ERROR: Registry `REG_KEY_SYSTEM' not found.
    I'm using Tuxedo 8.1 on a Win2K platform. Is anyone able to shed any light on
    this?
    Regards
    Brian

    Hi Fernando,
    Try setting this environment variable and retry.
    REG_KEY_SYSTEM=d:\oracle\tuxedo11gR1\udataobj\System.rdp
    Thanks
    Venkat

  • Compilation Error for import classes not found in generated Proxy Class

    Hi,
    We are generating java classes for the COM dll using JCOM com2java compiler.
    We are getting a compilation error for import class not found when compiling the
    generated Proxy java source code. It can't find the com.bea.jcom.Dispatch class that
    the generated Proxy java source code extends. It also can't find com.bea.jcom.Variant
    or com.bea.jcom.Param. These are interfaces or data types or classes used by COM
    library.
    I added weblogic.jar to my class path and the only Dispatch class i found inside
    the weblogic.jar is com.linar.jintegra.Dispatch;
    We have com objects for which we want to develop an EJB client to interface with
    the COM object using JCOM with Native Mode disabled.
    Any help on the compilation error..I tried changing the extends for Dispatch to com.linar.jintegra.Dispatch
    but the other errors are still there.
    To begin with, I think the generated code should not refer to any of the COM data
    types.
    Any help please.
    Thank you in advance,
    Regards,
    Rahul Srivastava
    [email protected]

    Hi,
    I resolved the other errors by changing all references from com.bea.jcom.Variant
    etc to com.linar.jintegra.class name..all were present under the com.linar.jintegra
    package.
    Thank you all anyways,
    Regards,
    rahul
    "Rahul Srivastava" <[email protected]> wrote:
    >
    Hi,
    We are generating java classes for the COM dll using JCOM com2java compiler.
    We are getting a compilation error for import class not found when compiling
    the
    generated Proxy java source code. It can't find the com.bea.jcom.Dispatch
    class that
    the generated Proxy java source code extends. It also can't find com.bea.jcom.Variant
    or com.bea.jcom.Param. These are interfaces or data types or classes used
    by COM
    library.
    I added weblogic.jar to my class path and the only Dispatch class i found
    inside
    the weblogic.jar is com.linar.jintegra.Dispatch;
    We have com objects for which we want to develop an EJB client to interface
    with
    the COM object using JCOM with Native Mode disabled.
    Any help on the compilation error..I tried changing the extends for Dispatch
    to com.linar.jintegra.Dispatch
    but the other errors are still there.
    To begin with, I think the generated code should not refer to any of the
    COM data
    types.
    Any help please.
    Thank you in advance,
    Regards,
    Rahul Srivastava
    [email protected]

  • Error 906 message not found on compiling form in forms builder

    When compiling a form in forms builder 6i I get the message: error 906: message not found. No message file for product=plsql80 facility=PCM
    What should I do?

    Is your PLSQL80 environment variable set? - Should point to the PLSQL80 directory as well.
    If this is the only missing error that you have I wouldn't worry about it. 906 just means that PL/SQL could not compile the program unit.

  • After December 2014 update, Compile Error - calling Excel Objects Sub "Object library invalid or contains references to object definitions that could not be found"

    When try to call Sub in Excel Objects > SheetXX after the original xlsm is modified and saved by another user in diff machine, getting an error below and seems Excel cannot identify any subs exists in Sheet.
    Compile error:
    Object library invalid or contains references to object definitions that could not be found
    Note: it seems that this problem has been occurring After December 2014 update and still exists even after applying the fix:
    http://blogs.technet.com/b/the_microsoft_excel_support_team_blog/archive/2014/12/11/forms-controls-stop-working-after-december-2014-updates-.aspx)

    Hi Kwlee324,
    Thanks for sharing the workaround with us. It would be very helpful for others who have the same issue.
    Also I found a two useful links about the error message "Object library invalid or contains references to object definitions that could not be found":
    https://support.microsoft.com/kb/2703186
    http://blogs.msdn.com/b/vsod/archive/2009/06/05/visual-basic-6-controls-stop-working-after-security-advisory-960715.aspx
    Hope it is helpful.
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Compiler error "oracle.xml.parser.v2.XMLElement" not found in class com.ora

    Compiler error "oracle.xml.parser.v2.XMLElement" not found in class com.oracle.demos......?
    I am currently testing a simple sample application with a java code similar to the one shown at
    the bottom of this post.
    However during deployment/compilation the compiler gives an error:
    Error(26,23): XMLElement not found in class com.oracle.demos.orderbooking.ApproveImpl
    Additionally similar other errors appear:
    Error(23,66): JAXBException not found in class com.oracle.demos.orderbooking.ObjectFactory
    Error(51,58): UnmarshalException not found in class com.oracle.demos.orderbooking.ObjectFactory
    Error(9,92): Element not found in interface com.oracle.demos.orderbooking.Approve
    What's wrong?
    It seems to me that I have to add some (more) *.jar files/libraries to the project?
    Which *.jars and where should I add them in JDeveloper?
    source code:
    package com.oracle.demos.orderbooking;
    public class ApproveImpl extends com.oracle.demos.orderbooking.ApproveTypeImpl implements com.oracle.demos.orderbooking.Approve
    public ApproveImpl(oracle.xml.parser.v2.XMLElement node)
    super(node);
    }

    Hai James this the response I am getting can you please tell what should I write inside ora:getNodeValue() to get the value of node <genReturnText>
    The drag and dropping the variable name is not working, I have to write the path manually but I dont know how.
    <ns1:getRoutingAndFrameJumpersResponse xmlns:ns1="com.NetworkInstallations">
    -<com.GetRoutingAndFrameJumpersOutput>
    <destination>
    SW
    </destination>
    <e2EData>
    busProcOriginator
    </e2EData>
    <genReturnCode>
    40777
    </genReturnCode>
    <genReturnText>
    EMW_Get_Routing_And_FrameJumpers_Succeeded
    </genReturnText>
    <supplCode>
    ISY002
    </supplCode>
    <supplText>
    Transaction successfully completed.
    </supplText>
    <severityCode>
    S
    </severityCode>
    <retriable>
    false
    </retriable>
    </com.GetRoutingAndFrameJumpersOutput>
    </ns1:getRoutingAndFrameJumpersResponse>

  • Compile error: Object library invalid or contains references to object definitions that could not be found

    Office Online 365 installed today January 20 on brand new HP Envy. Get the above message when loading Excel applications with code and when running code. Will greatly appreciate help. Applications run well on other computers.

    Hi Jaime,
    >> Get the above message when loading Excel applications with code and when running code. Will greatly appreciate help. Applications run well on other computers.
    >> Compile error: Object library invalid or contains references to object definitions that could not be found
    According to the error message, it seems some ActiveX control is not registered successfully on the new machine.
    Would you mind telling us which ActiveX controls you used in the workbook?
    >> For my applications Excel from Office 365 is now useless. Should I just let my subscription run out and purchase another version?
    According to my experience, this issue is not related to the subscription.
    Regards,
    Jeffrey
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Compiling error C++: float.h not found

    Dear All,
    I am using a Mid 2011 Macbook Air, 1.8 GHz Intel Core i7 running Mac OS 10.9.4. I have Xcode 5.1.1 and have installed the latest Command Line Tools (Late July 2014). I have homebrew installed the gcc compiler.
    I am currently trying to install the coin-or project BCP from here. I have followed the installation instructions as provided here. The "../configure" command works, I get a positive configure message "configure: Main configuration of Bcp successful". However, the next command "make" fails with the following error message
    $ make
    Making all in CoinUtils
    Making all in src
    /Applications/Xcode.app/Contents/Developer/usr/bin/make  all-am
    if /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I`echo ../../../CoinUtils/src`      -MT CoinBuild.lo -MD -MP -MF ".deps/CoinBuild.Tpo" -c -o CoinBuild.lo ../../../CoinUtils/src/CoinBuild.cpp; \
      then mv -f ".deps/CoinBuild.Tpo" ".deps/CoinBuild.Plo"; else rm -f ".deps/CoinBuild.Tpo"; exit 1; fi
    g++ -DHAVE_CONFIG_H -I. -I../../../CoinUtils/src -MT CoinBuild.lo -MD -MP -MF .deps/CoinBuild.Tpo -c ../../../CoinUtils/src/CoinBuild.cpp  -fno-common -DPIC -o .libs/CoinBuild.o
    In file included from ../../../CoinUtils/src/CoinBuild.cpp:10:0:
    /usr/local/include/c++/4.9.0/cfloat:41:19: fatal error: float.h: No such file or directory
    #include <float.h>
                       ^
    compilation terminated.
    make[3]: *** [CoinBuild.lo] Error 1
    make[2]: *** [all] Error 2
    make[1]: *** [all-recursive] Error 1
    make: *** [all-recursive] Error 1
    I have dug around a bit, and found threads about Mavericks moving/deleting some header files that gcc relies on. The suggested solution was to install the latest Developer tools, which I have done.
    It looks to me, like it is a compiling error, and the compiler isn't looking for the header at the right place. My problem is, I have no real knowledge about these things, I'm more of a front end programmer. I have tried all fixed I could find on the internet, but nothing seems to work.
    Any further suggestions on how I could get this to work would be very much appreciated.
    Thank you.

    When using GCC, consider replacing <float.h> with <cfloat> which also includes <float.h>, but likely relative to its placement in GCC, not in OS X.
    When you use the OS X command line tools, the implicit path for <float.h> is in /usr/include/c++/4.2.1/tr1
    Your homebrew installed GCC will be looking for <float.h> in:
    /usr/local/lib/gcc/x86_64-apple-darwin13.1.0/4.9.0/include
    You may have to educate GCC where its include files live, and not to be confused with those of Xcode command line tools.

  • [Solve]Compile Ada code with integer_IO ,error integer.ads not found.

    Hello all again.
    I do some programming in Ada and i am very fascinated this language.
    I got problem when using integer_IO in my code.
    When it compiling I got strange error integer.ads not found.
    BTW.My compiler is GNAT 4.4.1.
    Thanks for help.
    Last edited by SpeedVin (2010-03-01 17:30:56)

    drcouzelis wrote:
    I also think Ada is fascinating. I wrote a small video game in Ada and I use Ada a little at work.
    "integer_IO" and "Integer_IO" doesn't matter, because Ada is case insensitive.
    I'm not home right now, but I think "Integer_IO" is a subpackage of "Text_IO":
    with Ada.Text_IO.Integer_IO;
    If you want, you can post your code and I'll see if I can compile it.
    Are you an Ada beginner? Even though I have been working with Ada for more than a year now, I still don't think I'm very good at it. I wish there was more documentation and more projects used Ada.
    Yes I'm new  into this language.
    I really won to that there will be more project's/program's written in ADA.
    This is my program code:
    With Text_IO;
    Use Text_IO;
    With Ada.Text_IO.Integer_IO;
    procedure file is
    Age :integer range 0..100;
    begin
    if Age < 18 then
    put_line("BABY!!!");
    else
    put_line("OLD MAN!!!");
    end if;
    end;
    When I try to compile it I get error:
    file.adb:3:17: "Integer_IO" is a nested package, not a compilation unit

  • TRIM() not found? Compile error: Can't find project or library in Excel 2007

    I am preparing to make a few alterations to a spreadsheet that another person built.  I have NOT made any changes to it yet.
    They put in a button that allows portions of the worksheet to print.  I am now using Excel 2007.  Their code ran fine in 2003.
    The button had worked in Excel 2003- but now (without any changes) throws an error "Compile Error: Cant find project or library."
    TRIM is highlighted in the following code:  (See below for the whole sub)
    If Trim(Worksheets("Measurements").Cells(RowCounter, ColumnCounter).Value) <> "" Then
                    If RowCounter > PrintRowMarker Then
                        PrintRowMarker = RowCounter
                    End If
                    If ColumnCounter > PrintColumnMarker Then
                        PrintColumnMarker = ColumnCounter + 1
                    End If
                End If
    I have added in the following references into Excel via the big button in the upper left and the "Excel Options" screens:
    Analysis Toolpak and Analysis Toolpak-VBA.  The sheet "Measurements" is present.
    1)  Are these the right packages for the TRIM function?
    2)  Is there a different Add-in that is needed?
    3)  Is there an additional step I must use to actually add in these packages?
    4)  Is there something else I should do?
    Thanks-
    Loralee
    P.S. Access 2003 finds (it's version of) TRIM fine- so a version is on the machine.  This spreadsheet if failing in the same way on 2 machines- both with Office 2007 installed.
    Private Sub BtnPrint_Click()
        Dim RowStarter  As Integer      'Where to start checking rows for content
        Dim RowCounter  As Integer      'The current row being checked
        Dim ColumnCounter  As Integer   'The current column being checked
        Dim PrintRowMarker  As Long   'The last row with data
        Dim PrintColumnMarker As Long 'The last column with data
        Dim NoMoreData As Boolean       'Look for a blank record
        Dim RangeValue As String        'Define the range string value
        Dim EndRangeValue As String
        PrintColumnMarker = 0
        PrintRowMarker = 0              'Initialize the row printing marker
        RowStarter = 5                  'Print Starting Point
        For RowCounter = 2005 To RowStarter Step -1
            For ColumnCounter = 50 To 2 Step -1
                If Trim(Worksheets("Measurements").Cells(RowCounter, ColumnCounter).Value) <> "" Then
                    If RowCounter > PrintRowMarker Then
                        PrintRowMarker = RowCounter
                    End If
                    If ColumnCounter > PrintColumnMarker Then
                        PrintColumnMarker = ColumnCounter + 1
                    End If
                End If
            Next ColumnCounter
                If PrintRowMarker > 0 Then
                End If
        Next RowCounter
        EndRangeValue = IndexToString(PrintRowMarker, PrintColumnMarker)
        RangeValue = "$A$1:" & EndRangeValue
        Worksheets("Measurements").PageSetup.PrintArea = RangeValue
        Worksheets("Measurements").PageSetup.PrintGridlines = True      'Turn on gridlines
        Worksheets("Measurements").PrintPreview                         'PRINT THAT PUPPY!
    End Sub

    Appears OK to me but the error message " Cant find project or library." suggests it could possibly be the references in VBA.
    In VBA select menu item Tools - References.
    Ensure that the following are checked:-
    Visual Basic for Applications
    Microsoft Excel 12.0 Object Library
    OLE Automation
    Microsoft Office 12.0 Object Library
    It there are any references displayed as Missing then scroll down to find the equivalent reference and check it and then uncheck the Missing one/s.
    Regards, OssieMac

  • Can't Export Movie - Unknown Compile Error - Help!

    I edited a 32 minute movie in Premiere Elements 10, and now I'm trying to export it.  At some point during the export, and it seems to vary, I get an unknown compile error.  I've been trying to export the movie for the past week and all I get is failure despite trying just about everything I've found written about how to solve this.
    I have Win 7 Ultimate SP 1 running on a Lenovo desktop machine with an Intel Core 2 Quad CPU at 2.67 GHz, 4GB of RAM, 32 bit proc.
    Premiere is installed on system C drive with 6 GB of free space.
    Project and scrach disks are on D drive with 165 GB of free space.
    Media files are on 2nd E drive with 50GB of free space.
    Project and most source material is NTSC DV -- there are quite a few photos with motion, plus some iPhone HD video on the timeline, hundreds of clips in all plus narration, a few titles, etc.
    Export destination folder is on D drive.
    Everything will render to green lines atop timeline (sometimes it quits during render and I have to keep hitting Enter to continue rendering, but eventually it's all green)
    So far I've tried:
    - Reinstalling PE 10
    - Reinstalling Quicktime
    - Copying all the photos to their own separate folder
    - Editing each photo slightly (outside of PE 10) and resaving to make sure none of the photos are corrupted
    - Emptying the temp folder
    - Deleting all the renders and cache files and letting them rebuild
    - Exporting small pieces of the timeline to try to identify a bad clip -- this is a maddening process and I did find one clip that would generate the error, but I managed to export that to AVI and reimport and replace on timeline.  It would be awfully nice if PE would just TELL ME which clip it doesn't like if in fact it's a clip error.
    - Turning off the shadow / highlight feature I had on some clips, but this wasn't the issue, smaller sections with these clips exported fine
    - Tried exporting to various formats: Vimeo SD, MPEG DV Standard, iPad Standard High Quality, AVI -- all result in the same error (the format I want by the way is Vimeo SD)
    - Rebooting the machine and turning everything off that might possibly consume memory
    This machine has never had problems exporting in the past.  One thing I did try that worked -- installed PE 10 on another (less capable) Win 7 machine, and fed it all the media via an external drive.  The other machine did the export fine (though it took a while given it is underpowered).  This is nothing more than a work around though as I don't normally have access to this machine and I'm not done editing.
    I'm at my wits' end!  What else can I do to get this movie file to export?
    Appreciate any help or clues you can provide to solve this mystery.

    Oh, that is tragic!
    I never had any issues with mine. Maybe it knew how respectful I was, having come from manual rewinds and a sync block? The Moviola was a godsend, at least for me. I am glad that I got to edit film, and on many setups, as some of that translated well to digital Video. Back when I was in film school, Video was 2" tape, and the only editing was by cutting at a 45 degree angle, and splicing the tape. There was not even deck-to-deck editing, way back then. Also, Video looked like crap, at least to my eyes. We could only use a switcher, to "edit," or do a feed to air. Looked like crap!
    As for the Lexus, I can imagine all sorts of problems. My new LX-570 requires me to "Accept," when I put it into reverse, on the rear-view monitor! At least my wife's MB does not require that, but it is a 2011 model, so maybe the 2013 models will require that the user sign off on all sorts of "stuff."
    Now, I can play Finding Nemo, for my rear-seat passengers, while driving, but the front-seat passengers cannot see it, which is just fine. When driving, I am not even a fan of hands-free calls, and declined most of the streaming stock quotes, etc. for XM/Sirius radio. NOT while I am driving. I will save that for reading the WSJ in the club at the airport.
    Some years ago, our driver in London got a new BMW 7-series, and it allowed the playing of DVD's, even in the front, while driving. Not sure that I would want that, but such is life. At least his seats' ventilation system was "well-chilled," where ours' are just air. He almost froze my bum, showing off his new auto.
    Now, working with PS, or PrE in an auto, or even on a mobile device, is just not something that I can wrap my old head around. I want a fast computer, with a big display, and cannot imagine editing Images, or Video, on any handheld (or auto) device.
    Hunt

Maybe you are looking for

  • Does SSRS dynamically set the alignment of table cells based on the majority of cell types in the column???

    This is the first time I've run into this, but it appears that SSRS is setting the text-align based on the other cells in the column.  I have cells being set with either a dataset item of type System.Double or to "--" when Is Nothing evaluates to tru

  • Why is the Application becoming very slow

    I am using DSC version 7.0 and have connected about 25 tags in tag engine to PLC and siemens drive. I also have about 15 tags connected directly through data socket. The problem is that when I run my application it becomes very slow and sometimes the

  • Realtek AC97 Audio CutOff (ALC655)!

    Hi, After a month from replacing my mainboard (old board was fried during system shutdown along with PSU), I am starting to experience these weird problems... I use the onboard AC97 codec on my MSI 865PE Neo2 mainboard which is manufactured by Realte

  • Restore pages file not saved, restore pages file not saved

    Hi. Good afternun. I was typing mi special publication to get a grade of plastic surgeon. I did not save the file in the last

  • Flash Help Cannot be Read...!

    Hii guys... I have a problem with Flash CS3 Help window...When I press the "F1" button and select the title which i wanna look at, At the right side of the pane, it shows me the quite little words that i cant read at all...please help me... there is