Looping without Fade in/out clicks

Hi
I would like to play a simple sine wave sound continuously so that it lasts one minute instead of the current 500ms. However, when I loop it I get little clicks where the beginning of the sound file fades in/out. The same clicks appear when I copy/paste it, and I don't know how to get rid of them. See attached picture to see what it looks like. Please let me know if there is a way to fix this.
Thanks
-Darym

You need to edit it so that it joins up at a Zero Crossing point. Should be simple if it is a true sine wave, no crossfade should be necessary. Make sure that you have snapping to Zero Crossings turned on and you zoom in far enough to see the zero crossing.

Similar Messages

  • Hi all.When pressed play and make some changes in loop (eg fade in fade out) are very slow to implement, and also the loops from the library are very slow to play, corrects the somewhat self so is the Logic??

    hi all.When pressed play and make some changes in loop (eg fade in fade out) are very slow to implement, and also the loops from the library are very slow to play, corrects the somewhat self so is the Logic??

    Hey there Logic Pro21,
    It sounds like you are seeing some odd performance issues with Logic Pro X. I recommend these troubleshooting steps specifically from the following article to help troubleshoot what is happening:
    Logic Pro X: Troubleshooting basics
    http://support.apple.com/kb/HT5859
    Verify that your computer meets the system requirements for Logic Pro X
    See Logic Pro X Technical Specifications.
    Test using the computer's built-in audio hardware
    If you use external audio hardware, try setting Logic Pro X to use the built-in audio hardware on your computer. Choose Logic Pro X > Preferences > Audio from the main menu and click the Devices tab. Choose the built in audio hardware from the Input Device and Output Device pop-up menus. If the issue is resolved using built-in audio, refer to the manufacturer of your audio interface.
    Start Logic with a different project template
    Sometimes project files can become damaged, causing unexpected behavior in Logic. If you use a template, damage to the template can cause unexpected results with any project subsequently created from it. To create a completely fresh project choose File > New from Template and select Empty Project in the template selector window. Test to see if the issue is resolved in the new project.
    Sometimes, issues with the data in a project can be repaired. Open an affected project and open the Project Information window with the Project Information key command. Click Reorganize Memory to attempt to repair the project. When you reorganize memory, the current project is checked for any signs of damage, structural problems, and unused blocks. If any unused blocks are found, you will be able to remove these, and repair the project. Project memory is also reorganized automatically after saving or opening a project.
    Delete the user preferences
    You can resolve many issues by restoring Logic Pro X back to its original settings. This will not impact your media files. To reset your Logic Pro X user preference settings to their original state, do the following:
    In the Finder, choose Go to Folder from the Go menu.
    Type ~/Library/Preferences in the "Go to the folder" field.
    Press the Go button.
    Remove the com.apple.logic10.plist file from the Preferences folder. Note that if you have programmed any custom key commands, this will reset them to the defaults. You may wish to export your custom key command as a preset before performing this step. See the Logic Pro X User Manual for details on how to do this. If you are having trouble with a control surface in Logic Pro X, then you may also wish to delete the com.apple.logic.pro.cs file from the preferences folder.
    If you have upgraded from an earlier version of Logic Pro, you should also remove~/Library/Preferences/Logic/com.apple.logic.pro.
    Restart the computer.
    Isolate an issue by using another user account
    For more information see Isolating an issue by using another user account.
    Reinstall Logic Pro X
    Another approach you might consider is reinstalling Logic Pro X. To do this effectively, you need to remove the application, then reinstall Logic Pro X. You don't have to remove everything that was installed with Logic Pro X. Follow the steps below to completely reinstall a fresh copy of Logic Pro X.
    In the Finder, choose Applications from the Go menu.
    Locate the Logic Pro X application and drag it to the trash.
    Open the Mac App Store
    Click the Purchases button in the Mac App Store toolbar.
    Sign in to the Mac App Store using the Apple ID you first used to purchase Logic Pro X.
    Look for Logic Pro X in the list of purchased applications in the App Store. If you don't see Logic Pro X in the list, make sure it's not hidden. See Mac App Store: Hiding and unhiding purchases for more information.
    Click Install to download and install Logic Pro X.
    Thank you for using Apple Support Communities.
    Cheers,
    Sterling

  • Dynamically add a fade in/out transition to a caption when "showing" it from an Action?

    I have a conditional action set up where if things are not correct (text input in two entry fields), I show feedback in a caption box. I figured out how to set the caption box to be initially invisible (via unchecking the Visible checkbox for the caption's properties), and how to show it when this condition occurs. But I 'd like it to also do the traditionall transition of fade in & out when I show it fromt he action. My Advanced Action is executed when the user clicks an "OK" button.
    Any thoughts or advice?

    Yes. Plenty of media on either end. The good news is that trashing the permissions and repairing worked.
    BUT I have a question while these great minds are assembled...When repairing disk permissions the Utility says that to repair permissions on startup disk, start using my OSX install disk, which in my case is the the CD that came with my powerbook. When I tried to startup using that CD, holding down the "c" key on startup, it went into install mode. I told it I did not want to install, set the startup disk as the CD again, and kept looping around in this manner. I am probably missing a step...First question:
    1) Is it in fact necessary to start up from this CD in order to properly repair permissions?
    2) If yes, how do I get away from the install mode and to the disk utility, once the installer pops up.
    Thanks in advance. You guys are lifesavers once again.

  • Fade in/out several tracks with the crossfade tool?

    Can I Fade in/out several tracks with the crossfade tool? I mean without selecting them and then add value...? just like in ProTools just selecting the regions and apply the fade tool???? VIP question

    The Sound Factory Studio wrote:
    Can I Fade in/out several tracks with the crossfade tool? I mean without selecting them and then add value...? just like in ProTools just selecting the regions and apply the fade tool???? VIP question
    No.
    To add crossfades or fade in/outs to multiple audio regions, you must do it from the fade parameter box, either entering numerically, or by clicking and dragging on the numeric value.

  • Fade in/out with external SWFs

    Hi All.. I"m very new to AS in general..
    I'm trying to have a simple slideshow with external SWFs that outomatic and onClick..I achieved it except the abrupt white space after the unloaded clip goes away... I have this code and I'm not getting any errors - but I mut not have it connected somehow because the fade out is still not there... Can someone please please help me with this... I really appreciate any help ahead of thime...
    //Import classes for easier use
    import fl.transitions.Tween;
    import fl.transitions.TweenEvent;
    import fl.transitions.easing.*;
    //Timer
    var slideDuration:uint = 8000;  // or use whatever
    var slideTimer:Timer=new Timer(slideDuration,0);
    slideTimer.addEventListener(TimerEvent.TIMER,autoAdvanceF);
    slideTimer.start();
    var btnA:Array = [one_btn,two_btn,three_btn];
    var previousBtn:SimpleButton = one_btn // use class type of your buttons
    function autoAdvanceF(e:TimerEvent):void{
    nextButtonF(previousBtn).dispatchEvent(new MouseEvent(MouseEvent.CLICK));
    function nextButtonF(btn:SimpleButton):SimpleButton{ // use class type of your buttons
    for(var i:uint=0;i<btnA.length;i++){
    if(btnA[i]==btn){
    return btnA[(i+1)%btnA.length];
    return null;
    //Load external SWF into main
    var Xpos:Number = 0;
    var Ypos:Number = 0;
    var swf:MovieClip;
    var loader:Loader = new Loader();
    var defaultSWF:URLRequest = new URLRequest("swfs/one_btn.swf");
    var target_mc:MovieClip = new MovieClip();
    addChild(target_mc);
    var target_mc2:MovieClip = new MovieClip();
    addChild(target_mc2);
    //load swf to movieClip
    target_mc.addChild(loader);
    //variables that store current content clip and current content indes
    var activeTarget:MovieClip = new MovieClip();
    loader.load(defaultSWF);
    loader.x = Xpos;
    loader.y = Ypos;
    addChildAt(loader,0);
    //Btns universal function (whenver any button is clicked, the loader will be removed
    function btnClick(event:MouseEvent):void {
        if (target_mc.alpha > 0) {
            target_mc.alpha -=10;
        if(target_mc2.alpha < 100) {
            target_mc2.alpha +=10;
    slideTimer.reset();
    slideTimer.start();
        previousBtn = SimpleButton(event.currentTarget);
        removeChild(loader);
        var newSWFRequest:URLRequest = new URLRequest("swfs/" + event.target.name + ".swf");
        var myTween:Tween = new Tween(loader, "alpha", None.easeIn, 0, 2, 1, true);
        loader.load(newSWFRequest);
        loader.x = Xpos;
        loader.y = Ypos;
        addChildAt(loader,0);
    loader.addEventListener(Event.ENTER_FRAME, onEnter);
    // Movie level enterFrame event handler that will fade down object 1 (if it's alpha ishigher than 0) and fade up object 2 (if its aslpha is less than 100)
    function onEnter(event:Event):void {
        if (target_mc.alpha > 0) {
            target_mc.alpha -= 10;
        if (target_mc2.alpha < 1 ) {
            target_mc2.alpha +=10;
        loader.removeEventListener(Event.ENTER_FRAME, onEnter);
        trace ("the movie clip is faded in");
    /// Button Listerners
    one_btn.addEventListener(MouseEvent.CLICK,btnClick);
    two_btn.addEventListener(MouseEvent.CLICK,btnClick);
    three_btn.addEventListener(MouseEvent.CLICK,btnClick);

    The Sound Factory Studio wrote:
    Can I Fade in/out several tracks with the crossfade tool? I mean without selecting them and then add value...? just like in ProTools just selecting the regions and apply the fade tool???? VIP question
    No.
    To add crossfades or fade in/outs to multiple audio regions, you must do it from the fade parameter box, either entering numerically, or by clicking and dragging on the numeric value.

  • Fade in on click something else

    I'm new to DreamWeaver CS3, coming from DW MX. I'm playing
    with the Spry Effects and I noticed the Fade In / Fade Out only has
    options for the user doing something to that item to make the
    effect happen. Is it possible to click an image and make something
    else fade in / out?
    Edit: OK I figured it out, but the text I want to fade in is
    already there when the page loads. How to I make an AP Div (which
    contains this text) already invisible when the page loads? Kinda
    pointless to fade in if it's already visible. Thanks

    Philnolan_3d wrote:
    > I'm new to DreamWeaver CS3, coming from DW MX. I'm
    playing with the Spry
    > Effects and I noticed the Fade In / Fade Out only has
    options for the user
    > doing something to that item to make the effect happen.
    Is it possible to
    > click an image and make something else fade in / out?
    Go to the following page, click on the Effects tab and then
    check out the examples for the various examples as most of them use
    the click x apply effect to y like what it seems you're asking for:
    http://labs.adobe.com/technologies/spry/samples/
    Also, Spry questions are best asked in the Spry forum:
    http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid=72&catid=602
    Danilo Celic
    |
    http://blog.extensioneering.com/
    | WebAssist Extensioneer
    | Adobe Community Expert

  • Reports included in the page keep looping without retrieving any results

    We are facing an issue related to the behaviour of Siebel Analytics when more than 1 answer are included in a dashboard page. When a report is generated, the other reports included in the page keep looping without retrieving any results, but if I manually click on 'cancel' link, the reports successfully appear with consistent data. This behaviour is not stable since sometimes the page works fine, sometimes not, but it's not clear what it depends on. Can anybody please let me know if this behaviour is a known bug.

    Hi Deb,
    Could you please explain me in more detail?
    The problem is we are able to see the old reports that we were already moved into Q environment. The newly moved 5 reports are giving this error message.
    Please help
    Thanks
    Sri

  • Adobe Audition CC 2014 - Fade In/Out to playhead?

    Hello all,
    My question is this: In a multitrack session (or in waveform editor) I want to be able to tell Audition to fade in/out to the playhead. At present, I can set a shortcut to "Clip--Fade In(Out) Normal". However, when I use said shortcut in a multitrack session Audition makes a fade in/out of a predetermined length (appx 16 sec). If anyone knows how to adjust this please let me know, otherwise let this thread stand as a feature request.
    Thanks.

    I think you misunderstand the question. I know how to draw a volume envelope. Here's what I want to do:
    Right now to use the automatic fades that are present on each clip I have to grab the box and draw it out. Now, as I said before, there are keyboard shortcuts that will activate this without having to draw it out. I have done this by going to the keyboard shortcut editor, finding "Clip--Fade In (or Out) Normal" and assigning Alt-G to it. If I use my assigned shortcut now it makes a fade that seems to be set at random, probably in relation to the overall length of the selected clip (longer clip=longer fade). What I would like it to do is exampled by the pic above, simply give me a fade in/out in relation to where the playhead is on the selected clip. This would be similar if one was in ProTools (with a-z mode) and types "D" (Fade from start) or "G" (Fade to end). If this option isn't available it should be on a future release.

  • How to declare procedure without using IN OUT parameter?

    Hi:
    I want to declare procedure without using IN OUT parameter.
    My Script is:
    DECLARE
    procedure pro_bank_master() As
    Declare
    kr_bankid integer;
    last_bank_id number(10,0);
    CURSOR comp_cur IS select bank_id,date_created,created_by,modified_by,name_en from COM_BANK_MASTER ;
    comp_rec comp_cur%ROWTYPE;
    BEGIN
    OPEN comp_cur;
    FETCH comp_cur INTO comp_rec;
    WHILE comp_cur%FOUND
    LOOP
    kr_bankid:= comp_rec.bank_id;
    insert into crayom_db.C_Bank(ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, name, routingno, c_location_id, swiftcode, isownbank, description) values(11,11,'Y',sysdate,100,sysdate,11,comp_rec.name_en,'A',1000009,'A','Y','A');
    select crayom_db.C_Bank.c_bank_id into last_bank_id from crayom_db.C_Bank where rownum=1 ORDER BY crayom_db.c_bank.c_bank_id DESC;
    insert into crayom_db.CR_IdBackup values(kr_bankid, last_bank_id);
    FETCH comp_cur INTO comp_rec;
    End LOOP;
    close comp_cur;
    END;
    BEGIN
    pro_bank_master();
    END;
    The Error i am receiving is:
    Error starting at line 1 in command:
    DECLARE
    procedure pro_bank_master() As
    Declare
    kr_bankid integer;
    last_bank_id number(10,0);
    CURSOR comp_cur IS select bank_id,date_created,created_by,modified_by,name_en from COM_BANK_MASTER ;
    comp_rec comp_cur%ROWTYPE;
    BEGIN
    OPEN comp_cur;
    FETCH comp_cur INTO comp_rec;
    WHILE comp_cur%FOUND
    LOOP
    kr_bankid:= comp_rec.bank_id;
    insert into crayom_db.C_Bank(ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, name, routingno, c_location_id, swiftcode, isownbank, description) values(11,11,'Y',sysdate,100,sysdate,11,comp_rec.name_en,'A',1000009,'A','Y','A');
    select crayom_db.C_Bank.c_bank_id into last_bank_id from crayom_db.C_Bank where rownum=1 ORDER BY crayom_db.c_bank.c_bank_id DESC;
    insert into crayom_db.CR_IdBackup values(kr_bankid, last_bank_id);
    FETCH comp_cur INTO comp_rec;
    End LOOP;
    close comp_cur;
    END;
    BEGIN
    pro_bank_master();
    END;
    Error report:
    ORA-06550: line 8, column 27:
    PLS-00103: Encountered the symbol ")" when expecting one of the following:
    <an identifier> <a double-quoted delimited-identifier>
    current
    06550. 00000 - "line %s, column %s:\n%s"
    *Cause:    Usually a PL/SQL compilation error.
    *Action:
    Can any Body Help Me?
    Thank You

    DECLARE
    procedure pro_bank_master As --also you should remove brackets when you are not using any parameters
    ----Declare-- *( declare should not be present in procedure declaration )*
    kr_bankid integer;
    last_bank_id number(10,0);
    CURSOR comp_cur IS select bank_id,date_created,created_by,modified_by,name_en from COM_BANK_MASTER ;
    comp_rec comp_cur%ROWTYPE;
    BEGIN
    OPEN comp_cur;
    FETCH comp_cur INTO comp_rec;
    WHILE comp_cur%FOUND
    LOOP
    kr_bankid:= comp_rec.bank_id;
    insert into crayom_db.C_Bank(ad_client_id, ad_org_id, isactive, created, createdby, updated, updatedby, name, routingno, c_location_id, swiftcode, isownbank, description) values(11,11,'Y',sysdate,100,sysdate,11,comp_rec.name_en,'A',1000009,'A','Y','A');
    select crayom_db.C_Bank.c_bank_id into last_bank_id from crayom_db.C_Bank where rownum=1 ORDER BY crayom_db.c_bank.c_bank_id DESC;
    insert into crayom_db.CR_IdBackup values(kr_bankid, last_bank_id);
    FETCH comp_cur INTO comp_rec;
    End LOOP;
    close comp_cur;
    END;
    BEGIN
    pro_bank_master();
    END;
    Edited by: user11183973 on Sep 22, 2009 5:49 PM

  • I have no way to return to previous page without going completely out of firefox - can you help with this?

    I start with the home page of a site. Then go to one of the other pages on the same site. I find no way to return to the home page without going completely out of firefox and having to start all over again. In other words the "back" arrow is gray and does not work to get me back to the original home page. Can you help with this?

    Try double clicking on the Back arrow. If you click on it and hold it pressed, it should give you a drop down list of the previous pages. You can also achieve that by right click on the Back arrow. But if you do a single, quick click on it, it should take you back.

  • How to fade in/out volume in editor?

    We do a lot of multi camera work with kids.  We constantly need to turn off their mics (in post) when not in use because they are rubbing them, coughing, etc.  We turn it up when they talk and off when they're not talking.
    Like this:
    Sometimes it's a bit more complicated than this and I want to get a full scren version of just this one track.  So I thought double-clicking on it and bringing up the waveform editor (is that what it's called?) would be just the ticket.  It's very quick especially with hotkeys 0 and 9 to go back and forth.  But I can't se those handles or the volume line anywhere inside as you can see here:
    How can I do this in the waveform editor?  I know I can do it in the multitrack editor by making the view area of the track bigger by stretching it.  But that's a lot of work when you have 6 kids and each one has 200 up/down points per session. 
    I would like a quick "multi-track view to fullscreen of one track" with one single click or hotkey.
    Thanks for your help!

    Great, Steve.  Sounds good.  I don't like doing anything destructive since we work in a multi-person environment. I'm afraid that with so many people touching the projects, it's easy for a mistake to be made.
    I like your last idea a lot (razor cuts).  Maybe to pick your brain a bit, I would still like to fade these in/out a bit so we don't get the bad background noise (if a mic has it) popping in and out just before/after the person talks. 
    ... Oh, I just tried this.  Do you see any probs with doing something like this to fade in/out?  This would be very easy for us?
    Also, what would you recommend to keep the individual clips from shifting around accidentally?  I know you mentioned muting the other clips, which is a great idea.  But is there another way to do it with cutting out the non-used sections?  I really like that idea better, since you can visually see where a person's audio comes in/out at in Premiere (something that was a bugger there unless you have your waveform expanded very large--but if you do that, you run out of screen real estate for video editing).
    Since there are sometimes 6 mics to sync up to a video recording, if one clip gets bumped here or there, we're in trouble since now there's 20 little clips sitting on a track instead of one long one with up/down keyframes.  Before it would be easy--just slide the whole long clip over to 00:00;00 and you're good.  Now it could get messy.
    I know the mutted tracks would be a solution, but since you're an expert at this, is there a way I can keep things locked in place while having clip-blank-clip-blank tracks?
    Thanks again for your awesome help!

  • How to fade in/out single track volume?

    I'm new to GarageBand, but shouldn't there be a slider or control for individual tracks?  The Help menu doesn't seem to give me info, nor does the Track menu.
    I just want to be able to fade tracks in and out - it's called mixing, right?  The fade line at the bottom (in purple) controls all the tracks...but isn't there a fade in/out control for single tracks besides setting the level for that track section?
    For instance, in the photo, below, the "Acoustic Guiter Rock Picking", highlighted,  is where I'd like to fade it in at the beginning and fade out at the end, while having the other tracks stay the same.  Advice appreciated, thanks.
    I saw in another post that there's a track slider in GB '11, but as I have '08, there seems to be no triangle to click.  Any workarounds?  Can't imagine why this basic feature wasn't in earlier version, if so.

    Looks like the answer was right under my nose.  I thought it only applied to later versions of GB, but the track option is in v. 4 (mine) too.
    Here's the simple solution:
    G a r a g e B a n d  i s  t h e  c o o l e s t  t o o l!

  • Tool Palettes - fade in/out

    Has anyone noticed the Tool Palettes in CS3 fading in and out as you switch applications?
    Is there a way to turn this fading effect off?
    Thanks

    "J Maloney - 11:35am Apr 22, 08 PST (#11 of 11)
    http://www.adobeforums.com/webx?128@@.3bc43e5c "
    Thanks for that ref J Maloney.
    To summarize the ref:
    1) Some people have trouble with the fade in/out taking a long time, even though they have perfectly good-spec machines. They are looking for HELP.
    2) Many other people have no trouble and just clog up the thread with rude taunts, useless blather, insults or suggestions to spend $3,000 on new equipment to fix this Eye-Candy stupidity by Adobe engineers who don't care about people without $5,000 workstations.
    For the record;
    A) I am looking for solutions. If you don't have one, please do not clog up the thread, thanks.
    B ) I have a dual G4 1.25GHz with 2 GB RAM and OSX 10.4.11. I have NO other programs which take more than 1/10 sec or so to switch. If I am in another app, and I grab the titlebar of a PS CS3 window and drag it, NOTHING HAPPENS for 2 or more seconds. REALLY ANNOYING.
    This happens on NO OTHER APPS. PS 6, 7, CS1, CS2. It has never happened to me on this machine in ANY app EVER. My best guess is that a new video card which supports the Core Image acceleration would fix this, but I looked and DO NOT HAVE $100 - $200 to spend on a new video card, just to fix this Adobe does-nothing-useful stupidity.
    So, if you can help, please feel free to post.
    If you cannot help, then please do not post.
    Thank you.

  • How to Update Android Enterprise APP without any prompt or click?

    Hi,
    I have an app running on Samsung Android Devices
    I have two version 103 and 110
    I can deploy and install  without any prompt or click version 103 by using Application policy. I just Selecten "required"
    Then I have to updta this app from 103 to 110.
    In able to do this, I change apk file in application policy.
    But, In afaria client, I see that version 110 is shown in update tab. And waiting for tap to update.
    I want to update automatically update 103 to 110.
    How?
    Maybe first of all I have to run Samsung configuration policy to uninstall 103 and then run application policy to install 110.
    But this is complicated.
    What I've done?
    I run Application policy to install 103.
    Then I change apk file 103 to 110 in application policy.
    Then create a session to send 110.apk file to device.
    Then run configuration polict to update from 103 to 110 from defined file location on devices. (storage/sdcard0/110.apk)
    I know it is more complicated.
    Is there any simple method?

    Hi Tevfik,
    Even i have the same problem and don't want to follow this complicated process.
    Did you latter find any easy way out, to update the enterprise app in the Samsung device without user intervention?
    Thank you
    Regards
    Sajan Mathew

  • Playing recorded loops (they stay greyed out)

    When recording on a loop , it creates multiple recordings, and places it on a new track. I love this functionality! However only the last loop recorded lets me play it / hear it. How do I enable the other tracks so that i can hear them (ungrey them out / enable them). Much thanks in advance for any help!
    ps - I searched for this but couldnt fund any relevant results
    -B

    Timothy Shider, "Playing recorded loops (they stay greyed out)" #4, 07:18pm Oct 17, 2005 CDT
    Timothy, this has nothing to do with this topic.
    Start a new thread. (but this time, release the caps lock OK )

Maybe you are looking for

  • USB ports have power but no data connection

    Hello I have a HDX 16-1040 US HP, PORTS External Ports * 5-in-1 integrated Digital Media Reader for Secure Digital cards, MultiMedia cards, Memory Stick, Memory Stick Pro, or xD Picture cards * 4 Universal Serial Bus USB 2.0 * 1 VGA (15-pin) * 1 HDMI

  • Can I publish my company's website to our server/host?

    My boss asked me to create a website for company, now I have to publish it. Our company is located in Taiwan so we want to use local server. Now we've already had the domain name and rent the server, how can I publish the site to that server?

  • PI Seeburger AS2 Error: Object not found in lookup of as2..

    Hi ALL Can you please help us understand which object the following error refers to.... Delivering the message to the application using connection AS2_http://seeburger.com/xi failed, due to: com.sap.engine.interfaces.messaging.api.exception.Messaging

  • Lumia 925 cyan update problem

          Hi , i updated to windows 8.1 official version on my lumia 925  and the problem im facing is the battery. It wont get me through a day of normal usage. Pls dont tell me to close wifi, glance etc. becouse i followed every single battery saving t

  • 3d chart / graph drag numbers to standstill! Why so slow?

    Whenever i change a simple graph / chart from a left hand style to a fancy 3d right hand one - the system grinds to a halt. It takes about 20 seconds to register mouse clicks from one object to another. What gives?