Still no native M2T handling in FCP6?

The tech specs for FCP6 claims "Native long GOP MPEG-2 editing for HDV, including 1080i 50/60, 1080p 24/25/30, 720p 24/25/30" and I took this as it now going to (finally) support native M2T files, however this looks to be a big mistake on my part because when I drag a M2T file onto the bin, all I get is a Unknown File error. How can this be an improvement, FCP5 already handled this if the HDV video was "captured" into MOV format, but FCP5 could never handle M2T files that were directly captured from the camera (Sony HC1). I do this for live recording to the HD of my laptop on long events that make it impractical to use tape, so its a huge deal for me.
I could not wait to get this software in my hands so I would quit having to do the 8 hour conversion from M2T -> MOV via MPEG_Streamclip, BEFORE i could even begin to edit. I just knew I was going to be able to drag the M2T file onto the timeline and started editing, but boy was I in for a shock.
BIG DISAPPOINTMENT!
PowerMac G5 DP 2.0 GHz   Mac OS X (10.4.4)   1.5GB RAM,160+250GB HD,GF5200

I believe there are a few apps on the PC side that natively edit M2T, but I've got too much $$$ invested in my Mac hardware/software at this point to afford to make that kind of switch, plus I really like editing in FCP, so that's what pains me even more, I fooled around with the likes of Premiere Pro, Vegas and I always found FCP easier and faster to use.
So I guess I'll continue converting my M2T into MOV-HDV files so I can edit them via MPEG_Streamclip.
An of course be praying for a FCP update that adds M2T to the list of import formats.

Similar Messages

  • I bought a fully specked, 2012 retina mac book pro today. Will it still be powerful in 4 years? In other words, will it still be able to handle high powered engineering programs in 4 years?

    In other words, will it still be able to handle high powered engineering programs in 4 years? It's i7, quad core, 2.7GHZ boost up to 3.7GHZ,16 GB RAM, and 768 flash SSD.
    Will it be considered a lower powered or mid powered machine in 4 years relative to the new laptops around it?
    I feel like fully specking it helps me be a little future proof.
    Is 6 years too ambitious to hope for that this machine will still be able to handle powerful programs?
    I spent $3000 so in 4 years I hope it will still be relativley fast.

    Nobody can predict what programs might need in the future.  And, nobody can predict where computers will head 3-4 years from now.  Power (meaning energy consumption) is becoming as important as speed (if not more so).  Purchase what you need now with a bit of headroom and expect that you might need to replace in 3 years (that's the reason large companies lease computers instead of purchasing them).
    It also depends on what you mean by "high powered engineering programs".  It could mean that  you don't have enough memory for newer applications and will constantly be swapping to disk.  This could either prevent you from using the SW or will significantly slow things down.
    It could also mean that the computations become more complex and need a faster cpu (this is a lower risk and simply means that your computer won't be quite as fast as your buddy's).
    It could mean that the OS you have today is obsolete and no longer supported for these applications.
    Don't worry about 4 years down the road.  Nobody (and I mean nobody) can predict even 1 year out.  Look at how many times companies delay product introductions, or provide "guidance" to analysts.

  • Cannot double-click on stills to get the handles to re-size them.  Could before...

    Was able to do this at one time.  Jpeg in the program monitor and then double-click would give me the resize handles.

    I have Premiere Pro 7.2.2, using OS 10.9.2.  I used to be able to re-size jpegs "on the fly" in the project panel, by double-clicking on them, which would give me some re-size handles.  I cannot do this any more, and it is too much of a pain to have to re-size them otherwise.
    The only other software that is running is Chrome and Finder.

  • Can't delete file after renaming due to Word file handle still present. Error staes document is still in use but it's really not. Worked fine in 2007 but not in 2010.

    I have some code associated with a Word Template. The template is opened, filled out and saved via a routing in vba. This all works fine in older 2007 version (which is version it was originally created in). Once this file is saved, the user can change the
    date in a text box and re-save document. The code saves using the new date for part of new file name and then deletes that older file from the server. It fails at the delete function because the newer version of word is not dropping the file handle from the
    first named file when user saves it to the new filename. In older version (2007) this handle was released as soon as file was saved to a different name. I can't seem to figure out how to release the old document filename so the old document file can be deleted.
    I hope I explained this well enough.
    Here's the code that woeked in version 2007 but fails in version 2010.
    Option Explicit
    Dim CAPEX01 As MSForms.ComboBox
    Dim CAPEX02 As MSForms.ComboBox
    Dim LocalPath As String
    Dim NetPath As String
    Dim OldPath As String
    Dim OldPathNet As String
    Dim DocName01 As String
    Dim DocName02 As String
    Dim DocName03 As String
    Dim DocName04 As String
    Dim DocName As String
    Dim DocNameold As String
    Dim TestDocName As String
    Dim filesys
    Dim newfolder
    Sub AutoOpen()
    ActiveDocument.ActiveWindow.View.Type = wdPrintView
    TestDocName = ActiveDocument.TextBox2
    OldPathNet = "\\yourPath\" & TestDocName & "\"
    End Sub
    Sub AutoNew()
    TestDocName = ActiveDocument.TextBox2
    OldPathNet = "\\yourPath\" & TestDocName & "\"
     ComboBox1.Locked = False
     ComboBox1.Enabled = True
     FillList1
     FillList2
     End Sub
    Sub DeleteOldDoc()
    OldPathNet = "\\yourPath\" & TestDocName ' & "\"
    DocNameold = OldPathNet & TestDocName & "-" & DocName02 & "-" & DocName03 & "-" & DocName04 & ".doc"
        If Not TestDocName = DocName01 Then
            Set filesys = CreateObject("Scripting.FileSystemObject")
        If filesys.FileExists(DocNameold) Then
            filesys.DeleteFile (DocNameold), True      
     'I get file permission error here
        End If
        End If
    If DocName01 <> "" Then
    If Not TestDocName = DocName01 Then
    If Not TestDocName = "" Then
        MsgBox "Project Proposal Has Been Moved From Year " & TestDocName & " To " & DocName01 & ""
    End If
    End If
    End If
    TestDocName = DocName01
    End Sub
    '''''''Document path functions''''''
    Sub chkpath()
    Set filesys = CreateObject("Scripting.FileSystemObject")
    If Not filesys.FolderExists("\\yourPath\") Then
       newfolder = filesys.CreateFolder("\\yourPath\")
    End If
    If Not filesys.FolderExists("\\yourPath\" & DocName01 & "\") Then
        newfolder = filesys.CreateFolder("\\yourPath\" & DocName01 & "\")
    End If
    End Sub
    ''''''Save Function''''''
    Private Sub CommandButton1_Click()
    DocName01 = ActiveDocument.TextBox2
    DocName02 = ActiveDocument.TextBox4
    DocName03 = ActiveDocument.TextBox1
    DocName04 = ActiveDocument.ComboBox1.Value
    chkpath
    NetPath = "\\yourPath\" & DocName01 & "\"
    DocName = NetPath & DocName01 & "-" & DocName02 & "-" & DocName03 & "-" & DocName04
    ActiveDocument.SaveAs2 FileName:=DocName, FileFormat:=wdFormatDocument
     ComboBox1.Locked = True
     ComboBox1.Enabled = False
     ComboBox2.Locked = True
     ComboBox2.Enabled = False
     TextBox1.Locked = True
     TextBox1.Enabled = False
     TextBox3.Locked = True
     TextBox3.Enabled = False
     TextBox4.Locked = True
     TextBox4.Enabled = False
     DeleteOldDoc
    End Sub
    Sub FillList1()
    Set CAPEX02 = ActiveDocument.ComboBox2
      With CAPEX02
          .AddItem "CASTING", 0
          .AddItem "HOT ROLLING", 1
          .AddItem "COLD ROLLING", 2
          .AddItem "FINISHING", 3
          .AddItem "PLANT GENERAL", 4
          .AddItem "MOBILE EQUIPMENT", 5
      End With
    End Sub
     Sub FillList2()
     Set CAPEX01 = ActiveDocument.ComboBox1
      With CAPEX01
          .AddItem "A Name", 0
          .AddItem "Another Name", 1
      End With
    End Sub
    Private Sub CommandButton2_Click()
        UserForm1.Show
    End Sub

    mogulman52 and Don,
    I went back and looked at my code and had already updated it to SaveAs in the new docx format. It still holds the lock handle in place until Word closes, unlike earlier versions which released the lock handle when you did a SaveAs.
    As a note, all my Word and Excel macro-enabled (dotm & xltm) templates are read only and are never filled in, prompting the user for a file name on any close event or if they run the code gets auto-named. I do the SaveAs and concatenate the file name
    from data on the document (or sheet) that has been filled in. During the SaveAs the docx gets saved to a network folder and also on a local folder. The lock gets renamed to the filename and remains until Word is closed.
    So my code still fails at the point noted below while trying to delete an old filename version after the file has been saved as a new filename in a new folder. So....
    The code is looking in the last folder where the docx file was saved for the older filename so it can be deleted. The newest docx version has already been saved in a different folder and has a new lock handle of its own. That lock is not my problem, it's
    the older file lock which really exists in the same folder as the first filename that the docx was saved to. It does not release that lock until I exit Word. My work around has been to instruct all users to manually delete the older version file.
    The other odd thing is this only happens when I run it from code, if you manually go through these steps with the SaveAs menu drop-downs in Word it will release the lock handle???
    Hope this isn't to confusing and thanks for all your suggestions and help.
    Sub DeleteOldDoc()
    OldPathNet = "\\yourPath\" & TestDocName ' & "\"
    DocNameold = OldPathNet & TestDocName & "-" & DocName02 & "-" & DocName03 & "-" & DocName04 & ".doc"
    If Not TestDocName = DocName01 Then
    Set filesys = CreateObject("Scripting.FileSystemObject")
    If filesys.FileExists(DocNameold) Then
    filesys.DeleteFile (DocNameold), True 'I get file permission error here- lock handle is still present from last SaveAs command in last folder where previous version of file was saved.
    End If
    End If
    If DocName01 <> "" Then
    If Not TestDocName = DocName01 Then
    If Not TestDocName = "" Then
    MsgBox "Project Proposal Has Been Moved From Year " & TestDocName & " To " & DocName01 & ""
    End If
    End If
    End If
    TestDocName = DocName01
    End Sub
    Glenn

  • Find window's native handle

    Hi.
    I have to find the native window handle of Java frame on Windows. I use the simple snippet for that as it is in all the tutorials. It worked fine for hundreds of different custom frames in the last years, but now I came to a frame that always returns JAWT_LOCK_ERROR when trying to lock the drawing surface (ds->Lock(ds)).
    What can cause it, and how can I overcome this problem?
    Thanks!
    H

    Troubleshooting 101: Replace, or "trash" your InDesign preferences
    http://forums.adobe.com/thread/526990

  • Problem with m2t clip import into AE CS3

    I have footage that I need to use AE to stabilize, but something odd is happening on import. The footage is 24p/1080 HDV shot on a Canon XH-A1s, and I'm importing the native .m2t files into AE CS3. I have the AE project settings on 24 fps, but when I import the m2t clips, they shift to 44.96 fps for no apparent reason.
    If I open up the Interpret Footage box for the imported clip, it's clear that AE *thinks* the footage is 44.96 fps. When I then change the frame rate to 24 fps in the Interpret Footage box, it still doesn't get it quite right (e.g., a shot that is exactly 15s00f long now reads as 14s22f).
    I tried using 23.976 fps as the footage intepretation, but it didn't make a difference...not that I thought it would.
    Anyone have any ideas? Thanks in advance,
    Stu

    You need to convert that m2t footage to a different  codec.  AE 9 can't handle that kind of footage.
    Since I'm a Mac guy, I like to go with Quicktime's PNG codec: it's lossless.

  • Android Native Extension to connect to USB device

    I am working on an AIR Native Extension for Android that I want to connect to peripheral devices via USB.  However, my efforts at enumerating USB devices just hang at present.  (Using this library: kshoji/USB-MIDI-Driver · GitHub )
    Before I get too far into debugging the code I wanted to check something more fundamental:
    Can an Android Native Extension handle/bypass the dialog that Android throws for use of USB (or other) devices.  ("Allow the app <AppName> to access the USB device?")  I have seen a few articles for defining intents and remembering permissions in native Android apps and tried that but it seems that the dialog would still be shown at least once.  (See android - USB device access pop-up supression? - Stack Overflow.)
    Is my understanding correct?  Is this what is hanging my app?  And if so is there any way to raise/handle that dialog in my AIR app or bypass it altogether?
    Thanks for reading.

    Read https://discussions.apple.com/thread/3828681?start=0&tstart=0
    Allan

  • Conforming in HDV:can I save on hd the m2t file instead to send to camera ?

    Hello!
    I use a Sony HVR V1 and FCP 6 to edit HDV footage.
    My Sony PlayStation 3 handles mpeg 2 files very well.
    I acquire with FCP by firewire, I edit and after conforming I use print to video to export to camera.
    After I use Apple DVHSCap to get from camera the m2t file , I rename it to m2v and I put it on the PS3.
    Can I avoid to export to camera and to re-acquire from camera ?? Can I save the file m2t that creates FCP after conforming on Hard Disk instead to send it to the camcorder ?
    For me is important to get native m2t file to obtain higher quality.
    A question: why a m2v file on Mac with VLC is not very smooth like on PS3 ?? On PS3 is true smooth, on Mac is choppy and I see the artifacts of interlacing.
    Excuse me if my english is not too good
    Thank you in advance
    Ciao
    Cino
    Italy

    your workflow is little confusing...
    m2t is a transport stream, which contains both video and audio multiplexed into one file. m2v is an elementary stream, containing video only. You are not accomplishing anything by changing the extension to m2v.
    The quality of the video is not in the extension, it is in the encoding. When you export to the camera in HDV mode, you are letting the camera encode back to mpeg2. Don't know how much control you have over the encoding process there. YOu are most likely bound by the presets the camera has. If you use Compressor you can encode to mpeg2 m2v, mpeg2 m2t, mpeg2 with layer1 audio program stream, and many others.
    I would read up on video compression both in your manuals and on the web. There is a lot to know about it to get good results.
    Don't judge the quality of the video on your computer screen. You should plug your computer into the television if you don't have an external video monitor, and compare the two then...

  • Importing .aaf file that links to .m2t file

    Hi, I've been asked to do some sound editing for a video that was edited in Vegas. The video editor is able to export a .aaf file which I know STP will read. However, the video was done in HDV and the audio/video files that the .aaf file refers to are .m2t files.
    STP seems to barf on those files, because when I try to import the .aaf, it says it can't find the .aaf file. So, I show it the path to the file, and then is says again that it can't find it. I take this to be a poorly designed alternative to a dialog box that says, "File format not supported."
    Regardless, after doing some quick online research, I learned that .m2t files aren't natively supported by FCP, and I'm guessing that's why it's not supported by STP, too.
    Does anyone have advice on a workflow that would work for this scenarios? Unfortunately, each video clip was imported to the Sony Vegas computer as a separate file. So the video project consists of literally hundreds of little .m2t files.
    Any advice?
    Cheers,
    Todd.

    That is definitely true. So I could convert the 100 .m2t files into 100 QT files. but what do I do about the fact that the .aaf file still references the .m2t files?

  • Problem with volume handle and external SWF

    Hello I'm having 2 problems.
    The first is that when loading an external swf in my main SWF I get this in the output window:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at audio_fla::list_1/frame1()
    at flash.display::Sprite/constructChildren()
    at flash.display::Sprite()
    at flash.display::MovieClip()
    at audio_fla::MainTimeline()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at audio_fla::MainTimeline/frame1()
    But it still works. Its an mp3 player.
    The other problem is that the loaded SWF has a volume controller. When I test the external SWF by itself it works fine. When I load it on my main SWF when I start to drag the handle on my volume slider and MOUSE_UP outside the handle it still keep dragging the handle.
    The code of my main SWF is:
    import caurina.transitions.*;
    var _currentCategory:String = "";
    var percent:String = "";
    var loader = new Loader();
    loader.name="videoLoader";
    loadermc.visible=false;
    cat.addEventListener(MouseEvent.MOUSE_OVER, onOverCat);
    cat.addEventListener(MouseEvent.MOUSE_OUT, onOutCat);
    cat.addEventListener(MouseEvent.CLICK, onClickCat);
    btnback.addEventListener(MouseEvent.MOUSE_OVER, onOverCat);
    btnback.addEventListener(MouseEvent.MOUSE_OUT, onOutCat);
    btnback.addEventListener(MouseEvent.CLICK, onClickBack);
    cat.buttonMode = true;
    btnback.buttonMode = false;
    btnback.visible = false;
    function onOverCat(e:MouseEvent):void{
         Tweener.addTween(e.target, {alpha:.5 , time:.5});
    function onOutCat(e:MouseEvent):void{
         Tweener.addTween(e.target, {alpha:.25 , time:.5});
    function onClickBack(e:MouseEvent):void{
         loader.unloadAndStop();
         loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioErrorHandler);
         lcontent.visible = false;
         cat.visible = true;
         Tweener.addTween(cat, {alpha:1, time:1});
         btnback.buttonMode = false;
         btnback.visible = false;
         cat.buttonMode = true;
         toptxt.text = "SELECCIONE UNA CATEGORIA"
    function onClickCat(e:MouseEvent):void{
         lcontent.visible=true;
         cat.buttonMode = false;
         Tweener.addTween(cat, {alpha:0, time:1, onComplete:function(){
                                  cat.visible = false;                                                       
                                  btnback.buttonMode = true;
                                  btnback.visible = true;
                                       loaderTweenIn(e.target.name);
    function loaderTweenIn (c:String):void{
         var category:String = c+".swf";
         trace(category);
         loader.load(new URLRequest(category));
         loader.contentLoaderInfo.addEventListener (Event.COMPLETE, movieLoaded);
            loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, movieProgress);
    function ioErrorHandler(e:IOErrorEvent):void{
         trace("ioErrorHanlder: "+e);
    function movieLoaded(e:Event):void{
         trace("The movie has loaded");
         lcontent.addChild(loader);
         loadermc.visible=false;
    function movieProgress(e:ProgressEvent):void{
         loadermc.visible = true;
    //     percent=String(Math.floor(e.bytesLoaded / e.bytesTotal * 100)) + "%";
         trace("The movie is loading "+Math.floor(e.bytesLoaded / e.bytesTotal * 100));
    The code on my external SWF is:
    import caurina.transitions.*;
    volume_mc.slider_mc.buttonMode = true;
    var myXML:XML;
    var thb:Thbs;
    var myThumbs:XMLList;
    var totalThumbs:Number;
    var thumbHeight:Number=50;
    var i:uint = 0;
    var preloader:LoaderAnim;
    var yCounter:Number = 0;
    var container:MovieClip;
    var musicReq:URLRequest;
    var music:Sound = new Sound();
    var sc:SoundChannel;
    var currentSound:Sound = music;
    var pos:Number;
    var songPlaying:Boolean = false;
    var songlist:XMLList;
    var currentIndex:Number = 0;
    mc_sound.mute.visible=false;
    var xmlLoader:URLLoader = new URLLoader();
    ///////////////////////////PLAYLIST//////////////////
    function initMediaPlayer(e:Event):void{
         myXML = new XML(xmlLoader.data);     
         myThumbs = myXML.*;
         totalThumbs = myThumbs.length();
         trace("The total thumbs are "+totalThumbs);
         createContainer();
         callThumbs();
    xmlLoader.load(new URLRequest("audio.xml"));
    function createContainer():void{
         container = new MovieClip();
         list.ch.addChild(container);
         container.y = 0;
         container.x = 0;
         container.buttonMode = true;
    function onOver(e:MouseEvent):void{
         var t:Loader = Loader(e.target);
         Tweener.addTween(t, {alpha:.5, time:1});
    function onOut(e:MouseEvent):void{     
         var t:Loader = Loader(e.target);
         Tweener.addTween(t, {alpha:1, time:1});
    function callThumbs():void{
              var thumbURL = myThumbs[i].@thumb;
              var thumbTitle:String = myThumbs[i].@title;
              var thumbDesc:String = myThumbs[i];
              trace("Loading "+thumbURL);
              trace("Title "+thumbTitle);
              trace("Desc "+thumbDesc);
              var thumbLoader = new Loader();
              thumbLoader.load(new URLRequest(thumbURL));
              thumbLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded);
              thumbLoader.name=i;
              thumbLoader.x=5;
              thumbLoader.y=5;
              thb = new Thbs();
              container.addChild(thb);
              thb.thb_title.htmlText = thumbTitle;
              thb.thb_desc.autoSize = TextFieldAutoSize.LEFT;
              thb.thb_desc.htmlText = thumbDesc;
              thb.y = (thumbHeight+2)*yCounter;
              preloader = new LoaderAnim();
              preloader.x = thb.x + 20;
              preloader.y = thb.y+ 20;
              container.addChild(preloader);
              yCounter++;
    function thumbLoaded(e:Event):void{
         var thbx:Loader = Loader(e.target.loader);
         thb.addChild(thbx);
         thbx.addEventListener(MouseEvent.MOUSE_OVER, onOver);
         thbx.addEventListener(MouseEvent.MOUSE_OUT, onOut);
         container.removeChild(preloader);
         i++;
         if (i<totalThumbs){
              callThumbs();
         if (i==totalThumbs){
              startAudio();
    xmlLoader.addEventListener(Event.COMPLETE, initMediaPlayer);
    ///////////////////////////////////////AUDIO//////////////////////////
    function startAudio():void{
         songlist = myXML.*;;//this is the same as myXML.*;
         trace("This is the first song "+songlist[0].@song);
         musicReq = new URLRequest(songlist[0].@song);
         music.load(musicReq);
         sc = music.play();
         sc.addEventListener(Event.SOUND_COMPLETE, nextSong);     
    next_btn.addEventListener(MouseEvent.CLICK, nextSong);
    prev_btn.addEventListener(MouseEvent.CLICK, prevSong);
    pause_btn.addEventListener(MouseEvent.CLICK,pauseSong);
    stop_btn.addEventListener(MouseEvent.CLICK,stopSong);
    function nextSong(e:Event):void
         if (currentIndex < (songlist.length() - 1))
              currentIndex++;
         else
              currentIndex = 0;
         var nextReq:URLRequest = new URLRequest(songlist[currentIndex].@song);
         var nextTitle:Sound = new Sound(nextReq);
         sc.stop();
         sc = nextTitle.play();
         songPlaying = true;
         currentSound = nextTitle;
         sc.addEventListener(Event.SOUND_COMPLETE, nextSong);
    function prevSong(e:Event):void
         if (currentIndex > 0)
              currentIndex--;
         else
              currentIndex = songlist.length() - 1;
         var nextReq:URLRequest = new URLRequest(songlist[currentIndex].@song);
         var prevTitle:Sound = new Sound(nextReq);
         sc.stop();
         sc = prevTitle.play();
         songPlaying = true;
         currentSound = prevTitle;
         sc.addEventListener(Event.SOUND_COMPLETE, nextSong);
    function pauseSong(e:Event):void
         pos = sc.position;
         sc.stop();
         songPlaying = false;
         play_btn.addEventListener(MouseEvent.CLICK,playSong);
    function playSong(e:Event):void
         if(songPlaying == false)
              sc = currentSound.play(pos);
              sc.addEventListener(Event.SOUND_COMPLETE, nextSong);
              songPlaying = true;
              play_btn.removeEventListener(MouseEvent.CLICK,playSong);
    function stopSong(e:Event):void
         sc.stop();
         pos = 0;
         songPlaying = false;
         play_btn.addEventListener(MouseEvent.CLICK,playSong);
    ///////////////////////////////VOLUME/////////////////////////////
    var xOffset:Number;
    var xMin:Number = 0;
    var xMax:Number = volume_mc.track.width;
    volume_mc.slider_mc.addEventListener(MouseEvent.MOUSE_DOWN, sliderDown);
    volume_mc.slider_mc.addEventListener(MouseEvent.MOUSE_UP, sliderUp);
    stage.addEventListener(MouseEvent.MOUSE_UP, sliderUp);
    function sliderDown(e:MouseEvent):void{
         stage.addEventListener(MouseEvent.MOUSE_MOVE, sliderMove);
         xOffset = mouseX - volume_mc.slider_mc.x;
    function sliderUp(e:MouseEvent):void{
         stage.removeEventListener(MouseEvent.MOUSE_MOVE, sliderMove);
    function sliderMove(e:MouseEvent):void{
         volume_mc.slider_mc.x = mouseX - xOffset;
         if(volume_mc.slider_mc.x<=xMin){
              volume_mc.slider_mc.x = xMin;
         if(volume_mc.slider_mc.x>=xMax){
              volume_mc.slider_mc.x = xMax;
         var vol:Number = volume_mc.slider_mc.x*.01;
         var st:SoundTransform = new SoundTransform(vol,0);
         sc.soundTransform = st;
         trace("The volume is "+vol);
         if(vol==0){
              mc_sound.mute.visible=true;
         }else{
              mc_sound.mute.visible=false;
         e.updateAfterEvent();

    I found the solution.

  • Invalid persistence handling in wls 11g

    Hi
    Current release of weblogic server 11g (10.31) still can't correcly handle persistence.xml's
    First, in wls ear/ejb's modules do not see persistence xml's added to ear root folder META-INF (like in Jboss or Webshphere)
    Second, ear's with persistence.xml included to jar's from app-inf/lib directory are deployed correcty only as ear package.
    The same content can'nt be deployed from console as open directory.
    An error occurs:
    weblogic.deployment.EnvironmentException: duplicate persistence units with name testJPA in scope test-ear.
    First PU location: file:/D:/bea10.31/user_projects/domains/base_domain/servers/AdminServer/tmp/_WL_user/test-ear/nrki7q/APP-INF/lib/test-jpa-1.0.6-SNAPSHOT-par.jar.
    Second PU location: file:/D:/workspace/test/services/testEAR/target/test-ear/APP-INF/lib/test-jpa-1.0.6-SNAPSHOT-par.jar
         at weblogic.deployment.AbstractPersistenceUnitRegistry.assertNoDuplicate(AbstractPersistenceUnitRegistry.java:313)
         at weblogic.deployment.AbstractPersistenceUnitRegistry.processDescriptor(AbstractPersistenceUnitRegistry.java:291)
         at weblogic.deployment.AbstractPersistenceUnitRegistry.loadPersistenceDescriptor(AbstractPersistenceUnitRegistry.java:192)
         at weblogic.deployment.AbstractPersistenceUnitRegistry.loadPersistenceDescriptors(AbstractPersistenceUnitRegistry.java:
    Can I disable copying of my resources to tmp/_WL_user?

    I fixed the problem is importing.
    I was able to import the MDS file successfully.
    Also created a class & jar and a plugin file and placed them in plugins directory of OIM_HOME
    I was able to see my calss in admin console. So, created a schedule task and tried to run but getting the below errors.
    java.lang.ClassNotFoundException: ClassLoader failed to load: oracle.iam.scheduler.testme
    at com.thortech.xl.dataobj.tcADPClassLoader.findClass(tcADPClassLoader.java:219)
    at oracle.iam.transUI.impl.CustomTaskLoaderImpl.getClassInstance(CustomTaskLoaderImpl.java:12)
    at oracle.iam.scheduler.impl.quartz.QuartzJob.execute(QuartzJob.java:123)
    at org.quartz.core.JobRunShell.run(JobRunShell.java:202)
    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:529)
    <Mar 10, 2012 5:01:22 PM CST> <Warning> <oracle.iam.scheduler.impl> <BEA-000000>
    <XSD Validation Exception: org.xml.sax.SAXParseException: cvc-elt.1: Cannot find the declaration of element 'scheduledTasks'.>
    <Mar 10, 2012 5:01:22 PM CST> <Warning> <oracle.iam.scheduler.impl> <BEA-000000>
    <XSD Validation Exception: org.xml.sax.SAXParseException: cvc-elt.1: Cannot find the declaration of element 'scheduledTasks'.>
    <Mar 10, 2012 5:01:22 PM CST> <Warning> <oracle.iam.scheduler.impl> <BEA-000000>
    <XSD Validation Exception: org.xml.sax.SAXParseException: cvc-elt.1: Cannot find the declaration of element 'scheduledTasks'.>
    <Mar 10, 2012 5:01:22 PM CST> <Warning> <oracle.iam.scheduler.impl> <BEA-000000>
    <XSD Validation Exception: org.xml.sax.SAXParseException: cvc-elt.1: Cannot find the declaration of element 'scheduledTasks'.>

  • ESB Exception handling

    Dave,
    In your Advanced Architecture presentation you mentioned about default and custom error handlers for non transactional end points. And you mentiond JMS:// and BPEL:// handlers as an example. So my question is how to configure this? I assume this involves editing ESB service files. Any documentation in this regard is appreciated. I know BPEL supports this via inbound activation specs but not sure about ESB.
    By transactional you mean Asynch invocations, right? If I invoke a BPEL either via SOAP or internal Java binding, can I still use the exception handling for a Asynch invocation?
    Thanks in advance.
    Regards,
    Rajesh

    Hi Dave,
    I checked this document yesterday, it contained 18 pages.
    Some great info in the additional 7 pages, just in time as well: at a customer site we are hitting bug 5547165, the rejected messages being empty. I checked the rejection handlers for BPEL and was investigating how these could be used in case of ESB. Seems you have provided the answer.
    Any chance a fix for the bug mentioned here is in the 10.1.3.3 patch set?
    One more thing: by default the rejected messages for ESB are written to file system, in a directory below the 'home' OC4J instance. Could this be turned into a configurable space in a next release?
    Thanks and best regards, Sjoerd

  • Handling Units Configuration Steps

    Can anybody please send me the step by step configuration steps for Handling Unit.
    Thanks in Advace for your help.
    SUNIL

    The following process chain provides an example of how Handling Unit Management can be set up for integrated implementation in the relevant SAP components
    Process Flow
    Sales and Distribution
    ·        You receive a sales order for certain materials. If you have a special agreement with the customer as to the packaging in which this material is to be delivered, you can reflect this agreement by using existing (or creating) packing instructions and a corresponding packing-instruction determination record. You can use this agreement at any point during packing. If the agreement is limited to this particular order, the information is created in the order in the form of a packing proposal.  This agreement is then also available during packing in repetitive manufacturing and in the delivery.
    ·        An availability check is run for the order items. If the system determines that the sales order cannot be filled by using the warehouse stock currently available, a requirement is created for production (in the case of in-house production) or for purchasing (in the case of external procurement).
    Production
    ·        A manufacturing order (such as a work order) is created for the respective material on the basis of the order requirement.
    ·        The raw material required for production is reserved (if it is in stock).
    Purchasing
    ·        If the raw material is not available in sufficient quantities, or if the material required for the sales order needs to be acquired externally, purchase orders are created from the requirements generated for material procurement.
    Goods receipt
    ·        The vendor notifies the goods recipient of the delivery of the goods by using a shipping notification that also contains the packaging data. The shipping notification generates an inbound delivery that includes the packing information from the shipping notification. If there is no EDI notification, the inbound delivery must be created and packed manually for the purchase order. The handling units are put away and the inbound delivery is posted for goods receipt.
    Quality Management
    ·        If the packing data is known in the inbound/outbound delivery, an inspection lot is created for these handling units and the stock is posted to quality inspection stock upon goods receipt/goods issue.
    ·        If the handling units have been put away in HU-managed storage locations, the handling units can be re-transferred since the stock is still managed through the handling unit.
    Warehouse Management
    ·        Handling units with raw materials are provided in time for production in accordance with the production requirement.
    Quality inspection
    ·        As soon as the quality inspection is complete, the stock in the handling units is posted to unrestricted-use stock or to scrap materials, depending on the usage decision.
    Inventory Management
    ·        If the production storage location is not HU-managed, the goods issue of the raw material takes place through an explicit stock posting or through the verification from production.
    ·        If the production storage location is HU-managed, the goods issue takes place either after successful staging of the materials or through explicit specification of the handling unit.
    Production
    ·        The production process is executed and the raw materials are used.
    ·        The handling units that result from this step are planned.
    ·        As a last step, the material that was produced is packed, either in production or after production. The handling units that are created in this way are confirmed as implemented. If there was no planning, the handling units are created directly as implemented handling units.
    Quality Management
    ·        If the status of the handling unit changes from planned to implemented (or changes during creation of implemented handling units from production), an inspection lot is created for the handling units.
    Inventory Management
    ·        The handling units are posted for goods receipt after verification from production (or in a separate step). Quality Management decides whether the handling unit is to be posted to unrestricted-use stock, inspection stock, or quality-inspection blocked stock.
    Shipping
    ·        An outbound delivery is created from the sales order
    Warehouse Management
    ·        Transfer orders are created for the materials to be delivered and the handling units are picked from stock. If only partial quantities of existing handling units are required, handling units are created for the picked materials.
    ·        The picked handling units are confirmed to the delivery.
    Shipping
    ·        The handling units that were picked can be repacked in the delivery. If there is a packaging proposal in the sales order, the delivery can be packed automatically in accordance with this proposal.
    ·        Goods issue is posted for the handling units.
    ·        The customer is informed through EDI about this delivery.

  • Invalid Handle Error

    Is anyone who is current on NCF updates still seeing the Invalid Handle error or is having any other difficulties when opening either the Log Viewer or Auto Update?
    You're current if your aupdhist.log file has an entry for "New package dated 02.26.2004 [ID=20040226_1142] "
    We've closed this defect as it seemed to get fixed with the changes we made in Update 1 that allow you to limit the log file size. Was kind of a "free" bug fix, if you will. Got resolved accidentally. ;) But I just wanted to poll the room and make sure everyone's ok on this issue.
    Thanks,
    Scott

    Scott,
    It appears that in the past few days you have not received a response to your posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
    - Check all of the other support tools and options available at http://support.novell.com in both the "free product support" and "paid product support" drop down boxes.
    - You could also try posting your message again. Make sure it is posted in the correct newsgroup. (http://support.novell.com/forums)
    If this is a reply to a duplicate posting, please ignore and accept our apologies and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Handles are stacked; won't move individually.

    I am working on adjusting a leaf shape drawn with the pen tool in Illustrator CS5. On the inside corners of the shape, I see two handles, but one is on top of the other, and I cannot move each handle separately. Is there a way to separate the two handles so I can adjust each side of the shape? See the yellow elipses (handles inside).
    Thanks for any help you can offer—this is making me crazy!

    O.k., I'm not exactly sure what made it work today, but after having closed down the file & Illustrator overnight, I tried again to adjust the handles on those anchor points.
    Using the convert anchor point tool would change between a smooth & corner point, but when it was a corner point, I could still not move the handles independently.
    I tried another approach (which did not work yesterday) before trying Jacob's suggestion; I used the direct selection tool to drag the path so that two separate handles at the point would be required to make the shape. I was then able to adjust the handles to achieve the shaping I was looking for.
    I'm posting this in hopes that anyone else encountering the problem will find it helpful.
    Thank you all for your helpful suggestions!

Maybe you are looking for

  • Help required for storage management

    Hi, I want that for each and every distinct row the columns value of that particular row should be stored in specific variables. Eg: table 1: Name add telephone_number a qw123 2323423545 b vsdfv34 3454645645 c wew222 8888867675 Result: for row1: vari

  • Same Account: Entourage Works Outlook Doesn't

    I'm in a small office of Windows users and one other Mac user. The Mac user is on a Macbook with 10.5.2 and I have a Macbook Pro with 10.5.2. I can connect to the Exchange server using MS Entourage 2004 with no problems. However, I can't connect to O

  • Metadata changes not applied to all selected images

    I am having 2 problems. When I am in lightroom's library (3.5), I would like to change the time of capture for multiple photos, and apply keywords. However, when I perform either of those actions, the changes are only applied to the image shown in th

  • No Edit Command in Photo Browser or Date View

    I am seeking to edit the contact book. There is suppose to be and "Edit" choice in the Photo Browser / Date View. However, this choice does not exist for me. I'm thinking that this is suppose to be a drop down menu choice. And am wondering if the pro

  • The operation couldn't be completed. (NSURLErrorDomain error -1012.)

    On May 25, I updated my OS X 10.9.3. Everything seems to work well. Even the crashing Safari that I could no longer load after restoring from a Time Capsule Time Machine Backup... it now works again! However, when I launch App Store and click Updates