Paste and drag makes my PC blocking/hourglass cursor

When I paste or drag a file, the receive folder and the sent folder will show the status "Not responding" in Task Manager > Applications and the cursor is just an hourglass which begins to turn...

Please help me...

Here, try this out and you "will see what I mean.

CTRL + ATL + DELETE and go to the processes tab and then add up all the memory usage. It's all the RAM space that is used. Now if you run your RAM, the computer starts by using the hard drive of cached data until it can be used on the RAM again which increases the CPU usage. You can then look at the CPU usage if you reach 100% on programs given task will block until all the data is transferred to hard drive you and transferred out to get your computer again.
Please rate me upward if you find my post helpful. Thank you!

Tags: Windows

Similar Questions

  • Impossible to copy/paste or drag/drop of files. Cannot copy and paste text, either.

    The operating system would prohibit me files copy/paste and drag and drop files text copy and paste all of a sudden. No error message; the right operating system does not respond to my 'stick' and 'slide' actions; 'paste' is grayed out in the menu. ('Copy' seems to be black if I remember correctly).

    Need to reboot back to normal. A reboot about once a day because of this problem frequently.

    P.S. The computer seems to be slower than usual these days. kernal_task and Google Chrome Helper often go beyond 100% of the CPU in the activity monitor. My MBP has a 480 GB SSD (with use of 180 GB).

    Try to run this program, copy and paste the result in a response. The program was created by Etresoft, a regular contributor.  Use please copy and paste the screenshots can be difficult to read. This will show what is running on your computer. No personal information is shown.

    Etrecheck - Information System

  • Apple ID is blocked and cannot make purchases

    I wanted to buy an app from the apple store, I entered my password and then I was required to answer some questions of security, but I forgot the answers so I tried different combinations, but none of them worked and then I got the message that my ID apple was blocked and cannot make purchases.

    After that, I signed my apple ID account page, I clicked on change in the Security section and got this message

    "Too many incorrect verification attempts.

    You did too many attempts to answer your security questions.

    Could you please help me?

    Follow the instructions here > If your identifier Apple is locked

  • Click the mouse and drag through the animation of Platinum

    Hi all

    First of all - thank you for taking the time to look through and maybe help me with this question.

    I'm just addressing flash actionscript 3.0 cc - so I apologize in advance for my not so much technical jargon.

    In the past, I used actionscript 1.0 to create an interactive html file containing the animation of a hub of a 3D model. Users can click the mouse and drag to the left or right to 'spin' the model around - however they do really is already through the timeline containing 360 pictures of it from 360 degrees. Similar ideas can be found here: Thyroidectomy Interactive

    Now boring I can't use the old code any more that I work in the latest Flash actionscript 3.0 cc

    So, how I do the same thing but in actionscript 3.0?

    So I worked this piece so far

    On my main stage, I have two layers - Layer actions and another layer with my video (movieclip_mc)

    In the layer actions so far:

    movieclip_mc.addEventListener(MouseEvent.MOUSE_DOWN, onMouseDown);
    movieclip_mc
    .addEventListener(MouseEvent.MOUSE_UP, onMouseUp);


    function onMouseDown(event:MouseEvent):void
    {
      movieclip_mc
    .addEventListener(MouseEvent.MOUSE_MOVE, onMouseMove);
      //I should put something in here about mouseX  - but no idea what

    }

    function onMouseUp(event:MouseEvent):void
    {
      movieclip_mc
    .removeEventListener(MouseEvent.MOUSE_MOVE, onMouseMove);
    }

    function onMouseMove(event:MouseEvent):void
    {  
    //I have to put something in about total frames - width of movieclip_mc etc but I'm not sure how   

    // this is what someone else did on another forum - but I'm not sure what it means:

         var delta:int = backgroundClip.mouseX - clickedMouseX;
      
    var wantedFrame:uint = (clickedFrame + delta * clip.totalFrames / backgroundClip.width) % clip.totalFrames;
      
    while (wantedFrame < 1)
      
    {  
      wantedFrame
    += clip.totalFrames;
      
    }
      clip
    .gotoAndStop(wantedFrame);
    }

    Also, I think I need something at the beginning as...:

    import flash.events.MouseEvent;
    import flash.display.MovieClip;
    import flash.display.Sprite;

    var clickedMouseX:int;
    var clickedFrame:uint;
    var backgroundClip:Sprite = getChildByName("background") as Sprite;
    var clip:MovieClip = getChildByName("animation") as MovieClip;
    clip
    .stop();
    clip
    .mouseEnabled = false;


    .. but I'm a little confused as to what she means


    So I understand the principle but no idea how to actually make it work - could someone help explain to me or help with the code?

    Thank you very much to all those who can offer help

    Catherine

    I missed replying to your answer yesterday, although I see it - I turned away by another chore for the rest of the day.

    The game of AS2 code that show you closest matches what you do with the AS3 version.  And if you include all its implications and change a little bit, it should work for you.

    Your AS3 onMouseDown function was missing the mouseX code as you mentioned... converting from the AS2 version it would be...

    function onMouseDown(event:MouseEvent):void
    {

    startX = clip.mouseX;

    startFrame = clip.currentFrame;
    movieclip_mc.addEventListener (MouseEvent.MOUSE_MOVE, onMouseMove);
    }

    The onMouseMove function is somewhat a different story because it stops looking like the AS2 version when you transfer the background object in the picture.  If you were to model after the version AS2, you might find that it will work.  The AS2 version can quite easily transformed into AS3 if you use just the following guide...

    "_xmouse' in AS2 becomes"mouseX' in AS3

    "_currentframe" is that as2 becomes "currentFrame" in AS3

    "_totalframes' in AS2 becomes"totalFrames"in AS3

  • Click and drag the question (Beginner)

    Hello, so I have a very simple program where I would like the user to be able to drag the object to the statue and place it on a pedestal. I started with the click and drag, but the code did not work when I used it. I tried to use the code snippets of live code, and that no longer works. After a trace in the click function, I found that he has not been called. They are called the same, and the mouse_up function was working properly, then I don't know what the problem is. Any help would be greatly appreciated ~

    Here is the code, the important bits are in bold. I don't get any other error ~.

    package

    {

    import flash.display. *;

    import flash.events. *;

    flash.ui import. *;

    try public class extends flash.display.MovieClip

    {

    var rightIsPressed:Boolean = false;

    public void retry()

    {

    Add listeners to drag

    trace ("it's working");

    make the invisible instructions

    controlText.alpha = 0;

    call event listeners

    nextBtn.addEventListener (MouseEvent.CLICK, seeManga);

    startBtn.addEventListener (MouseEvent.CLICK, beginManga);

    controlText.addEventListener (MouseEvent.MOUSE_OVER, showText);

    controlText.addEventListener (MouseEvent.MOUSE_OUT, hideText);

    walkinganimation.addEventListener (Event.ENTER_FRAME, fl_MoveInDirectionOfKey_3);

    stage.addEventListener (KeyboardEvent.KEY_DOWN, fl_SetKeyPressed_3);

    stage.addEventListener (KeyboardEvent.KEY_UP, fl_UnsetKeyPressed_3);

    statue.addEventListener (MouseEvent.MOUSE_DOWN, fl_ClickToDrag);

    statue.addEventListener (MouseEvent.MOUSE_UP, fl_ReleaseToDrop);

    }

    function fl_ClickToDrag(event:MouseEvent)

    {

    var object = (event.currentTarget);

    object.startDrag ();

    }

    function fl_ReleaseToDrop(event:MouseEvent)

    {

    var object = (event.currentTarget ;)

    object.stopDrag ();

    }

    start the functions

    function showText(event:MouseEvent)

    {

    trace ("mouse in");

    controlText.alpha = 1;

    }

    function hideText(event:MouseEvent)

    {

    trace ("mouse over");

    controlText.alpha = 0;

    }

    function beginManga(event:MouseEvent)

    {

    gotoAndStop (2);

    }

    function seeManga(event:MouseEvent)

    {

    trace ("2nd button");

    nextFrame();

    }

    function fl_MoveInDirectionOfKey_3(event:Event)

    {

    If (rightIsPressed)

    {

    trace ("keyboard pressed');

    walkinganimation.gotoAndStop (2);

    Foreground.x-= 3.5;

    Text1.x-= 2;

    Text2.x-= 2;

    Text3.x-= 2;

    Text4.x-= 2;

    Pedastal.x-= 3.0;

    statue.x = 3.0;

    }

    }

    function fl_SetKeyPressed_3(event:KeyboardEvent):void

    {

    switch (event.keyCode)

    {

    case Keyboard.RIGHT:

    {

    rightIsPressed = true;

    break;

    }

    }

    }

    function fl_UnsetKeyPressed_3(event:KeyboardEvent):void

    {

    switch (event.keyCode)

    {

    case Keyboard.RIGHT:

    {

    rightIsPressed = false;

    walkinganimation.gotoAndStop (1);

    break;

    }

    }

    }

    }

    }

    Initially, you said that you don't get other errors, but you get the error messages at all?

    How you implement this class file in your Flash file?

    You happen to have anything that could block access to the object of the statue?

    To animate the object of the statue in place such that it is not named in frames before the framework where your code is trying to work with her?

  • Can't click and drag to select anything in the Apple Pages

    I worked for hours on this unanswered anywhere on the internet.

    I can't click and drag to select text in the Apple Pages. I can click and drag to select text in other applications on the same computer, but in the Pages, I can't click and drag. It will show the text highlight for a fraction of a second, and then it will disappear. I can't copy or cut, because it will not select it. If I select the text with clicking and then holding down the SHIFT key and then clicking on at the end of the text, he chooses for me. But clicking and slippery will only highlight, then disappear. What's wrong???

    I have

    • computer restarts
    • restarted apple pages
    • trashed plists iWork (cannot find a specific pages plist)
    • Troubleshoot-made form another computer by comparing the preferences, settings, all on the same version of Pages
    • sought objects to make them 'selectable' (there is no objects, and this happens on all documents, including new pages documents I just create and try to highlight a Word)

    I'm on an iMac OSx 10.11.5 end 2013

    Apple Pages 5.6.2 (2573)

    It is a long-standing problem in OS X, are not specifically in any version of the Pages. Have you tried clicking & holding it down for a second or two in the text before you drag?

  • I must have Java work and it seems to be blocked despite trying "subject: config.

    My site main Chessbase News I watch games only if Java is on but the message says Java is not enabled. It worked yesterday without any problem.

    Do you mean Java (Java plugin) or JavaScript that is more widely used?

    To avoid confusion:

    Make sure that JavaScript is enabled and that it is not blocked.

    • Javascript.enabled preferences must be true on the topic: config page

    You can try the following steps in case of problems with web pages:

    You can reload webpages and ignore the cache to refresh potentially stale or corrupt.

    • Hold down the SHIFT key and click the Reload button
    • Press 'Ctrl + F5' or 'Ctrl + Shift + R' (Windows, Linux)
    • Press 'Command + shift + R' (Mac)

    Clear the cache and cookies only from Web sites that are causing problems.

    "Clear the Cache":

    • Firefox/tools > Options > advanced > network > content caching Web: 'clear now '.

    'Delete Cookies' sites causing problems:

    • Firefox/tools > Options > privacy > "Use the custom settings for history" > Cookies: "show the Cookies".

    Start Firefox in Safe Mode to check if one of the extensions (Firefox/tools > Modules > Extensions) or if hardware acceleration is the cause of the problem.

    • Put yourself in the DEFAULT theme: Firefox/tools > Modules > appearance
    • Do NOT click on the reset button on the startup window Mode safe
  • Click and drag in the Favorites or in text fields does not

    Click and drag does not work with favorites anywhere, or any text fields. He used to work a lot in v11, but not v12

    I tried to revert to my version of Firefox v11 backup but it keeps automatically updated to v12 despite disabling auto update in the preferences and even when it is offline - frustrating.

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the extensions or if hardware acceleration is the cause of the problem (switch to the DEFAULT theme: Firefox/tools > Modules > appearance/themes).

  • loads of YouTube but then when I click on a video it doesent play. It worked fine the other day and it does not work in the past and suddenly. Help, please!

    loads of YouTube but then when I click on a video it doesent play. It worked fine the other day and it does not work in the past and suddenly. Help, please!

    Clear the cache and cookies from sites that cause problems.

    "Clear the Cache":

    • Tools > Options > advanced > network > storage (Cache) offline: 'clear now '.

    'Delete Cookies' sites causing problems:

    • Tools > Options > privacy > Cookies: "show the Cookies".

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the extensions or if hardware acceleration is the cause of the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > appearance/themes).

  • Still access Youtube and Facebook when both are blocked?

    Why does show that my child is still access youtube and facebook when both are blocked?

    Hi all

    Family safety records as a child Web sites visits as part of the activity reports tracking feature.

    Even if the site is blocked, it will still show on the activity reports that the site is visited. This will tell you which site is the child trying to access. It is natural that this information reflected in reports if you do not have to worry if the website that you have blocked. Just make sure that you have blocked the site and the customer to parental control settings are updated.

    For more detailed information on accessible websites or visited by your child, we suggest that you go to the tab Web activity under activity tracking. In this tab, you will see the web address and the measures taken (blocked, permitted) by parental control.

    Thank you.

  • The task bar is not locked, but he won't move in right or left clicking and dragging.

    original title: taskbar is not locked, but he won't move in right or left clicking and dragging. Tried a different mouse, no results.

    The task bar will not move but not locked.

    Click to the right or left mouse drag, nothing happens.
    Used another mouse, still no movement.

    Hello

    Method 1:

    Try to make an auditor of the system files on your computer and search for errors on the disc: How to use the tool File Checker system to troubleshoot missing or corrupted system files on Windows Vista or Windows 7 http://support.microsoft.com/kb/929833

    Method 2:

    Step 1:

    Start the computer in safe mode and see if the problem occurs. Follow the steps from the link to start in safe mode: http://windows.microsoft.com/en-US/windows7/Start-your-computer-in-safe-mode

    Step 2:

    Start the computer and check to see if this helps: How to troubleshoot a problem by performing a clean Windows Vista or Windows 7 boot http://support.microsoft.com/kb/929135

    Note: when you are finished troubleshooting, follow step 7 to start the computer in normal startup.

    Method 3:

    Step 1:

    Try creating a new user account and check if it works very well: http://windows.microsoft.com/en-us/Windows7/Create-a-user-account

    Step 2:

    If it works fine, then try to move the files and folders from the old account to the new user account user: http://windows.microsoft.com/en-US/Windows7/Fix-a-corrupted-user-profile

  • Paste and Match Style of text IN Illustrator?

    Match Style.png

    IA CC 2015 (19.2.0)

    10.11.3 OSX

    I try to get the equivalent of the Mac 'Dough & Match Style' option in Illustrator.

    Make a banner of kids baseball team. They want the same banner EXACTLY as last year, just with updated names.

    In this example, 'Thomas Allen (TA)' is the OLD name, which is the size/color/shape/LOCATION I want to keep. "Aden Anderson (AA)" is the new name that should REPLACE Thomas Allen. I put AA Brush script just for Visual clarity. I would like to copy AA, then select/highlight the text of TA and paste AA in YOUR place, while AA takes the size, color, font and, especially, the LOCATION of TA.

    In native Mac applications, I simply copy AA, highlight the text of TA and SHIFT + OPT + CMD + V to paste and Match style... simple.

    I understand that I can use the Eyedropper to copy all the properties, then cut (CMD + X), AA, highlight the TA value and Paste (CMD + V) in your spot and delete the empty point text where the original AA was cutand not, is not a lot of work, but I have a ton of banners to do and a lot of names of children on all of them , so I want to just REPLACE the names while maintaining their position because they are already aligned with other names and design elements.

    Just out the pipette / remove steps would save a few minutes by banner and with the amount of banners, a few minutes would add up.

    Ok thank you. Thanks to each of you for your time. So I guess the answer to the original question is, no, paste and Match Style of IN Illustrator is just not possible at this time.

    Time to fill a feature request form...

    Thanks again

  • What happened to the feature to get around on the artboard by pressing the space bar and dragging with the mouse?

    What happened to the feature to get around on the artboard by pressing the space bar and dragging with the mouse?

    cwalker,

    If it does not, it may be time for the list:

    Sometimes, (some) things may fail or stop working for no apparent reason. When (other) possible reasons/remedies do not work, it is perhaps a kind corruption (temporary or permanent), or even preference settings which disturbs, which can be cured with something on the following list put in place in order to provide a catch-all solution for otherwise intractable cases. It starts with a few easy suggestions and safe) 1 and 2) for cases less serious and goes two ways 3) and 4) to reset the default preferences (easily but irreversibly and more laboriously but more completely and also reversible), then follows a list 5) various other possibilities, and it ends with a complete reinstallation 6). If no other suggestion doesn't work, or if no other suggestion appears, you can start on the list and decide how to go or who can apply.

    The following is a general list of things, try when

    (A) the question is not in a specific file,

    (B) you have a printer installed, connected and turned on if it's a physical printer (you can use Adobe PDF/Acrobat Distiller as a printer by default without the need to have a printer on, of course you will need to specify when you really need print on paper), and

    (C) It is not caused by problems with opening a file from external media (see below).

    You tried/made some of them already; 1 and 2) are easier for temporary strangenesses and 3) and 4) specifically may be corrupted/inconvenient preferences); ((5) is a list in itself and 6) is the last resort.

    If possible / there is, you must record a current work first, of course.

    (1) close Illy and open again.

    (2) restart the computer (you can make up at least 5 times);

    (3) close Illy and press Ctrl + Alt + Shift / Cmd + Option + shift during startup (easy, but irreversible);

    4) move the folder (follow the link with this name) with closed Illy (more tedious but also more thorough and reversible), for CS3 - CC you can find the file here:

    https://helpx.Adobe.com/Illustrator/KB/preference-file-location-Illustrator.html

    5 look through and try the relevant among the other options (click on the link with that name, item 7) is a list of the usual suspects among other applications which can disturb and confuse Illy, point 15) applies to the maybe CS5, CS6 and CC);

    Even worse, you can:

    6 (A) uninstall (check the box to delete the preferences, if any), B) run the cleanup tool (if you have CS3/CS4/CS5/CS6/CC) and C) reinstall. It is important to use this step three way: otherwise, things may persist.

    http://www.Adobe.com/support/contact/cscleanertool.html

  • The questions "By clicking and dragging" during the recording of training simulations

    I am trying to record a training simulation in which I want the user to be able to click (to select an object) and drag it out into the workspace of the application (all in a single movement). While the app saves me ok, performing the action when it comes to testing the finished result the user cannot imitate this gesture as the simulation just goes ahead and does it for them. This action and drag is fundamental for our software, the user must be able to do themselves. Sorry, I hope this makes sense - of help is welcome.

    I don't know if this will be useful for your purpose, but worth a try. Here are some tips: advice & glide - Captivate blog

  • Does anyone know why illustrator did several objects when I click and drag? No key keyboard shortcuts; only with the mouse.

    When I make a square for example, click and drag with the mouse, it makes duplicate objects until I release the mouse click. How can I disable this feature? Thank you.

    Danopoly,

    How can I disable this feature?

    By unstucking the Tilde (~) key.

Maybe you are looking for