DataLine replay the last frames when I dont write in it

Hi,
I have an App who receives bytes[] from UDP Packets, and write in a dataLine. The problem is clear, when I dont receive any packets, dataLine replay the last frames:
This is the code:
AudioFormat audioFormat = new AudioFormat(8000, 16, 1, true, false);
DataLine.Info info = new DataLine.Info(SourceDataLine.class,
                    audioFormat);
SourceDataLine dataLine = null;
dataLine = (SourceDataLine) AudioSystem
                         .getLine(info);
dataLine.open(audioFormat);
dataLine.start();
while(true)
if ( receive Sound )                    
          decode_G729 = gd.G729Decode(soundReceived);
          dataLine.write(decode_G729, 0, decode_G729.length);
System.out.println(dataLine.getLongFramePosition());                    
}This is the output of the frames:
Start receiving sound:
7680
7680
7680
7440
7600
7760
7840
8080
8160
8160
8160 Stop receiving sound in this moment:
8160
8160
8160
8160
8160
8160
8160
8160
8160
8160
8160
8160
8160
8160
8160
8160
8160
8160
8160
8160
8160
*4320
4560
5040
5280
5680
5920
7120
7520
7840
8160*
8160
8160
8160
8160
8160
8160
8160
8160
8160
8160
You can see that??? In some moment, when Im not writing in the DataLine, the FramePosition get back to an earlier position, and in some cases, replay the last moment of the sounds!!
Is really annoying, and I dont know how to fix it.
Any help would be appreciated.

AntonioMG wrote:
My intention was to put a code as clear as possible, I think theres no need to be rude...If you're asking for someone to help you find a bug in your code, you don't rip out sections of your code that could contain the bug you're looking for for the sake of clarity. It's a waste of everyone's time, and frankly, makes you look like a troll.
Giving the impression of wasting my time will result in me being rude to you. Sorry for the misunderstanding...
That said, try the following code and report back the results...
AudioFormat audioFormat = new AudioFormat(8000, 16, 1, true, false);
DataLine.Info info = new DataLine.Info(SourceDataLine.class,
                    audioFormat);
SourceDataLine dataLine = null;
dataLine = (SourceDataLine) AudioSystem
                         .getLine(info);
dataLine.open(audioFormat);
dataLine.start();
while(true) {
    socket.receive(packet);
    RTPPacket rtpPacket = new RTPPacket(packet.getData() , packet.getLength());
    if ( rtpPacket.getPayloadType() == 18 && rtpPacket.getPayloadLength() == 20) {
     // Ensure the line is started
     dataLine.start();
        decode_G729 = gd.G729Decode(soundReceived);
        dataLine.write(decode_G729, 0, decode_G729.length);
    // Stop the line if it's inactive
    if (! dataLine.isActive() {
        if (dataLine.isRunning()) {
            dataLine.stop();
    System.out.println(dataLine.getLongFramePosition());                    
}

Similar Messages

  • Urgent: Gif animation shows only the last frame when reloaded

    I use ImageIcon to show gif animations on screen. I want to use only non-looping gif animation files.
    Always when I show a gif animation for the first time it runs correctly through all the frames.
    However when reloading later the same gif animation only the last frame appears. I want to see all the frames of the animation, not only the last frame.
    So for the first showing of the animation this works well:
         icon = new ImageIcon("first_animation.gif");
           label = new JLabel();
           label.setIcon(icon);Then I show another animation and also it works well:
           icon2 = new ImageIcon("second_animation.gif");
           label.setIcon(icon2);Now I would like to show the first animation again but only the last frame of that first animation appears on screen:
    label.setIcon(icon);And even this alternative way to refresh does not work:
           icon = new ImageIcon("first_animation.gif");
           label.setIcon(icon);
    How can I reload the first animation again so that it shows all the frames not only the last frame???
    I have tried for ex. commands updateUI(); and setImageObserver but they don't seem to help.
    I am only a novice so...
    Please I would really appreciate your detailed advice what lines I should rewrite in my code and how?
    Thank you very much!!

    By flagging your question "urgent", you are implying that either your question is more important than other people's questions, or your time is more valuable than mine (or someone else's answering questions here). Both are not true.

  • When I send mi presentation to a Quick Movie, the program record only the last frame

    Why when I send mi presentation to a Quick Movie, the program record only the last frame, how I do to record the whole presentation of 52 frames

    I mean when I try to burn a CD.

  • In imovie 11, with an iMac, latest Mountain Lion, sometimes I insert a still and when I playback, the previous image freezes the last frame and holds during the duration I set for the still, skips both transitions, and jumps to the next clip. why?

    in imovie 11, with an iMac, latest Mountain Lion, sometimes I insert a still and when I playback, the previous image freezes the last frame and holds during the duration I set for the still, skips both transitions, and jumps to the next clip. why?

    in imovie 11, with an iMac, latest Mountain Lion, sometimes I insert a still and when I playback, the previous image freezes the last frame and holds during the duration I set for the still, skips both transitions, and jumps to the next clip. why?

  • Why is the green screen visible on the last frame before the next clip?

    Hey guys!
    Maybe I'm ******** but i m having trouble here. I have "key-ed" a bunch of clips and successfully removed the green screen from them. But when placed in the timeline, the green screen of the clip reappears for the single frame before a next clip starts.
    I've re-rendered and chopped ends off but the green screen keeps appearing in the last frame of any keyed clip that is about to cut to a different clip.
    Where am i going wrong?

    Hey! I tried both suggestions but even the self contained quicktime file has the green screen frames popping up.
    I just dont get it, it's infuriating!
    I used "chroma keyer" effect on the clip, only enable "key on saturation", the green screen disappears, I place clip on V2 and image on V1. Image is then visible where the green screen was. All is well until the last frame before a next clip because on that ast frame the green screen appears again. Where am I going wrong? Please help!

  • How do I loop back from the first frame to the last frame?

    Hi there,
    I'm currently working on the framework for a product viewer.
    I have:
    a movie clip called 'viewer_mc' which contains the images take from different angles of the product. The actionscript generates a script on the last frame of this that returns it to frame 1.
    a button instance called 'autoplay_btn' which plays through the movie clip from whatever the current frame is, and stops on frame 1.
    a left and right button which serve to move the movie clip frame, to give the appearance that the product is rotating.
    I have succeeded in getting it to:
    have the movie clip play through once, return to frame 1 and stop.
    have the buttons return functions when held down, that move the frame in the movie clip using nextFrame and prevFrame commands. The right button successfully loops round to frame 1 and continues functioning to give the appearance of continual rotation.
    The last problem I am experiencing is getting the left button to act in the corresponding manner, going from the first frame to the last and continuing to function.
    Here is my actionscript so far:
    import flash.events.MouseEvent;
    var lastFrame:Number = viewer_mc.totalFrames;
    var thisFrame:Number = viewer_mc.currentFrame;
    var backFrame:Number = viewer_mc.currentFrame-1;
    1. This is the part that gets it to play through once before returning to the first frame. I think perhaps the problem I am experiencing is because of the 'viewer_mc.addFrameScript(lastFrame-1, toStart)' part i.e. although I'm holding the left button, its returning to this script and therefor getting bounced back immediately to the first frame. However, there is no flicker on the screen which you might expect if this were the case
    Note - as this is a generic product viewer which I can use as a template I am using lastFrame etc. as opposed to typing the value in
    function toStart (){
              viewer_mc.gotoAndStop(1);
    viewer_mc.addFrameScript(lastFrame-1, toStart);
    2. This is the functionality for the autoplay_btn that will play through a rotation / return the viewer to the initial (frontal) view of the product (frame 1).
    autoplay_btn.addEventListener(MouseEvent.MOUSE_DOWN, autoplay);
    function autoplay (ev:MouseEvent):void{
              var startFrame:Number = viewer_mc.currentFrame;
              viewer_mc.gotoAndPlay(startFrame);
    3. This is the functionality of the right button, which when held, moves the movie clip to the next frame via the 'rotateRight' function based on the 'nextFrame' command. It loops back round to the first frame due to the 'viewer_mc.addFrameScript(lastFrame-1, toStart)' script generated on the last frame of the movie clip, as is desired.
    right_btn.addEventListener(MouseEvent.MOUSE_DOWN, rightDown);
    function rightDown(e:Event){
        stage.addEventListener(MouseEvent.MOUSE_UP,stoprightDown); //listen for mouse up on the stage, in case the finger/mouse moved off of the button accidentally when they release.
        addEventListener(Event.ENTER_FRAME,rotateRight); //while the mouse is down, run the tick function once every frame as per the project frame rate
    function stoprightDown(e:Event):void {
        removeEventListener(Event.ENTER_FRAME,rotateRight);  //stop running the tick function every frame now that the mouse is up
        stage.removeEventListener(MouseEvent.MOUSE_UP,stoprightDown); //remove the listener for mouse up
    function rotateRight(e:Event):void {
        viewer_mc.nextFrame();
    4. This is the functionality of the left button, which when held, moves the movie clip to the prev frame via the 'rotateRight' function based on the 'prevFrame' command. And this is where the problem lies, as although it works for getting the movieclip back to frame 1, it does not loop round to the last frame and continue functioning, as is wanted.
    left_btn.addEventListener(MouseEvent.MOUSE_DOWN, leftDown);
    function leftDown(e:Event){
        stage.addEventListener(MouseEvent.MOUSE_UP,stopleftDown); //listen for mouse up on the stage, in case the finger/mouse moved off of the button accidentally when they release.
        addEventListener(Event.ENTER_FRAME,rotateLeft); //while the mouse is down, run the tick function once every frame as per the project frame rate
    function stopleftDown(e:Event):void {
        removeEventListener(Event.ENTER_FRAME,rotateLeft);  //stop running the tick function every frame now that the mouse is up
        stage.removeEventListener(MouseEvent.MOUSE_UP,stopleftDown); //remove the listener for mouse up
    I'd imagine it is probably my logic for this part that is really letting me down - I can do a similar function in actionscript 2, but am trying to learn actionscript 3 just to move with the times as it were, and struggling a bit. Still this is only a few days in!
    function rotateLeft(e:Event):void{
              if(thisFrame==1){
                        gotoAndStop(viewer_mc.totalFrames-1);
              } else{
              viewer_mc.prevFrame();
    Any help you can give me would be gratefully received. For an example of the effect I am trying to achieve with the autoplay button etc. I recommend:
    http://www.fender.com/basses/precision-bass/american-standard-precision-bass

    Thanks for getting back to me.
    Here's the code without my comments / explanations:
    import flash.events.MouseEvent;
    import flash.events.Event;
    var lastFrame:Number = viewer_mc.totalFrames;
    var thisFrame:Number = viewer_mc.currentFrame;
    var backFrame:Number = viewer_mc.currentFrame-1;
    function toStart (){
              viewer_mc.gotoAndStop(1);
    viewer_mc.addFrameScript(lastFrame-1, toStart);
    //last image of viewer_mc = first image of viewer_mc
    autoplay_btn.addEventListener(MouseEvent.MOUSE_DOWN, autoplay);
    function autoplay (ev:MouseEvent):void{
              var startFrame:Number = viewer_mc.currentFrame;
              viewer_mc.gotoAndPlay(startFrame);
    right_btn.addEventListener(MouseEvent.MOUSE_DOWN, rightDown);
    function rightDown(e:Event){
        stage.addEventListener(MouseEvent.MOUSE_UP,stoprightDown); //listen for mouse up on the stage, in case the finger/mouse moved off of the button accidentally when they release.
        addEventListener(Event.ENTER_FRAME,rotateRight); //while the mouse is down, run the tick function once every frame as per the project frame rate
    function stoprightDown(e:Event):void {
        removeEventListener(Event.ENTER_FRAME,rotateRight);  //stop running the tick function every frame now that the mouse is up
        stage.removeEventListener(MouseEvent.MOUSE_UP,stoprightDown); //remove the listener for mouse up
    function rotateRight(e:Event):void {
        viewer_mc.nextFrame();
    left_btn.addEventListener(MouseEvent.MOUSE_DOWN, leftDown);
    function leftDown(e:Event){
        stage.addEventListener(MouseEvent.MOUSE_UP,stopleftDown); //listen for mouse up on the stage, in case the finger/mouse moved off of the button accidentally when they release.
        addEventListener(Event.ENTER_FRAME,rotateLeft);//while the mouse is down, run the tick function once every frame as per the project frame rate
    function stopleftDown(e:Event):void {
        removeEventListener(Event.ENTER_FRAME,rotateLeft);  //stop running the tick function every frame now that the mouse is up
        stage.removeEventListener(MouseEvent.MOUSE_UP,stopleftDown); //remove the listener for mouse up
    function rotateLeft(e:Event):void{
              viewer_mc.prevFrame();
    The definition of the rotateLeft function is where the problem lies I think - I've taken out my poor attempts at doing the logic from the previous post. If I were to write it out long-hand the statement I want to write is: 'If you get to frame 1 and function rotateLeft is called go to the end of the movie clip'.
    The reason I have to use the viewer_mc.totalFrames-1 definition in the addFrameScript call is the addFrameScript function is 0 based i.e. if you want to call frame 1 of the movieclip you have to return a value of 0 in the addFrameScript (or such is my understanding of it anyway). As such, the last image in the movie clip will need to be the view obtained at 360 degree rotation, which is of course the same view as at 0 degree rotation. As a consequence, the last frame in the movie clip is superfluous for the user, but necessary for the overall effect to be achieved. And, in addition, to keep up the effect of a 360 degree view when the rotateLeft function is called it needs to skip that last frame to go to the lastFrame-1 (or totalframes-1), or in other words, the view of the image prior to completing the full 360 rotation.
    the variables thisFrame and lastFrame are defined at the very top of the script. Like you said they might need to be defined or called on again elsewhere.

  • Aminated gifs only showing the last frame on the 2nd time of viewing

    I have 2 animated gifs and on pressing a button i am changing between the 2 on te first click the animated gif runs sucessfully and clicking the button again the 2nd animated gif runs sucessfully. However when i go to run the first animated gif again it only shows the last frame and this continues no matter how many times you press the button. Is there any way of getting it to start from the first frame. By the way just in case it makes a difference both the animated gifs run once they do not continously keep going and that is how i want them to be.

    public void mousePressed(MouseEvent e){
         if(corner.contains(e.getX(),e.getY())){
         if(reversed){
              setImageFile(gui.getFrontImage());
                   gui.setComponents(true);
                   reversed = false;
         else{
              setImageFile(gui.getBackImage());
                   gui.setComponents(false);
                   reversed = true;
         repaint();
    public void setImageFile(java.lang.String imageFile) {
         fieldImageFile = imageFile;
    /* Get and download the image for the new postcard background */
    backgroundImage = Toolkit.getDefaultToolkit().getImage( fieldImageFile );
         MediaTracker mt = new MediaTracker( this );
         mt.addImage( backgroundImage, 0 );
         try{     
              mt.waitForID( 0 );          
         catch( InterruptedException ie )
         repaint();
         mt.removeImage(backgroundImage, 0);
    public void paint(Graphics g)
    {     if( backgroundImage != null )
         g.drawImage( backgroundImage, 0, 0, this );
    so basically i press an srea area on the screen and every time i do it alternates between these 2 animated gifs gui.getBackImage() just returns te string of the animated gif file. I've checked to make sure that a new instance of the media tracker is being created each time and it is so i'm not really sure where the problem is!!

  • Movie after playing doesn't stop at the last frame.

    Movie after playing doesn't stop at the last frame but goes back to frame one. Movie stops normaly when played on iMac but makes trouble when placed in the iBooks Author. That's not eve problem of looping (repeat none). Help, this makes me mad.

    laura4life
    You have fragments (leftovers) beyond the end of the Timeline content that you intended.
    I am going from an Elements Windows workspace, so please translate into Mac accordingly.
    Expand your Timeline content to the maximum with the Zoom Out Zoom In slider above the Timeline.
    Press the End key of the computer keyboard. That should take the Timeline Indicator to the fragments which must be deleted.
    Explore all the tracks in that area.
    Repeat the End key press until the Timeline Indicator stops at the end of the intended Timeline and not some 3 hours afterward.
    What you find at "end of track" could be fragments or files that you moved out of the way of the active project and forgot were there.
    The fragments typically present as thin vertical black lines scattered about the tracks.
    Please let us know the outcome.
    Thank you.
    ATR

  • Premiere Pro CS6 - Keeping last frame when using Razor Tool - Help!

    Hi Everyone,
    A amateur editor here, I've had a bit of an issue after my cat decide to walk across my keyboard when Premiere was open!
    Now every time I try and cut a clip with the razor tool it keeps the last frame and adds it on to the end. I imagine there's a shortcut to switch this off? But I have no idea what the shortcut is called...
    There is now a beige strip after the selector, which wasn't there before! Does anyone know what my cat has managed to do and how I can turn it off?
    Thanks so much!
    Here's a screenshot as it's hard to describe...

    The beige or yellow stripe has always been there.
    You can only see it when zoomed in.
    It represents the duration of 1 frame.
    In this case you are on the last frame of the left clip.
    Cannot turn it off.

  • "previous" button to the last frame of a MC

    I have a question that I hope will be super easy - I just
    can't see to find it. Also, flash is not my main app but I'm trying
    to pick up on some work that someone else had started. Here is the
    breakdown - in the main timeline there are a series of projects
    (frames labeled "projA, projB, etc). If you open up each project
    movie clip (say projB) it opens up a slide carousel-like interface
    (frame1=image1, frame2=image2, etc). The next button says
    "onRelease go to frame 2" and so on. When we get to the last frame
    in projB, the NEXT button says go to the root and play projC. This
    allows the end users to just hit NEXT the whole time and work their
    way through the presentation.
    Where I'm a bit stuck is on the PREVIOS button frame of
    projB. I would like it to go to the LAST frame of ProjA but the
    best I can do is to make it go back to the begining of Proj A
    on(release){
    _root.gotoAndPlay("projA");
    Is there a way to make it go to say, frame 4 of projA? Or
    better yet, just the "last" frame of projA? I know this is probably
    not the ideal way to set up the file, but i inherited the
    presentation from my co-worker. Any suggestions on how to make the
    PREV button work a bit better?

    you might be able to accomplish this through the use of a
    variable, although it will be tricky in the scenario you describe.
    declare a new variable on frame one main timeline, let's say
    'back':
    var back:Boolean;
    then on the frame label for each project you will use a
    condition to see if 'back' is true - if so, then use the condition
    to nav to the last frame of the project clip - something like:
    if(back) {
    back = false;
    projA.gotoAndStop(projA._totalFrames);
    this would belong on the main timeline, so in your previous
    button's 'on' handler add a statement to set 'back' to true so that
    the condition fires. and navigates to the last frame of the proj
    clip, as in:
    on(release){
    _root.back = true;
    _root.gotoAndPlay("projA");
    repeat this procedure for all project frames and buttons
    replacing the MC instances with the corresponding names.

  • Blu-ray flashing up last frame when navigating

    hi people
    I've got a small but rather ugly problem with a blu-ray disc i'm authoring.
    When navigating to and from the main menu the last frame of the previous timeline or menu flashes up. So for example I'm watching timeline A and I hit the menu button on the remote the picture jumps to black for half a second, then flashes the last frame of timeline A for 5 frames and then proceeds to the menu. The same thing happens the other way, i'm browsing a menu and when I activate a button the screen jumps to black, then flashes up the menu again for 5 frames then starts playing the selected timeline.
    The navigation works but the experience is super clumsy. Is there any way to smooth this transition. I don't mind the jumps, I just don't want the secondary flash of the last frame.
    I should add that these are static menus with only a couple of buttons and very simple navigation. Playing on a Sony player, Sony burner, authored using Encore on a Mac.
    Any suggestions greatly appreciated.
    cheers../daniel

    Hi,
    I'm quite sure that Encore is doing some "quirks" with BlueRay.
    I have everytime a 2/3 second freezing time when Buttons appears after looping time.
    Probably due to bit differences that various BR player have. (I have a Sony).
    I'm also quite sure you'll not have this problem if you burn a DVD (as I did and noticed).
    Sorry, no ideas to help you but please post solutions in case you'll get.
    Ciao
    Giorgio

  • I loose both sound tracks of the last chapter when burning a movie to a disc in iDVD

    I loose both sound tracks in the last chapter when I burn a project to a disc in iDVD. The sound tracks are there if I play the movie in iDVD before burning to disc, but as soon as I try turn burn to disc the original sound track & the sound track imported from iTunes disappears in the majority of the last chapter.
    I'am using the latest version of iMovie & IDVD.  The project in iDVD is listed as 96 minutes & 3.9GB & I'am using an LG single sided DVD 120 Min 4.7GB
    Any help will be appreciated.
    Mike          (Australia)

    Hi
    May be something here.
    No audio on DVD disc.
    Most common origin.
    1. Imported audio from iTunes.
    • In iTunes copy out as an Audio-CD .aiff (Same as played on standard Stereo CD - no .mp3)
    • Use this in Your movie project
    2. Low - Free Space on Start-up/Boot/Internal/Mac OS Hard disk makes it hard for iMovie to work as intended.
    Down to 1.3 GB and it doesn’t work - especially audio don’t migrate over to Media Browser
    (iM’08 & 09)
    3. Material in iMovie’08 & 09 - Shared to Media Browser and here selected as Large
    large.m4v. It silenced out this project in iDVD. By making a slight alteration - provoking it to ask for a new Share/Publish to Media Browser and here selecting 640x480 - and audio was back when a new iDVD project was created including this movie.
    Minuscular - - 176x144
    Mobile - - - - - 480x360
    Medium - - - - 640x480
    Large - - - - - - 720x540    960x540
    HD - - - - - - - - 1280x720
    4. Strange audio formats like .mp3, .avi etc.
    • Change them to .aiff. Use an audio editor like Audacity (free)
    5. Main audio is set to off in System Preferences - Does this by it self - Don’t know why
    Cheque Audio-Out resp. Audio-In
    6. Ed Hanna
    Had the same problem; some Googling around gave me a kludgy, but effective fix
    Downgrade Perian from recent versions back to version 1.0.
    That worked for me, and so far I haven't encountered any deficiencies — except it takes more advanced versions of Perian to enable QuickTime to handle subtitles in .srt format — that I have noticed.
    7. GarageBand fix.
    In this set audio to 44.1 kHz (Klaus1 suggestion)
    (if this don’t work try 48 kHz - me guessing)
    Before burning the DVD.
    • Do a DiskImage (File menu and down)
    • Double click on the .img file
    • Test it with Apple DVD-player
    If it’s OK then make Your DVD.
    Burn at x1 speed.... (or x4)
    • In iDVD 08 - or - 09
    • Burn from DiskImage with Apple’s Disk Utilities application
    • OR burn with Roxio Toast™ if You got it
    Yours Bengt W

  • When I try to use siri to book an appointment the last step when she says "do you want me to shedule that for you" I say yes and then she says "Sorry I can't do that, very frustrating. Do I have to turn on another setting or something?

    When I try to use siri to book an appointment the last step when she says "do you want me to shedule that for you" I say yes and then she says "Sorry I can't do that, very frustrating. Do I have to turn on another setting or something?

    Hello BassoonPlayer,
    Since you are using one of the the school's Macbooks, it is quite possible that the time and date are not properly set on the computer that you are using.  FaceTime will not work if you do not have the proper time zone set up for the location that you are in.  This past week, there were a two other Macbook users I've helped by simply telling them to set the Date/Time properly.  By the way, you described your problem very well, which makes it easier for us to help you.  Hope this solves your problem -- if not, post back and I can suggest other remedies.
    Wuz

  • TS3999 In the last week when changing text notes in outlook appointments or all day events, the changes appear on my pc screen, iphone & ipad but when I print the changes are not there, the old text prints that has been deleted

    In the last week when changing test notes in Outlook appointments or all day events, the changes appear on my PC,  Iphone & Ipad, but when I print my calendar they do not print.  I get the old text or deleted text from the printer copy of my calendar.  What is going on?

    Thanks Sig. The information is here: Anything useful stand out?
    Battery Information:
      Model Information:
      Serial Number:    9G1130CJVD3MA
      Manufacturer:    DP
      Device Name:    bq20z451
      Pack Lot Code:    0000
      PCB Lot Code:    0000
      Firmware Version:    0201
      Hardware Revision:    0002
      Cell Revision:    0158
      Charge Information:
      Charge Remaining (mAh):    5663
      Fully Charged:    Yes
      Charging:    No
      Full Charge Capacity (mAh):    5663
      Health Information:
      Cycle Count:    59
      Condition:    Normal
      Battery Installed:    Yes
      Amperage (mA):    261
      Voltage (mV):    12574
    System Power Settings:
      AC Power:
      System Sleep Timer (Minutes):    10
      Disk Sleep Timer (Minutes):    10
      Display Sleep Timer (Minutes):    10
      Wake on AC Change:    No
      Wake on Clamshell Open:    Yes
      Wake on LAN:    Yes
      Current Power Source:    Yes
      Display Sleep Uses Dim:    Yes
      Battery Power:
      System Sleep Timer (Minutes):    10
      Disk Sleep Timer (Minutes):    10
      Display Sleep Timer (Minutes):    2
      Wake on AC Change:    No
      Wake on Clamshell Open:    Yes
      Display Sleep Uses Dim:    Yes
      Reduce Brightness:    Yes
    Hardware Configuration:
      UPS Installed:    No
    AC Charger Information:
      Connected:    Yes
      ID:    0x0100
      Wattage (W):    60
      Revision:    0x0000
      Family:    0x00ba
      Serial Number:    0x00262704
      Charging:    No

  • How to view the first and the last frame of a clip or a selected range in the time line?

    How to view the first and the last frame of a clip directly or in a selected range in the time line ? Up arrow and down arrow keys changes only between the first frame of the consecutive clips. Even ; and ' does the same. I mean what is the shortcut keys for first to last and last to first frame of a clip? Help please.

    SELECT PurOrderNum,
    OrderDate
    FROM
    SELECT PurOrderNum,
    OrderDate,
    MAX(OrderDate) OVER (PARTITION BY DATEDIFF(mm,0,OrderDate)) AS MaxDate,
    MIN(OrderDate) OVER (PARTITION BY DATEDIFF(mm,0,OrderDate)) AS MinDate
    FROM Purchasing.PurOrder
    WHERE OrderDate >= '2013-02-28'
    AND OrderDate <= '2014-12-29'
    )t
    WHERE OrderDate = MaxDate
    OR OrderDate = MinDate
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

Maybe you are looking for

  • Start up remains white screen

    During start-up, only white screen with Apple logo...what's happening??!

  • Burning from Library vs. Projects

    I'm trying to make quick backup copies of my old 8mm analog tapes. Since iDVD only supports direct to DVD using digital tapes, I import my tapes into iMovie first. The normal procedure would be to move all my library clips into a project file and the

  • Some of my work area become rasterized after saved?

    Sometimes when I work on a complex design project, I've notice that after I save and re-open my file, some of my work area was rasterize and uneditable. How can I fix this problem? Some of my work is too complex to re do it again. Thank you

  • MacBook Pro Retina - Keyboard and Touchpad Unresponsive While Charging

    Hi all, I am having some trouble with my early 2014 15" Retina MacBook Pro. Sometimes when attempting to charge my laptop, if I have been out and about, I can only have the charger plugged in for 30 seconds maximum upon booting up the machine, before

  • Burning a new CD-RW works first time, doesn't work after erase

    Hello all, My problem has a little twist that I couldn't find a solution to after spending a few hours digging in all the forums. I have never been able to re-use a stack of Sony CD-RW disks (p/n CDRW650L rated for 1X, 2X, and 4X drives). I can burn