SG 7.1x158 crashes when applying custom look with Premier Dynamic Link

The sequence opens just fine, and I'm able to create a grade for a selected clip.  However, when I save the custom look and then try to apply it to any other clip, SG crashes.  Odd thing is that I've tried a couple of the example looks and they don't crash.  Crash only occrus when I choose any of the custom looks I've saved. 
Only workaround I see at this point is to apply the look using Lumetri in Premier, which seems to work just fine.
Anyone else run into this problem?
--Ken

Hi,
This is a known issue when applying custom looks with masks. We are working in a solution, please keep tuned.
Thanks,
Fran

Similar Messages

  • JFileChooser not opening when we applied custom Look and Feel & Theme

    Dear All,
    JFileChooser not opening when we applied custom Look and Feel & Theme.
    The following is the source code
    import java.awt.Color;
    import javax.swing.*;
    import javax.swing.plaf.ColorUIResource;
    import javax.swing.plaf.metal.MetalLookAndFeel;
    import com.jgoodies.looks.plastic.*;
    public class CustomTheme {
    public static void main(String[] args)throws UnsupportedLookAndFeelException{
    UIManager.setLookAndFeel(new MyLookAndFeel());
    MyLookAndFeel.setCurrentTheme(new CustomLaF());
    JFrame frame = new JFrame("Metal Theme");
    JFileChooser jf = new JFileChooser();
    System.out.println("UI - > "+jf.getUI());
    //jf.updateUI();
    frame.getContentPane().add(jf);
    frame.pack();
    frame.setVisible(true);
    static class CustomLaF extends PlasticTheme {
    protected ColorUIResource getPrimary1() {
    return new ColorUIResource(232,132,11);
    public ColorUIResource getPrimary2() {
              return (new ColorUIResource(Color.white));
         public ColorUIResource getPrimary3() {
              return (new ColorUIResource(232,132,11));
    public ColorUIResource getPrimaryControl() {
    return new ColorUIResource(Color.GREEN);
    protected ColorUIResource getSecondary1() {
    return new ColorUIResource(Color.CYAN);
    protected ColorUIResource getSecondary2() {
              return (new ColorUIResource(Color.gray));
         protected ColorUIResource getSecondary3() {
              return (new ColorUIResource(235,235,235));
         protected ColorUIResource getBlack() {
              return BLACK;
         protected ColorUIResource getWhite() {
              return WHITE;
    static class MyLookAndFeel extends Plastic3DLookAndFeel {
              protected void initClassDefaults(UIDefaults table) {
                   super.initClassDefaults(table);
              protected void initComponentDefaults(UIDefaults table) {
                   super.initComponentDefaults(table);
                   Object[] defaults = {
                             "MenuItem.foreground",new ColorUIResource(Color.white),
                             "MenuItem.background",new ColorUIResource(Color.gray),
                             "MenuItem.selectionForeground",new ColorUIResource(Color.gray),
                             "MenuItem.selectionBackground",new ColorUIResource(Color.white),
                             "Menu.selectionForeground", new ColorUIResource(Color.white),
                             "Menu.selectionBackground", new ColorUIResource(Color.gray),
                             "MenuBar.background", new ColorUIResource(235,235,235),
                             "Menu.background", new ColorUIResource(235,235,235),
                             "Desktop.background",new ColorUIResource(235,235,235),
                             "Button.select",new ColorUIResource(232,132,11),
                             "Button.focus",new ColorUIResource(232,132,11),
                             "TableHeader.background", new ColorUIResource(232,132,11),
                             "TableHeader.foreground", new ColorUIResource(Color.white),
                             "ScrollBar.background", new ColorUIResource(235,235,235),
                             "ToolTip.foreground", new ColorUIResource(232,132,11),
                             "ToolTip.background", new ColorUIResource(Color.white),
                             "OptionPane.questionDialog.border.background", new ColorUIResource(Color.gray),
                             "OptionPane.errorDialog.titlePane.foreground", new ColorUIResource(Color.white),
                             "OptionPane.questionDialog.titlePane.background", new ColorUIResource(232,132,11),
                             "Table.selectionBackground", new ColorUIResource(232,132,11)
                   table.putDefaults(defaults);
    When i run this program the following error is coming:
    Exception in thread "main" java.lang.NullPointerException
    at javax.swing.plaf.metal.MetalFileChooserUI$IndentIcon.getIconWidth(Unknown Source)
    at javax.swing.SwingUtilities.layoutCompoundLabelImpl(Unknown Source)
    at javax.swing.SwingUtilities.layoutCompoundLabel(Unknown Source)
    at javax.swing.plaf.basic.BasicLabelUI.layoutCL(Unknown Source)
    at javax.swing.plaf.basic.BasicLabelUI.getPreferredSize(Unknown Source)
    at javax.swing.JComponent.getPreferredSize(Unknown Source)
    at javax.swing.plaf.basic.BasicListUI.updateLayoutState(Unknown Source)
    at javax.swing.plaf.basic.BasicListUI.maybeUpdateLayoutState(Unknown Source)
    at javax.swing.plaf.basic.BasicListUI$ListSelectionHandler.valueChanged(Unknown Source)
    at javax.swing.DefaultListSelectionModel.fireValueChanged(Unknown Source)
    at javax.swing.DefaultListSelectionModel.fireValueChanged(Unknown Source)
    at javax.swing.DefaultListSelectionModel.fireValueChanged(Unknown Source)
    at javax.swing.DefaultListSelectionModel.changeSelection(Unknown Source)
    at javax.swing.DefaultListSelectionModel.changeSelection(Unknown Source)
    at javax.swing.DefaultListSelectionModel.setSelectionInterval(Unknown Source)
    at javax.swing.JList.setSelectedIndex(Unknown Source)
    at javax.swing.plaf.basic.BasicComboPopup.setListSelection(Unknown Source)
    at javax.swing.plaf.basic.BasicComboPopup.access$000(Unknown Source)
    at javax.swing.plaf.basic.BasicComboPopup$ItemHandler.itemStateChanged(Unknown Source)
    at javax.swing.JComboBox.fireItemStateChanged(Unknown Source)
    at javax.swing.JComboBox.selectedItemChanged(Unknown Source)
    at javax.swing.JComboBox.contentsChanged(Unknown Source)
    at javax.swing.AbstractListModel.fireContentsChanged(Unknown Source)
    at javax.swing.plaf.metal.MetalFileChooserUI$DirectoryComboBoxModel.setSelectedItem(Unknow
    at javax.swing.plaf.metal.MetalFileChooserUI$DirectoryComboBoxModel.addItem(Unknown Source
    at javax.swing.plaf.metal.MetalFileChooserUI$DirectoryComboBoxModel.access$2300(Unknown So
    at javax.swing.plaf.metal.MetalFileChooserUI.doDirectoryChanged(Unknown Source)
    at javax.swing.plaf.metal.MetalFileChooserUI.access$2600(Unknown Source)
    at javax.swing.plaf.metal.MetalFileChooserUI$12.propertyChange(Unknown Source)
    at javax.swing.event.SwingPropertyChangeSupport.firePropertyChange(Unknown Source)
    at javax.swing.event.SwingPropertyChangeSupport.firePropertyChange(Unknown Source)
    at javax.swing.JComponent.firePropertyChange(Unknown Source)
    at javax.swing.JFileChooser.setCurrentDirectory(Unknown Source)
    at javax.swing.JFileChooser.<init>(Unknown Source)
    at javax.swing.JFileChooser.<init>(Unknown Source)
    at CustomTheme.main(CustomTheme.java:20)
    I am extending the JGoodies Look And Feel & Theme.
    Thanks in advance
    Krishna Mohan.

    Dear cupofjoe,
    Thank you for your response.
    I am using the Latest JGoodies Look & Feel which is downloaded from http://www.jgoodies.com.
    i am writing our own custom Look & Feel By Overridding Jgoodies Look & Feel.
    In that case i am getting that error.
    The following is the source code:
    import java.awt.Color;
    import javax.swing.*;
    import javax.swing.plaf.ColorUIResource;
    import javax.swing.plaf.metal.MetalLookAndFeel;
    import com.jgoodies.looks.plastic.*;
    public class CustomTheme {
    public static void main(String[] args)throws UnsupportedLookAndFeelException{
    UIManager.setLookAndFeel(new MyLookAndFeel());
    MyLookAndFeel.setCurrentTheme(new CustomLaF());
    JFrame frame = new JFrame("Metal Theme");
    JFileChooser jf = new JFileChooser();
    //System.out.println("UI - > "+jf.getUI());
    //jf.updateUI();
    //frame.getContentPane().add(jf);
    frame.pack();
    frame.setVisible(true);
    static class CustomLaF extends PlasticTheme {
    protected ColorUIResource getPrimary1() {
    return new ColorUIResource(232,132,11);
    public ColorUIResource getPrimary2() {
              return (new ColorUIResource(Color.white));
         public ColorUIResource getPrimary3() {
              return (new ColorUIResource(232,132,11));
    public ColorUIResource getPrimaryControl() {
    return new ColorUIResource(Color.GREEN);
    protected ColorUIResource getSecondary1() {
    return new ColorUIResource(Color.CYAN);
    protected ColorUIResource getSecondary2() {
              return (new ColorUIResource(Color.gray));
         protected ColorUIResource getSecondary3() {
              return (new ColorUIResource(235,235,235));
         protected ColorUIResource getBlack() {
              return BLACK;
         protected ColorUIResource getWhite() {
              return WHITE;
    static class MyLookAndFeel extends Plastic3DLookAndFeel {
              protected void initClassDefaults(UIDefaults table) {
                   super.initClassDefaults(table);
              protected void initComponentDefaults(UIDefaults table) {
                   super.initComponentDefaults(table);
                   Object[] defaults = {
                             "MenuItem.foreground",new ColorUIResource(Color.white),
                             "MenuItem.background",new ColorUIResource(Color.gray),
                             "MenuItem.selectionForeground",new ColorUIResource(Color.gray),
                             "MenuItem.selectionBackground",new ColorUIResource(Color.white),
                             "Menu.selectionForeground", new ColorUIResource(Color.white),
                             "Menu.selectionBackground", new ColorUIResource(Color.gray),
                             "MenuBar.background", new ColorUIResource(235,235,235),
                             "Menu.background", new ColorUIResource(235,235,235),
                             "Desktop.background",new ColorUIResource(235,235,235),
                             "Button.select",new ColorUIResource(232,132,11),
                             "Button.focus",new ColorUIResource(232,132,11),
                             "TableHeader.background", new ColorUIResource(232,132,11),
                             "TableHeader.foreground", new ColorUIResource(Color.white),
                             "ScrollBar.background", new ColorUIResource(235,235,235),
                             "ToolTip.foreground", new ColorUIResource(232,132,11),
                             "ToolTip.background", new ColorUIResource(Color.white),
                             "OptionPane.questionDialog.border.background", new ColorUIResource(Color.gray),
                             "OptionPane.errorDialog.titlePane.foreground", new ColorUIResource(Color.white),
                             "OptionPane.questionDialog.titlePane.background", new ColorUIResource(232,132,11),
                             "Table.selectionBackground", new ColorUIResource(232,132,11)
                   table.putDefaults(defaults);
    pls suggest me the how to solve this problem.
    thanks in advance
    Krishna MOhan

  • Speedgrade constantly crashing when switching to Looks view !

    Speedgrade constantly crashing when trying to work with .mov files from Canon 5D mk2. The crash happens when I switch to looks view !!! I haven't been able to try anything on Speedgrade yet. My Machine is Intel [email protected], 32GB Ram, Quadro 600.

    I have a similar issue.  I have tried both footage from the Canon xh-a1 (after it has been converted to quicktime) as well as footage from the Canon 5D Mark 2.   I can color grade the footage, add masks etc, but as soon as I try to render out the footage the program crashes.  I can watch the file being created in the folder that I select.  The render gets to 100% completed and then the file disapears and Speedgrade crashes.  Very frustrating.
    Windows 7 64-bit, i7 980x,  12gigs ram, GTX 480 GPU, 80 gig Intel Solid State drive

  • Please a solution against crashes when opening a file with Acrobat XI pro?

    Hello,
    Am a member of Adobe Creative Cloud.
    Am also constantly having crashes when opening a file with Acrobat XI pro.
    Am running on Windows 7 Home Premium, Service Pack 1, 64 bit - RAM 20 GB -
    The crash happens systematically after the installation of the update. Within one day I uninstalled and reinstalled the program 4x! It takes of a lot of my time.... Thank you for providing a definitive solution!
    Best regards

    I've been having the same issue!  I try to open it and it crashes - says re-open, it crashes...  I re-installed it yesterday and it opened and worked fine.  Closed it out at the end of the day thinking everything was finally fine but this morning the same crashes it had yesterday...  HELP!!!

  • Can only get the "Draft" stamp when insert customer stamp with C#+JS

    I am trying to insert customer stamp in batch files with C#+JS.
    My JS works well in Acrobat. However, it doesn't work when use C#+JS. I always get the Acrobat's "Draft" stamp other than my own ones (the AP value is confirmed correct).
    In c#, it runs as this ( with the objectype.InvokeMember())
    1. initial an annotation with addAnnot first and get the properties object with method of getProp().
    2. Set the type entry of the properties object as "Stamp"
    3. With setProp(), modify the annotation to a Stamp annotation, and then get the properties object of the Stamp annotation.
    4. Set the entries (rect, page, AP ) of the properties object. Then use setProp() again to modify the properties of the Stamp annotation.
    The program runs without any error message. But I can only get the default stamp "Draft".
    One thing I found so far, in JS console in Acrobat, if I set the AP properties AFTER set the annotation type to "Stamp", it also get the "Draft" stamp only. as this,
         annot = this.addAnnot();
         prop = annot.getProps();
         prop.type = "Stamp";
         annot.setProps(prop);
         prop = annot.getProps();
         prop.page = 0;
         prop.rect = [0, 0, 100, 100];
         prop.AP = "#xxxxxxxx";
         annot.setProps(prop);
    If I set the prop.Ap before the forth line in above para, I can get the right stamp.
         annot = this.addAnnot();
         prop = annot.getProps();
         prop.type = "Stamp";
         prop.AP = "#xxxxxxxx";
         annot.setProps(prop);
         prop = annot.getProps();
         prop.page = 0;
         prop.rect = [0, 0, 100, 100];
         annot.setProps(prop);
    Or, if I set the props in the typcial JS format like below, I also get the right one
    annot = this.addAnnot({
    type: stamp,
    page: 0,
    rect: [0,0,100,100]
    AP: #xxxxxxxx)});
    But, the problem is, in C#, the AP properties can only be set after set the annotation type as Stamp (step 4). I think this might be the reason, but I don't know how to get over this.
    Please help. Thanks!

    No, it can't – but you could do that yourself as part of the watermarking process (ie. Two watermarks or fields)
    From: santa-satan <[email protected]<mailto:[email protected]>>
    Reply-To: "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>>
    Date: Mon, 6 Feb 2012 18:35:19 -0800
    To: Leonard Rosenthol <[email protected]<mailto:[email protected]>>
    Subject: Can only get the "Draft" stamp when insert customer stamp with C#+JS
    Re: Can only get the "Draft" stamp when insert customer stamp with C#+JS
    created by santa-satan<http://forums.adobe.com/people/santa-satan> in Acrobat SDK - View the full discussion<http://forums.adobe.com/message/4190155#4190155

  • File failure with Adobe Dynamic link when opening a *.prproj file - Premiere Pro CS4

    Hi everyone,
    I'm trying to open a Premiere Pro CS4 file (*.prproj) but the bar that appears sating 'Opening file' (or similar) gets stopped before finishing to load the file.
    I tryed to export some sequences using Adobe Media Encoder CS4 (I wanted to rescue my work), but when I have to select the sequences that I want to export, it says that there is a problem with Adobe Dynamic Link.
    Any idea for rescue the file?
    Thanks!
    Jordi

    function(){return A.apply(null,[this].concat($A(arguments)))}
    enrage222 wrote:
    which question? the 9 dots?
    Go directly to http://premierepro.wikia.com/wiki/Troubleshooting
    Read and follow all instructions for troubleshooting
    Report back with the answers to the questions at the end of that link

  • Acrobat 9 crashing when applying security

    Acrobat 9 has suddenly started crashing when I try to apply or remove security from a doc. This has only occurred in last few days. I tried to uninstall, to re-install, but cannot uninstall, it just stops. Tried a 'repair' again it crashes Any ideas?

    If your trying to do so through Reader, you need to go into Acrobat to advanced menu and choose Extend Features in Adobe Reader.
    I was able to go in Acrobat 9.3.0 and file out form
    Form is Okay on my screen the logo appears to be scrunched in a Little the Line are jagged as well as the text incated they were not cut down propotionally.

  • Audition CC crash when applying single-band compressor

    On a MacPro with Creative Cloud (all updates applied)
    I started with a sequence in Premiere. I selected Edit in Adobe Audition/Sequence. The project opens fine. I then select a track. In the Effects Rack, I click the Track Effects button and then choose Applitude and Compression/Single-band Compressor.
    I then get the message "Audition Error - Audition has encountered a fatal error and needs to shut down." I click OK and Audition goes through the shutdown process.
    When I use the same steps and apply other effects, I have no problem. I have not tried all of the available effects, but I figured 10 was a good sample size.
    I then tried starting an new multitrack project and imported an unrelated audio file. Same problem. The single-band compressor crashes the program. The other effects that I have tried are fine.
    I then tried opening audition, finding an audio file in the media browser, and then double-clicked it, opening just a waveform project. Same problem. The single-band compressor crashes the program.
    Any thoughts?

    Can those who are seeing this crash on Mac OS X send a copy of the related crash log to [email protected] ?
    You can find the crash log by opening Applications > Utilities > Console.app   Open the User Diagnostic Reports section and locate the entry for Adobe Audition CC.  This can be dragged into an e-mail as an attachment, or copy-pasted directly to the email.
    Thank you.

  • ViewMenuItem do not appear when applying custom skin on ViewNavigatorApplication

    ViewMenuItems works fine when I don't apply skinClass fo ViewNavigatorApplication, but when I apply custom skin to ViewNavigator, ViewMenuItems doesn't appear.
    Here is my main file
    <?xml version="1.0" encoding="utf-8"?>
    <s:ViewNavigatorApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
                                xmlns:s="library://ns.adobe.com/flex/spark" firstView="views.DriveSafeHomeView" applicationDPI="160"
                                 initialize="applyRuntimeStyleSheet()" skinClass="skins.CustomApplicationSkin" >
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <fx:Script>
            <![CDATA[
                public function applyRuntimeStyleSheet():void {
                    styleManager.loadStyleDeclarations("css/Styles.swf")
                        // skinClass="skins.CustomApplicationSkin"
            ]]>
        </fx:Script>  
    </s:ViewNavigatorApplication>
    Code for CustomApplicationSkin.mxml is
    <?xml version="1.0" encoding="utf-8"?>
    <s:Skin name="CustomApplicationSkin"
                    xmlns:fx="http://ns.adobe.com/mxml/2009"
                             xmlns:s="library://ns.adobe.com/flex/spark"
                                       >
            <fx:Metadata>
                        <![CDATA[
                        [HostComponent("DriveSafe")]
                        ]]>
                    </fx:Metadata>
            <s:states>
                        <s:State name="normal" />
                         <s:State name="disabled" />
                     </s:states>
            <s:BitmapImage width="100%" height="100%" source="@Embed('/assets/background.jpg')"/>
            <s:Group id="contentGroup" width="100%" height="100%" minWidth="0" minHeight="0" />
            <s:ViewNavigator id="navigator" width="100%" height="100%" />
    </s:Skin>

    If you create a new custom field you have to wait for the analytics refresh before you can use it in reporting & analytics. The frequency of the refresh differs per environment. You can put VALUEOF(LAST_REFRESH_DT) in a column formula to see when the last refresh has been performed.
    Regards, Tim

  • IPhoto Crashes When Applying Keywords

    I'm currently having a problem with iPhoto 6.0.4 crashing whenever I apply a keyword to a photo.
    I'd been using iPhoto for about 3 hours today doing some pretty extensive keyword management. Then the thumbnails all turned low res and the application crashed. When it restarted iPhoto told me to rebuild the thumbnail cache, so I did.
    Ever since then iPhoto is crashing when I use keywords. Has anyone else seen this behaviour or have any ideas as to how I might troubleshoot?
    2.3GHz Dual-core PowerPC G5 and MacBook Pro (2.0GHz Intel Core Duo)   Mac OS X (10.4.7)   23" Cinema Display, iSight, iPod nano, 200GB LaCie drive

    Andrew:
    If there are not to many of them, try the following:
    1 - make a very insignificant edit to each of those files so that a modified version is created in the Modified folder.
    2 - export those files, full size, to the desktop.
    3 - in iPhoto delete the files.
    4 - import those modified files from the desktop into iPHoto and try to add a keyword.
    That may do it.

  • Acrobat crashes when applying redaction

    Acrobat Pro 11.0.06 on both Win 7 Pro and Win 8.1, when applying text redactions Acrobat crashes.

    Hi Sparkyola,
    Please share the following information with us -
    Product - Acobat Pro / Acrobat Sandard ?
    Version - Exact version of the product ? (Ex 11.x.x)
    OS -  Win 7/8 , 32 Bit/64 Bit ?
    to help us debug and solve the issue.

  • FM 10 Crashing when applying conditional text tag

    Hello everyone.
    For some reason, FM keeps crashing when I try to apply a conditional text tag to a table (entire table). The funny thing is I have been doing this same thing for three months now with no problems before today, even have two tables in the same document with different tags applied to them and they are working fine.  But when I try to add this one, I crash. I have rebooted my computer and made sure all my drivers are up to date, but now I'm at a loss.  Any help?
    Thanks.

    Yes, I can apply the tag to the pictures in the document, its only when applying to the table. I am selecting all rows in the table with the mouse and then selecting the tag, clicking the radio button "in" and then clicking the "Apply" button.  It then asks "apply condition tag settings to all rows in table?" I hit "ok" and then it freezes, screen shots provided.
    Pic 1: My project at table causing problems.
    Pic 2: Me selecting the table and choosing to apply tag.
    Pic 3: Me affirming I want to apply the condition to all rows.
    Pic 4: Program stops responding.

  • VS 2013 SP4 crashes when opening a Form with large Numbers of elements on Windows 8 32-Bit

    Hi, I have made a C#-Project, which is fully functional but opening the main form causes VS 2013 Sp4 to crash. I can build the solution an open all Files. Only when i open the form in Designer, VS crashes and want to restart. There are no Log-Entrys. Only
    in the event-log there is an Event-Id 1000 with code 0x0000409. I can open the form on two other Windows 8.1 64-Bit machines without Problems. Looking on "free Mem" while opening in Resourcemonitor it crashes when at least are around 190 MB free.
    How can I investigate this Problem?

    Hi Frank,
    If the same solution works well in other machine, I doubt that it is your Environment issue.
    Of course, to make sure that it is not the project files issue, please create a blank solution, and then add all project files to this new solution, test it again.
    Maybe you could delete .suo file in your solution folder, and then re-open your .sln file, test it again.
    If there are many projects in the same solution, I suggest you create different solutions for them, test it again.
    But as your previous description, I doubt that it would be related to your VS/Windows Environment.
    Please disable all add-ins in your VS, maybe you could run your VS in safe mode, test it again.
    http://msdn.microsoft.com/en-us/library/ms241278.aspx
    To make sure that it is not the account issue, please run your VS as the admin.
    In addition, the most important issue is that we have make sure that it is not the Window Configuration issue.
    For example, when you run your windows for a long time, or your task manager is so busy, or other processes take high CPU and so on, I think they will impact your VS or other software performance.
    Please restart your PC, close other processes which take high memory, please also close third party tools like firewall or the Anti-virus. If you open a few VS Editors, just close them, and then just open one, test it again.
    Best Regards,
    Jack 
    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.

  • AE 2014.2 crash when switching preview panel with Matrox

    I newly bought a pc with Matrox M9138 card, and using it for professional use. All works fine, except for Adobe After Effects CC 2014.2: it simply crashes when switching between the Preview-panel and Render-Cue panel.
    When I look in AE preferences under Video-preview > Mercury transmit doesn't even show that there is a Matrox-card. The only option there is Adobe DV. So, I guess AE doesn't find and even makes use of my Matrox card.
    Technical info:
    Windows Version: 8.1
    Processor: Intel Core i7-4790 CPU, 3.6 GHz
    RAM: 16GB
    Type: 64bits
    Matrox M9138 LP PCIex16
    Driver version 2.4.3.2 (4.4.3.2) for Win 8-64bit
    Adobe CC After effects 2014.2
    After Efects error: "Crash in progress. Last logged message was: <816><ae.blitpipe><2> Making New Context"
    First I installed the Matrox driver, and then Adobe CC, but After effects crashed when switching between preview-panel and render-cue-panel (No Matrox recognition in AE preferences > Mercury transmit)
    Now I did it in other order:
    - I removed Adobe CC (AE included) and all parts
    - Did extra checkup removal with Adobe CC cleaner
    - Removed the Matrox driver
    - Restarted PC
    - Reinstalled Adobe CC with AE
    - Reinstalled Matrox Driver
    - Restarted PC
    - matrox fully installed and working perfectly (no errors in Display Adapters info).
    But still, After effects crashed (Still no Matrox recognition in AE preferences > Mercury transmit)
    I contacted Matrox technical support, and as I suspected, they say they haven't had this problem before and all works fine.
    Typical...
    Does someone has an idea what the problem would be?
    Help or info would be very appreciated.

    Solution:
    My graphics card did not supported the "Mercury Playback Engine GPU Acceleration (Open CL)". You can change it into "Mercury Playback Engine Software Only" in your Project Settings.
    But this is in the wrong place in my opinion. Why not in "Edit/Preferences"? I could've changed it by myself but I did not find the menu.
    Thanks Michaela from the Adobe Support Chat!

  • SCVMM service crash when trying to connect with admin console

    Hello,
    i'm using SCVMM for a while but from the beginning of the year (2010), the vmm service crash when i try to connect with the vmm admin consol .
    More in detail:
    vmm service is running on serverA. (vmmservice 2.0.3444.0)
    Admin console is running on serverA (vmmadmin 2.0.3444.0)
    ServerA is running W2008 Sp2
    on this serverA, i launch vmm admin console to connect to server localhost:8100.
    i get the following erro message
    You cannot access Virtual Machine manager server localhost
    Contact the virtual machine manager administrator to verify that your account is a mamber of a valid user role and then try the operation again
    ID: 1604
    And i can see in system log at the same time an error (see detail at the end)
    i get the ods log from vmm according to the link i see in an other post http://blogs.technet.com/chengw/archive/2008/05/08/how-to-collect-scvmm-traces.aspx
    thanks in advance
    Log Name:      System
    Source:        Service Control Manager
    Date:          05/01/2010 11:44:20
    Event ID:      7031
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      PYAQ9G.INETPSA.com
    Description:
    The Virtual Machine Manager service terminated unexpectedly.  It has done this 1 time(s).  The following corrective action will be taken in 100 milliseconds: Restart the service.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Service Control Manager" Guid="{555908D1-A6D7-4695-8E1E-26931D2012F4}" EventSourceName="Service Control Manager" />
        <EventID Qualifiers="49152">7031</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2010-01-05T10:44:20.000Z" />
        <EventRecordID>21683</EventRecordID>
        <Correlation />
        <Execution ProcessID="0" ThreadID="0" />
        <Channel>System</Channel>
        <Computer>PYAQ9G.INETPSA.com</Computer>
        <Security />
      </System>
      <EventData>
        <Data Name="param1">Virtual Machine Manager</Data>
        <Data Name="param2">1</Data>
        <Data Name="param3">100</Data>
        <Data Name="param4">1</Data>
        <Data Name="param5">Restart the service</Data>
      </EventData>
    </Event>

     Hi Mike,
    I have same kind of
     VMM Crashing  issue but error looks different.
    I have one SCVMM Server ( Win2008 R2 SP1) and to manage 20 host servers with 300 clients and it was running fine since 30 months. Recently I observed
    that Virtual Machine manager service is not getting started  automatically , due to that SCVMM console is not establishing the connection. If we forced to start the VMM service, then we are able connect the SCVMM console. But every 5 or 10 min console
    was disconnecting and restarting the console. We are getting below 2 error codes. Please help me on this.
    I have hosted IN-SCVMM1 server on
     hyper-v virtual machine with 16GBRAM and 2 Processors.
    Error1:
    Log Name:      VM Manager
    Source:       
    Virtual Machine Manager
    Date:         
    7/24/2012 12:19:31 PM
    Event ID:      1
    Task Category: None
    Level:        
    Error
    Keywords:      Classic
    User:         
    N/A
    Computer:      IN-SCVMM1.ingrnet.com
    Description:
    System.OverflowException: Failed to convert parameter value from a UInt16 to a Int16. ---> System.OverflowException: Value was either too large or too small for an Int16.
       at System.UInt16.System.IConvertible.ToInt16(IFormatProvider provider)
       at System.Convert.ChangeType(Object value, Type conversionType, IFormatProvider provider)
       at System.Data.SqlClient.SqlParameter.CoerceValue(Object value, MetaType destinationType)
       --- End of inner exception stack trace ---
       at System.Data.SqlClient.SqlParameter.CoerceValue(Object value, MetaType destinationType)
       at System.Data.SqlClient.SqlParameter.GetCoercedValue()
       at System.Data.SqlClient.SqlParameter.Validate(Int32 index, Boolean isCommandProc)
       at System.Data.SqlClient.SqlCommand.SetUpRPCParameters(_SqlRPC rpc, Int32 startCount, Boolean inSchema, SqlParameterCollection parameters)
       at System.Data.SqlClient.SqlCommand.BuildRPC(Boolean inSchema, SqlParameterCollection parameters, _SqlRPC& rpc)
       at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async)
       at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result)
       at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe)
       at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
       at Microsoft.VirtualManager.DB.SqlRetryCommand.ExecuteNonQuery()
       at Microsoft.VirtualManager.DB.Adhc.Host.Update(HostData hostData, SqlContext ctx)
       at Microsoft.VirtualManager.Engine.Adhc.HostDatabaseUpdater.UpdateDatabase()
       at Microsoft.VirtualManager.Engine.Adhc.HostRefresher.UpdateAllInformation(Host host, HostUpdateInformation hostUpdateInfo, Guid taskID)
       at Microsoft.VirtualManager.Engine.Adhc.HostRefresher.RefreshData(HostReference hostRef)
       at Microsoft.VirtualManager.Engine.RefreshDriver`1.RefreshThreadFunction(Object obj)-2146233066
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Virtual Machine Manager" />
        <EventID Qualifiers="0">1</EventID>
        <Level>2</Level>
        <Task>0</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2012-07-24T06:49:31.000000000Z" />
        <EventRecordID>4888059</EventRecordID>
        <Channel>VM Manager</Channel>
        <Computer>IN-SCVMM1.ingrnet.com</Computer>
        <Security />
      </System>
      <EventData>
        <Data>System.OverflowException: Failed to convert parameter value from a UInt16 to a Int16. ---&gt; System.OverflowException: Value was either too large or too small for an Int16.
       at System.UInt16.System.IConvertible.ToInt16(IFormatProvider provider)
       at System.Convert.ChangeType(Object value, Type conversionType, IFormatProvider provider)
       at System.Data.SqlClient.SqlParameter.CoerceValue(Object value, MetaType destinationType)
       --- End of inner exception stack trace ---
       at System.Data.SqlClient.SqlParameter.CoerceValue(Object value, MetaType destinationType)
       at System.Data.SqlClient.SqlParameter.GetCoercedValue()
       at System.Data.SqlClient.SqlParameter.Validate(Int32 index, Boolean isCommandProc)
       at System.Data.SqlClient.SqlCommand.SetUpRPCParameters(_SqlRPC rpc, Int32 startCount, Boolean inSchema, SqlParameterCollection parameters)
       at System.Data.SqlClient.SqlCommand.BuildRPC(Boolean inSchema, SqlParameterCollection parameters, _SqlRPC&amp; rpc)
       at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async)
       at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result)
       at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe)
       at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
       at Microsoft.VirtualManager.DB.SqlRetryCommand.ExecuteNonQuery()
       at Microsoft.VirtualManager.DB.Adhc.Host.Update(HostData hostData, SqlContext ctx)
       at Microsoft.VirtualManager.Engine.Adhc.HostDatabaseUpdater.UpdateDatabase()
       at Microsoft.VirtualManager.Engine.Adhc.HostRefresher.UpdateAllInformation(Host host, HostUpdateInformation hostUpdateInfo, Guid taskID)
       at Microsoft.VirtualManager.Engine.Adhc.HostRefresher.RefreshData(HostReference hostRef)
       at Microsoft.VirtualManager.Engine.RefreshDriver`1.RefreshThreadFunction(Object obj)-2146233066</Data>
        <
    Error2 :
    Log Name:      System
    Source:       
    Service Control Manager
    Date:         
    7/24/2012 12:19:32 PM
    Event ID:      7031
    Task Category: None
    Level:        
    Error
    Keywords:      Classic
    User:         
    N/A
    Computer:      IN-SCVMM1.ingrnet.com
    Description:
    The Virtual Machine Manager service terminated unexpectedly. 
    It has done this 1 time(s).  The following corrective action will be taken in 100 milliseconds: Restart the service.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Service Control Manager" Guid="{555908d1-a6d7-4695-8e1e-26931d2012f4}" EventSourceName="Service Control Manager" />
        <EventID Qualifiers="49152">7031</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8080000000000000</Keywords>
        <TimeCreated SystemTime="2012-07-24T06:49:32.179030700Z" />
        <EventRecordID>29790</EventRecordID>
        <Correlation />
        <Execution ProcessID="564" ThreadID="5840" />
        <Channel>System</Channel>
        <Computer>IN-SCVMM1.ingrnet.com</Computer>
        <Security />
      </System>
      <EventData>
        <Data Name="param1">Virtual Machine Manager</Data>
        <Data Name="param2">1</Data>
        <Data Name="param3">100</Data>
        <Data Name="param4">1</Data>
        <Data Name="param5">Restart the service</Data>
      </EventData>
    </Event>
    Please help on this situation.
    Ratnakar.c
    Ratnakar

Maybe you are looking for

  • Efi Update problem, Monitor blackout

    Hi I have a MBP running 10.6.8. I also use a 21" Aluminium Apple montor to view. I ran the MacBook Pro EFI Firmware update version 2.7, and now after the restart the monitor is black! tried restart again tried a command, option, p, r, reboot. NO JOY

  • How to create a exit buttom in my mobile application in html5

    Please i want to create a exit button for my android aplication on dreamweaver my app is in html5 i need the code for create this

  • How to delete users in the child systems with CUA?

    Hi All, We have: 1.  My SAP ERP 2005  (ECC 6.0)+ Windows 64bit + Oracle 10 2. EP 7.0 + Windows 64bit + Oracle 10 3. BI 7.0 + Windows 64bit + Oracle 10 4. Solution Manager 4.0 (CUA) We managed all our QA and DEV users in ECC, EP using CUA from the Sol

  • FRM-41837 Error raising tab page

    Hi, I've got a problem with my form. I have four tab pages but in some cases I need to hide two tabs and save the information of the other tabs , when I try to save the data in my enabled tab pages I'm getting the error: FRM-41837 Error raising tab p

  • Wireless works until I try and secure it.

    We have been trying to connect a new Sony Laptop to our new wireless router.  The router works fine on our wired in desktops.  The wireless works great if we do not secure it.  It gets a full signal and connects easily, and assigns the proper IP addr