Logic fails to display waveforms on audio events

As the title says, the waveforms don't appear on the audio events. Is there a dedicated function in logic which toggles this feature or do I simply have a problem?
Many thanks.

Perfect! That worked fine. But Is there some kind of way/bug fix to prevent me from having to refresh every single event through the whole project? It does the same thing with the following event even though I've refreshed once and in the end I'm sure, if I know myself well, that this will bug me badly!! I'll maybe just reinstall, should work.
But thanks, this helps on the way!
/Erik

Similar Messages

  • How can I display & split the audio & video from the same digitized clip?

    I digitized a scene into iMovie that I edited on a professional system which I don't have access to anymore. The whole scene is 1 clip. Now I see a few tweaks that I want to make, so I was hoping to do them in iMovie.
    I want to "pull up" the audio in one section - meaning I want to take cut about 20 frames of audio from the end of a shot, and then move all the other audio up to fill the hole. To compensate for the missing 20 frames, I'll cut video off the head of the next shot. Some call this prelapping. Some call it an L-cut. Some call it asymmetrical trimming. Either way, I can't figure out how to do it in iMovie.
    My clip appears in the timeline as one track - a single track that contains the video and 2 audio tracks. How can I display the audio that's tied to the video on its own track? Then I think I could split audio & video wherever I wanted and trim things up - but I can't figure out how to do it.
    Am I asking too much of this software?
    BTW, I never see the option to "Split audio clip at playhead". I'm not displaying clip volume or waveforms. Choosing to display waveforms doesn't show me anything. Maybe iMovie thinks I'd only want to see waveforms of audio that isn't tied to my video-and-audio clips?
    Thanks in advance for any help...

    Jordon,
    "Am I asking too much of this software?"
    No, you're not.
    You first want to select your clip(s) and choose Advanced>Extract Audio.
    This will copy the audio from the video clip and place it on one of the two separate audio tracks while lowering the audio level to zero in the original video track.
    You can now edit and move the audio independently of the video.
    With the audio clip selected, you'll find you now have access to Edit>Split Selected Audio Clip at Playhead.
    Matt

  • Page cannot be displayed' error when 2 events (FireAction and GO) fired

    We have created a framework page where FireAction event will be executed
    when the value of a calendar item is modified. When we modify the
    value and leave the cursor in the field (without tabbing out), and click
    GO button, 'Page cannot be displayed' error message will be displayed.
    When FireAction event is started, we use CO to retrieve the event. And
    when the cursor remains in item1 after being modified and click GO,
    2 events will be started (the FireAction event and the GO button's event)
    and 'Page cannot be displayed' error will be shown since CO is retrieving
    2 events at the same time.
    Since by changing certain fields of framework page without tabbing out
    is a regualar operation, how can we go around this error when we are
    using FireAction event?
    sample34_00co.java
    package oracle.apps.xx03.ap.webui;
    import oracle.apps.fnd.common.VersionInfo;
    import oracle.apps.fnd.framework.webui.OAControllerImpl;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.apps.fnd.framework.webui.OADialogPage;
    import java.util.Calendar;
    * Controller for ...
    public class Sample34_00CO extends OAControllerImpl
    public static final String RCS_ID="$Header$";
    public static final boolean RCS_ID_RECORDED =
    VersionInfo.recordClassVersion(RCS_ID, "%packagename%");
    public StringBuffer message = new StringBuffer();
    * Layout and page setup logic for a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    Calendar cal = Calendar.getInstance();
    // When the browser back button is not executed
    if (!pageContext.isBackNavigationFired(false))
    System.out.println("NOT FROM BACK BUTTON!! ["+cal.getTime()+"]");
    // When the browser back button is executed
    else
    System.out.println("FROM BACK BUTTON!! ["+cal.getTime()+"]");
    //Action being performed when the browser back button is executed
    OADialogPage dialogPage = new OADialogPage(STATE_LOSS_ERROR);
    pageContext.redirectToDialogPage(dialogPage);
    * Procedure to handle form submissions for form elements in
    * a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    Calendar cal = Calendar.getInstance();
    if ( "updateItem1".equals(pageContext.getParameter(EVENT_PARAM)) )
    //When FireAction is executed
    System.out.println("item1 FireAction is executed! ["+cal.getTime()+"]");
    else
    //When other actions beside FireAction is executed
    System.out.println("item1 FireAction is not executed! ["+cal.getTime() +"]");
    sample34_00pg.xml
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <!-- dbdrv: exec java oracle/jrad/tools/xml/importer XMLImporter.class java &phase=dat+24 checkfile:~PROD:~PATH:~FILE &fullpath:~PROD:~PATH:~FILE -username &un_apps -password &pw_apps -dbconnection &jdbc_db_addr -userId "1" -rootPackage /oracle/apps/~PROD -rootdir &fullpath:~PROD:mds:directory -->
    <page xmlns:jrad="http://xmlns.oracle.com/jrad" xmlns:oa="http://xmlns.oracle.com/oa" xmlns:ui="http://xmlns.oracle.com/uix/ui" version="9.0.3.8.11_1183" xml:lang="en-US" xmlns:user="http://xmlns.oracle.com/jrad/user" xmlns="http://xmlns.oracle.com/jrad" file-version="$Header$">
    <content>
    <oa:pageLayout id="PageLayoutRN" windowTitle="Sample34_00 WindowTitle" amDefName="oracle.apps.fnd.framework.server.OAApplicationModule" title="Sample34_00 PageHeader">
    <ui:corporateBranding>
    <oa:image id="corporateBrandingImage" source="/OA_MEDIA/FNDSSCORP.gif"/>
    </ui:corporateBranding>
    <ui:contents>
    <oa:messageComponentLayout id="MainRN" controllerClass="oracle.apps.xx03.ap.webui.Sample34_00CO">
    <ui:contents>
    <oa:messageTextInput id="item1" prompt="item1" dataType="DATE">
    <ui:primaryClientAction>
    <ui:fireAction event="updateItem1"/>
    </ui:primaryClientAction>
    </oa:messageTextInput>
    <oa:messageLayout id="ButtonLayout">
    <ui:contents>
    <oa:submitButton id="Go" use="/oracle/apps/fnd/attributesets/Buttons/Go"/>
    </ui:contents>
    </oa:messageLayout>
    </ui:contents>
    </oa:messageComponentLayout>
    </ui:contents>
    </oa:pageLayout>
    </content>
    </page>
    ----------

    Shive...good one..!!
    One thing that you can do if you don't wanna have PPR, is to validate date column in fire action event in CO in process form request, and raise an error if you don't find appropriate format or null , as per your requirement.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Windows 7 x64 Pro, desktop GUI fails to display correctly, or crashes, when High RAM load, and even after. HW changed, same issue. Please Help.

    Hi Guys,
    I have have this horror issue with my PC. I have even changed the hardware configuration and the problem still persists. My PC fails to display the desktop correctly after using highly RAM intensive applications, especially Chrome, but even after getting
    the chance to close it, or waiting for it to crash by itself, the PC is still not able to display correctly the GUI, even on other browser/applications as shown in the screenshots. 
    1st Hardware Config:
    Intel Core2Quad Q9450
    4x2GB DDR2
    MSI P43 motherboard
    Ati Radeon x550 video card
    Software used, that seemed important for me to mention:
    NOD32 v4.2
    Comodo Firewall 5.12
    Chrome
    Screenshot Captor
    SpeedFan
    Other mentions:
    Aero is disabled, because I've considered that it's one of the causes.
    So, I've considered that it's a RAM issue or a videocard issue, and I've upgraded to:
    Intel Core i7 3770k
    4x8GB DDR3
    Asus P8Z77V-LX motherboard
    Intel GPU integrated in the 3770k CPU
    The problem just happened 2 times on this rig also, and the RAM was not even coming close to  it's maximum capacity of 31.7GB. It was at ~20GB's.
    Also, this is another videocard(Intel's integrated GPU), so we can exclude the videocard from the suspects.
    My suspects:
    1) some desktop manager bugs, or other similar issue
    2)  video memory allocation - I'm still suspecting that it can be caused by the amount of RAM dedicated to the videocard, currently, I think  that it is at 256MB.
    3) some poorly designed components of Chrome/Screenshot Captor - still very questionable since there are enough resources on this system, so there should be no fight over resources. And when the system is barely used there are no issues.
    4) Adobe Shockwave Flash - maybe this one????
    I have attached a set of 20 screenshots here, these were taken on the 1st configuration of my PC, using Q9450:
    http://imgur.com/a/Mc8hI#4
    Notice how it distorts the image by duplicating it and showing it in a smaller space, or how does it displays those black rectangles. In those moments, the PC is fully functional(the apps are running the background), without being slowish or something, but
    you can hardly control it like that. For example, I've tried to remove the mouse from the USB, and then I've insterted it back, the image was not displayed correctly, but the mouse was recognised instantly and the pointer was controlable.
    Same thing still happens on the new configuration. Please advise me.
    LE: OS is Windows 7 x64 SP1 Professional and it's Geniune. There is no cracked software on this PC. No games. I've tried to maintain it as clean as possible.

    Hi,
    First, please be ensured that you have installed the latest drivers and all the updates.
    Then check whether this issue will not in
    Safe Mode. If it didn’t occurred, I suggest you narrow down the cause in
    Clean Boot mode.
    In addition, try to create a new profile to see how it works.
    Hope this helps.
    Vincent Wang
    TechNet Community Support

  • Bug (possibly?): SelectManyShuttle fails to display selected items

    Bug (possibly?): SelectManyShuttle fails to display selected items when valuePassThru="true" in ADF 10g
    Hello all,
    When run, the example below shows a Select Many Shuttle with four choices in the leading list. When items are shuttled to the training list and the page is submitted the trailing list is rendered with no items selected. Is this a bug?
    Configuration
    This example was constructed using jDeveloper 10.1.3.5.0.
    A new application was created using the Web Application [JSF, ADF BC] template although no business components are used.
    Steps to Reproduce
    1. Create the following backing bean class.
    package com.fmcna.adf.test.view;
    import java.util.ArrayList;
    import java.util.List;
    import javax.faces.model.SelectItem;
    public class ShuttleBean {
        public ShuttleBean() {
        private List availableItems;
        private List selectedItems;
        public void setAvailableItems(List availableItems) {
            this.availableItems = availableItems;
        public List getAvailableItems() {
            //populate with a List of SelectItem instances on the inital call to this method
            if(this.availableItems==null) {
                this.availableItems=generateSelectItemsList();
            return availableItems;
        public void setSelectedItems(List selectedItems) {
            this.selectedItems = selectedItems;
        public List getSelectedItems() {
            return selectedItems;
         * Build a List of SelectItem instances to be used by an af:selectManyShuttle
         * @return A List containing SelectItems instances
        private List generateSelectItemsList() {
            List initialItems = new ArrayList();
            initialItems.add(new SelectItem(new Integer(11),"First Choice"));
            initialItems.add(new SelectItem(new Integer(22),"Second Choice"));
            initialItems.add(new SelectItem(new Integer(33),"Third Choice"));
            initialItems.add(new SelectItem(new Integer(44),"Fourth Choice"));
            return initialItems;
    }2. Configure the ShuttleBean class as a session scoped managed bean as in the following faces-config.xml file.
    <?xml version="1.0" encoding="windows-1252"?>
    <!DOCTYPE faces-config PUBLIC
      "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
      "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
    <faces-config xmlns="http://java.sun.com/JSF/Configuration">
      <managed-bean>
        <managed-bean-name>ShuttleBean</managed-bean-name>
        <managed-bean-class>com.fmcna.adf.test.view.ShuttleBean</managed-bean-class>
        <managed-bean-scope>session</managed-bean-scope>
      </managed-bean>
      <application>
        <default-render-kit-id>oracle.adf.core</default-render-kit-id>
      </application>
    </faces-config>3. Create a JSP page containing an af:selectManyShuttle with a nested f:selectItems component. Wire the values for these components to the properties in the managed bean.
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ page contentType="text/html;charset=windows-1252"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces" prefix="af"%>
    <f:view>
      <html>
        <head>
          <meta http-equiv="Content-Type"
                content="text/html; charset=windows-1252"/>
          <title>testShuttle</title>
        </head>
        <body><h:form>
            <af:selectManyShuttle value="#{ShuttleBean.selectedItems}" valuePassThru="true">
                <f:selectItems value="#{ShuttleBean.availableItems}"/>
            </af:selectManyShuttle>
            <af:commandLink text="Postback"/>
        </h:form></body>
      </html>
    </f:view>4. Run the JSP. Validate that the trailing list is initially empty.
    5. Shuttle one or more items to the trailing list and click the Postback button. Validate that when the page refreshes the trailing list is again empty.
    Thanks for any input you might be able to provide.
    Chris Mihalcik
    Edited by: user5384858 on Jun 14, 2010 1:06 PM

    I'm holding my Nano in my hot little hands with ALL of the things you listed, but here's the sad, simple truth: you CAN'T use iTunes to sync everything. It works well for:
    1) Music
    2) Videos (except sometimes in Vista)
    3) Photos (as long as they're not too large)
    but is terrible for:
    1) calendar
    2) contacts
    3) To-Do lists
    For the latter use something like "iGadget" (www.ipodsoft.com). I also edit/store notes w/iGadget plus it allows you to export files, etc.
    I gave up on syncing iTunes w/Outlook long ago. Good luck.

  • I have lost all sound on macbook pro 10.6 and in ITunes can no longer play any cinema or tv shows purchased.  I believe it may have been caused by recent use of mini-display port   Toslink Audio to the TV.  What can be done?

    I no longer have any sound on my macbookpro 10.6.8, not even beginning chime.
    Furthermore, I find that I no longer have any images as well as no sound, from any
    of my Itunes cinema, tv show purchases, etc.
    I recently watched last week a couple of tv episodes through my TV
    using a Mini Display Port + Toslink Audio purchased at Apple.
    I use this device occasionally and haven't had any  problems til now.
    Any suggestions to right the problem?.

    In System Preferences>Sound do you have your internal speakers set as the output source?
    You may have toggled on optical output with the Toslink cable - check to see if there's a red light coming from the port. If so, quickly plug and unplug a set of headphones for a number of times to see if you can toggle the switch back from optical to the internal speakers.
    Good luck,
    Clinton

  • On windows 7 machine, safari fails to display web sites

    on windows 7 machine, safari fails to display web sites

    what happens is you type in the url and press enter then nothing.  the fix was to run "netsh winsock reset"
    If the winsock key reset helped things, that usually indicates trouble with a LSP. (That's also consistent with a 'silent" Safari page-load failure.) If you run into the problem again, perhaps try the following document:
    Apple software on Windows: May see performance issues and blank iTunes Store

  • Logic Pro 8 Crashes from Core Audio - Tried Support Info

    This is my first question but I've been a Mac user since 1993. I have a MBPro 2.16 with 2GB ram. I have Logic 6.4 installed and it has been working well with the USB dongle. My factory HD was only 100GB so I just upgraded to a 500GB hybrid drive. I have Logic Pro 8, NI Komplete 5, Sampletank 2XL, MOTU Mach 5 and several other plugs that work fine on my G5 Dual 1.8. I upgraded the HD on the laptop so my Logic setup couuld be portable for use at my job as a band director.
    I installed the new HD in an OWC external case. I started with a clean install of 10.5. The laptop still had the latest version of 10.4 (11?) as the OS so I wanted to start from Panther. After the fresh install of 10.5 I restarted from the external drive and had my settings transferred to it. Everything worked fine with either drive as the startup device.
    I then installed all my music software from the original DVDs ending with Logic so it would see all the plugins on it's initial start up. I then ran software update several times until no new updates were found. I had no problems registering the plugs or getting them to work independently of Logic. I then transferred the new drive into the MBPro as the primary drive.
    When Logic starts it crashes when Core Audio is initialized. The program never did authorize a single plugin as i never makes it to the setup program.
    I have:
    1. Started Logic with the Control key and it works fine (with no plugs or driver functions). The support documentation offers that help but does not specifically mention what to do afterward to get to full functionality.
    2. I have tried to access the Audio Units Mamager in the Preferences but noting happens when I select that item (Tried many times)
    3. The Support documents mention a key command that will select the AU Manager but there are no keys assigned and the Key Commands window will not let me add any so forcing Logic to initialize Core Audio has been a bust.
    4. I noticed the mention in one of the support docs that there might be an issue with the language selected and made sure engligh was at the top of that list.
    5. I have removed all the plugs from the library folder and tried to start without them to test for a conflict with one of the plugs.
    6. Today I tried reinstalling Logic (over the old copy) with no change.
    I'm at a loss of what to do next. Does the Core Audio need to be upgraded somehow seperately from the OS? Could the old version of Logic be causing problems? I've tried starting the 6.4 and it hangs at the Initializing Core Audio also when started from the new drive. Could the Hybrid drive be an issue? Thank you in advance for your help.

    Pancenter - You hit the nail on the head. I had not heard about the Rewire conflict. As I was installing all of my music software I discovered a Digi/Avid extras disc that came with my Digi 003R. I had not intalled that originally when I installed Protools LE so I went ahead and added it as I upgraded to Protools 8. I believe the Propellerhead software came from there. Removing those files freed up Logic. Everything verified/loaded properly except the MOTU Mach 5 and all of my Bias Peak plugs. I belive the Bias plugs work fine with my G5 in my home studio but I use those more for mastering than music creation so I may not have needed them in Logic. I will troubleshoot those in the Macbook tonight. Thanks so much for your help.

  • Chinese characters failed to display on songs in rip from my own CDs

    My old hard disk was dead and I lost some of the songs that I had on my computer.  So I tried ripping my own CDs into iTune.  Unfortunately, all the Chinese characters failed to display properly.  The songs in my old ipod showed those characters nicely and properly so I do not even have guts to sync my old ipod now. Did some research on the net and it said that I can try convert ID3 tags.  Sadly, the new iTunes no longer provide this function.  Went to apple support site and they need me to buy apple care plan!  I have a ipad still in the warranty period but I am extremely disappointed that iTunes, a software, also needs me to pay for support.  This has cast me shadow of having my 4th apple product.  I am using the latest iTunes version 12.0.1.26.  Help on support of local language is truly appreciated. 

    You wrote "with my last ipod update". Are we talking about syncing your iTunes to the iPod function of your iPhone? Because if not you might be in the wrong forum. If so, then you need to remember that there is no "drag and drop" functionality for transferring your music onto the iPhone. You must first create a playlist within iTunes (I called mine simply iPhone) and then tell the iPhone to sync that playlist to your phone when you connect it to your computer. As you are probably familiar with creating playlists within iTunes you know that you can then drag and drop whatever you'd like into one, including both purchased and imported music.
    Hope that helps.

  • 2x iMac G5: Both Logic Board and Display Problems, Warrenty?

    Hello,
    Thank you for looking at this topic.
    I am Jeroen from The Netherlands and proud owner of several Mac Mini's, iMac's and Macbook's. I have 2times the iMac G5, a beautiful machine, but both not working since 2 months.
    I have two times the iMac G5 with iSight, both have logic board and display problems.
    The first iMac doenst start at all, black screen, i hear the chime, but nothing happening. After a minute i see one horizantal white stripe but nothing happens.
    The second iMac has weird horizantal stripes also, but the computer starts. It gives a finder and questionmark icon. After a while the fans go crazy.
    Both these symptons are widely known on the internet. I would like to get this fixed, but prices are crazy. And because this is a common issue I would expect to get this fixed for no costs. I have contacted several Apple resellers but they shown me high prices and bad services. On these forums I've saw people in the USA who get this fixed free of charge.
    Does anyone has any advice for me? I'll call apple USA this morning.
    Thankyou for ur time.

    Welcome to Apple Discussions.
    I know of no repair extension authorization which provides for the repair of either computer you describe beyond its original 12 month period of coverage. If either machine is covered by a warranty extension program provided by AppleCare, then the parts, labor or both required to replace the defective components may be offered at no charge to you. Final determination of eligibility is made at the part level by authorized Apple service providers or dealers and by the specific serial number of the machine submitted for service.
    Absent a warranty extension, however, it is quite likely that you will have to pay for the repairs is you elect to have them performed.

  • The server is failing to download some updates. Event ID 10032 (ran out of disk space & extended volume, still got error)

    On Friday, 9/17 @ 7 am, after deselecting Windows 2003 in products, I ran Server Cleanup Wizard (as well as sqlcmd -I -i"WsusDBMaintenance.sql" -S "np:\\.\pipe\MSSQL$MICROSOFT##SSEE\sql\query"), and 0 bytes were freed which I thought
    odd.   I then selected Windows Server 2012 R2 and Office 2013 since we're going to be using those. 
    After this, on 9/19 @ 7:30am, the server had the message:      Event 364 Content file download failed. Reason: There is not enough space on the disk.    Source File: /d/msdownload/update/software/secu/2014/04/coreservermui-it-it_ebb7e1e8d487b90ffd719f06122a3db947b3f949.cab
    Destination File: e:\WSUS\WsusContent\49\EBB7E1E8D487B90FFD719F06122A3DB947B3F949.cab.
    At some time during the day on 9/19, our SAN admin increased the volume (all server's volumes are on a SAN) from the SAN end, and I extended it in Disk Mngmt on the WSUS server.   I went home for the weekend
    I came back today (9/22), saw I had gotten the "the server is failing to download some updates. Event ID 10032"   on Saturday 9/20 @ 1:30am.   I checked the volume \WSUScontent is on (the volume we extended) and it has
    17GB free. So I assume space should not still be an issue.
    The same 10032 error had occurred on 9/19, at 1:30 pm, but I assume it was before my colleague and I bumped up the disk space.  But why it occurred again the next day I'm not sure.
    However, since the 10032 error on 9/20 @ 1:30am, it has not reoccured, and no yellow or red event messages.  So possibly all is well now.  Could it have been that WSUS was being sluggish to recognize the increased disk space, even though Windows
    itself recognized it?  

    Thanks Lawrence, I went through the steps you instruct on (which I did not know about, so I greatly appreciate that!), and freed up over 30GB of space.
    Outstanding! :-)
    But your steps don't really address deleting all (solely) 2003 updates.
    Correct. First, because you cannot DELETE updates, unless they are expired or old revisions, and use the Server Cleanup Wizard to do that.
    Second, because the article was about removing *unneeded* updates. It does not consider the scenario where a product category is being retired
    When I go to my "2003" update view, sorting by Any Except Declined, and Status Any, I still see tons of 2003 ones, some solely for it, others that apply to 2003 and other OSs. I want to leave the latter, but delete the ones solely for
    2003. Not just superseded ones, but ALL that are solely for 2003.
    You cannot delete updates. You can DECLINE updates, if that's what you want to do.
    So let's talk a minute about these updates that might be applicable to operating systems other than Windows Server 2003. Let's be practical about the other operating systems listed. If you look closely, I suspect you will discover that those "other
    operating systems" are either Windows XP or Windows 2000, but nothing else. Do updates for Windows XP or Windows 2000 really matter to you? I suspect not.
    The reason I highly suspect this is because the practice of building packages targeted at multiple operating systems was terminated when Windows Vista was released (actually I think it happened with the release of WSUS v3, but this is just a matter of trivia,
    the relevant point is that it's not done anymore, and has not been done for many years).
    Ergo, I know for a fact, that NONE of the updates applicable for Windows Server 2003, will be applicable for any newer operating system. Ergo, it probably doesn't matter at all, so just SelectAll -> Decline if that's what you want to do.
    Lawrence Garvin, M.S., MCSA, MCITP:EA, MCDBA
    SolarWinds Head Geek
    Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2014)
    My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence%20R%20Garvin-32101
    http://www.solarwinds.com/gotmicrosoft
    The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

  • Adobe Premiere Elements 13, will not display video picture, audio only. My video format is listed as compatible with Adobe.

    Adobe Premiere Elements 13, will not display video picture, audio only. My videois listed as compatible with Adobe.

    douglass
    On what computer operating system is your Premiere Elements 13 running? Have you updated 13 to 13.1 yet using an opened project's Help Menu/Updates?
    If not, please do so.
    You have not given us enough information with which to help you.
    What are the properties of your source file that is presenting in the project with audio but no video?
    Quickest way to gain that information is from brand/model/settings of the camera that recorded the video.
    I am looking for
    video compression
    audio compression
    frame size
    frame rate
    interlaced or progressive
    file extension
    pixel aspect ratio
    What does the file's thumbnail look like in Project Assets after it is imported....thumbnail with no image (gray), thumbnail with only an audio icon
    within it, or other? On the Timeline, what do you see represented in Video 1....nothing as opposed to Audio 1 where you see the audio portion of
    the file?
    Do you have the latest version of QuickTime installed on your computer along with Premiere Elements 13/13.1? Are you running the programs as
    administrator?
    Is your video card/graphics card driver version up to date according to the web site of the manufacturer of the card?
    Let us start here. Based on your reply details, we will customize troubleshooting strategy for you.
    Thanks.
    ATR

  • Motion 3, DVD Studio Pro 3, Compressor...fail to display interface

    Macbook Pro C2D, Leopard OS X 10.5.1. All apps were running perfectly before this happened...
    First, all the apps of Final Cut Studio 2 crashed on startup.
    I recall that the last thing I did is trashing the newly installed trail version Aperture.
    After checking the crashing log, I found the problem comes from Prokit.framework. I did a thorough search, the answer is quite clear that the Prokit.framework comes with Aperture 1.5.2 is a PPC version, it replaced the intel version that was in my OS. So the solution is replacing the PPC version back to Prokit for Intel. Finally I found some provided download links of Prokit for Intel. BUT..
    All the Prokit online are extracted with Pacifist from either Tiger OS disc or ProAppRuntime4.0.2.pkg(from apple's website). So they are either version 3.1 or version 4.0.2. After replacing my Prokit.framework with version 4.0.2, all my FCS 2 apps except Final Cut Pro (but Log and Transfer inside FCP 6) stopped crashing but failed to display any interface. But the icons are in the dock.
    So finally I cleaned up all the files related to Final Cut Studio 2 and Prokit.framework and did a fresh reinstallation of FCS 2.
    Same thing! No interface at all.
    At this point, I doubt if the Prokit.framework in Leopard OS disc is different. It's too bad that I'm traveling for a project and my Leopard DVD is not in hand. So I asked a friend using Pacifist to extract Prokit.framework and Browser.framework from his Leopard DVD and sent them over. Now I found that they are indeed different. The one from Leopard is version 4.1. I did a replace again. Now, Motion 3, DVD Studio Pro 3 and Compressor start up, but with black windows and a few images, and the menu bars are really weird. I guess I should install this two framework with Pacifist instead of replacing them with the extracted folders?
    The last resort I guess is to reinstall Leopard? My dilemma if I don't finish my project, I have no access to my OS DVD, but I need to use FCS 2 to finish the project.
    Has anyone run into the same situation? Any enlightenment will be appreciated!

    I have just installed Leopard ans having problems with DDVDSPRO crasshing, can you please expand on how i may install prokit.framework and Browerkit frame work with Pacifist. I am not an expert please bear in mind!!
    many thanks

  • Display only current week events in sharepoint web part calendar

    i am using calendar in webpart. i need to display only current week events in calendar. Please give me any suggestions...
    Thanks Manohara R

    You could do this using calculated field formula. Refer to the following posts for more information
    http://modery.net/showing-only-this-weeks-events-of-a-sharepoint-calendar/
    http://ankursharepoint.wordpress.com/2011/01/19/list-filter-current-week-items-only/
    http://abstractspaces.wordpress.com/2008/05/14/filter-list-view-by-current-week/
    --Cheers

  • Job log - Failed to display result

    Hello,
    We have a problem displaying job logs, the message 'Failed to display result' appears when we try to display the log.
    The jobs have run last week.
    Any idea where I can have a look to find out what's going wrong?
    Thanks in advance,
    Kind regards,
    Ursula Delort
    SAP Administrator

    In fact, I just found out that we zip the job logs, and I just need to unzip them to be able to access the log.
    Ursula Delort

Maybe you are looking for