Cut and Paste: Frame and Content Size Auto Changes

I'm working in InDesign CS2 and am having this reoccurring problem.
When I cut and paste frames with placed images (or pull images from a library) the frame and image will both expand to between 300%-3,000%. As you can imagine, it's very frustrating to have to create new frames and place new images every time. Any suggestions on how to fix or work around?

I'm still having problems with this, even using Paste and Match Style.
My table has three rows with gray background, then three rows of white; this pattern repeats for many rows. In the center row of each three rows is some text, while all other rows are blank. I want to move all this text down three rows, so that the text that was in the center row of the gray rows now is in the center row of the white rows, but I want the row colors to remain unchanged. Here's what I've tried.
If I "Cut" the selected cells, then the background colors are cut, so this is no good. Instead, I Copy the cells, then hit the Delete key. This leaves the background alone. Now I select a cell three rows down from the top. If I Paste, then the old backgrounds are pasted in, which is not the behavior I want. If I Paste and Match Style, then all the backgrounds are overwritten with white, except those single rows that originally contained both text, and had a gray background. The original cells that were gray but had no text are pasted in as white.
This latter behavior makes no sense to me. There seems to be a difference in how Paste and Match Style works, depending on whether the copied cells had text, or were blank.
Is there another way to do this rather common task—moving text around a table that has alternating-colored rows, without messing up those colors?

Similar Messages

  • Final Cut and After Effects "file is busy"

    Hello All-
    I am running Final Cut Pro 5.1.4 and After Effects 7.0.1 Pro (on OS 10.4.8) and I have a question. I have a series of After Effects animated DV Quicktime clips edited together in Final Cut, and when I make changes to the After Effects project files and try to rerender, I get an error:
    After Effects error: unable to overwrite - file is busy (delete) (-47) ( 3 :: 3 )
    It's like Final Cut is "holding onto" the files and not allowing After Effects to rerender them. If I close down Final Cut, I can rerender just fine, but this gets real annoying closing it down and restarting it every time I need to rerender a clip. The problem is, because of my workflow, I need to do this dozens of times a day with clients in the room and I'm spending a lot of time closing and restarting Final Cut over the course of a day... is there way to do this without closing down Final Cut?
    I assigned After Effects to be the "External Editor" for "Video Files", and used Final Cut's "Open In Editor" command. It sends the quicktime file to After Effects (not exactly what I want) and you would think that at this point Final Cut would have relenquished its access to the file so that I could rerender in After Effects, but nope, I still get the error. I have tried this with the User Preference setting "Always Reconnect Externally Modified Files" both on and off, no difference. I have also tried "Embed Project Link" in After Effects's quicktime output options, but this didn't help anything (I believe this only affects other Adobe apps).
    The weird part of this is that when I drop a Photoshop file onto the Final Cut timeline, I can do "Open in Editor", it throws it to Photoshop, I can alter it and save with no problem, and pop back into Final Cut and it will be updated. But no such luck with Quicktime files and After Effects.
    Let me know if there is a solution to this, or if I am stuck having to shut down Final Cut every single time I need to rerender one of the After Effects animation clips in the timeline.
    - Bob Wilson
    MacBook Pro 2.33ghz Core 2 Duo 15"   Mac OS X (10.4.8)   3 gigs ram, 160 gig HD

    What i have to suggest is more of a work around than it is a solution. i've had this problem off and on as well. What i do is add a number to the name of the newly rendered file, (ie. "monkey_throwspoo2.mov") import that file into FCP, open it in the viewer, and then copy it (apple + c). Provided it's the smae length as the previous file, you can right click on the previous file in the timeline and paste attributes, making sure to click on the content button for video (and audio if there is any). This should replace the old file in the timeline with the new one. Granted, you end up having a bunch of files that you're not using, but it's faster than restarting Final Cut (and looks more like it's something you're doing on purpose rather than a problem with the program to your clients). Hope this helps.
    Craig

  • How to create, place, format and paste the clipboard contents into a text frame

    I am new to scripting and need help. I have an existing Indesign document. I need to be able to create a text frame on my current page, the width of my margins with the top of the text frame at the top margin and 1" in height, then format it to be 1-column, and then paste the clipboard contents into it and tag the text with a particular paragraph style. I am using Indesign CS4 on a mac, if that makes any difference. Thanks for any help.

    May this will help you. It will create an anchored object with a text what you desired, with object style. You should create an object style before with the x and y co ordinates. You can choose either para style or character style.
    var the_document = app.documents.item(0);
    // Create a list of paragraph styles
    var list_of_paragraph_styles = the_document.paragraphStyles.everyItem().name;
    // Create a list of character styles
    var list_of_character_styles = the_document.characterStyles.everyItem().name;
    // Create a list of object styles
    var list_of_object_styles = the_document.objectStyles.everyItem().name;
    // Make dialog box for selecting the styles
    var the_dialog = app.dialogs.add({name:"Create anchored text frames"});
    with(the_dialog.dialogColumns.add()){
    with(dialogRows.add()){
    staticTexts.add({staticLabel:"Make the anchored frames from ..."});
    with(dialogRows.add()){
    staticTexts.add({staticLabel:"This character style:"});
    var find_cstyle = dropdowns.add({stringList:list_of_character_styles, selectedIndex:0});
    with(dialogRows.add()){
    staticTexts.add({staticLabel:"Or this paragraph style:"});
    var find_pstyle = dropdowns.add({stringList:list_of_paragraph_styles, selectedIndex:0});
    with(dialogRows.add()){
    staticTexts.add({staticLabel:"Leave one dropdown unchanged!"});
    dialogRows.add();
    with(dialogRows.add()){
    staticTexts.add({staticLabel:"Delete matches?"});
    var delete_refs = dropdowns.add({stringList:["Yes","No"], selectedIndex:0});
    dialogRows.add();
    with(dialogRows.add()){
    staticTexts.add({staticLabel:"Anchored text frame settings:"});
    with(dialogRows.add()){
    staticTexts.add({staticLabel:"Object style:"});
    var anchor_style = dropdowns.add({stringList:list_of_object_styles, selectedIndex:0});
    with(dialogRows.add()){
    staticTexts.add({staticLabel:"Frame width:"});
    var anchor_width = measurementEditboxes.add({editUnits:MeasurementUnits.MILLIMETERS, editValue:72});
    with(dialogRows.add()){
    staticTexts.add({staticLabel:"Frame height:"});
    var anchor_height = measurementEditboxes.add({editUnits:MeasurementUnits.MILLIMETERS, editValue:72});
    the_dialog.show();
    // Define the selected styles
    var real_find_cstyle = the_document.characterStyles.item(find_cstyle.selectedIndex);
    var real_find_pstyle = the_document.paragraphStyles.item(find_pstyle.selectedIndex);
    var real_anchor_style = the_document.objectStyles.item(anchor_style.selectedIndex);
    // Check if a style is selected
    if(find_cstyle.selectedIndex != 0 || find_pstyle.selectedIndex != 0) {
    // Define whether to search for character styles or paragraph styles
    app.findChangeGrepOptions.includeFootnotes = false;
    app.findChangeGrepOptions.includeHiddenLayers = false;
    app.findChangeGrepOptions.includeLockedLayersForFind = false;
    app.findChangeGrepOptions.includeLockedStoriesForFind = false;
    app.findChangeGrepOptions.includeMasterPages = false;
    if(find_cstyle.selectedIndex != 0) {
    app.findGrepPreferences = NothingEnum.nothing;
    app.findGrepPreferences.appliedCharacterStyle = real_find_cstyle;
    } else {
    app.findGrepPreferences = NothingEnum.nothing;
    app.findGrepPreferences.appliedParagraphStyle = real_find_pstyle;
    app.findGrepPreferences.findWhat = "^";
    // Search the document
    var found_items = the_document.findGrep();
    myCounter = found_items.length-1;
    do {
    // Select and copy the found text
    var current_item = found_items[myCounter];
    if(find_pstyle.selectedIndex != 0) {
    var found_text = current_item.paragraphs.firstItem();
    var insertion_character = (found_text.characters.lastItem().index) + 1;
    var check_insertion_character = insertion_character + 1;
    var alt_insertion_character = (found_text.characters.firstItem().index) - 1;
    var the_story = found_text.parentStory;
    app.selection = found_text;
    if(delete_refs.selectedIndex == 0) {
    app.cut();
    } else {
    app.copy();
    } else {
    var found_text = current_item;
    var insertion_character = (found_text.characters.lastItem().index) + 2;
    var check_insertion_character = insertion_character;
    var alt_insertion_character = (found_text.characters.firstItem().index) - 1;
    var the_story = found_text.parentStory;
    app.selection = found_text;
    if(delete_refs.selectedIndex == 0) {
    app.cut();
    } else {
    app.copy();
    // Make text frame from selection
    try {
    app.selection = the_story.insertionPoints[check_insertion_character];
    app.selection = the_story.insertionPoints[insertion_character];
    } catch(err) {
    app.selection = the_story.insertionPoints[alt_insertion_character];
    var the_anchored_frame = app.selection[0].textFrames.add({geometricBounds:["0","0",anchor_height.editContents,anch or_width.editContents],anchoredObjectSettings:{anchoredPosition: AnchorPosition.ANCHORED}});
    app.selection = the_anchored_frame.insertionPoints[0];
    app.paste();
    // Apply the object style now to "force apply" paragraph style set in the object style
    if(anchor_style.selectedIndex != 0) {
    the_anchored_frame.appliedObjectStyle = real_anchor_style;
    myCounter--;
    } while (myCounter >= 0);
    } else {
    alert("No styles selected!");

  • Urgent help needed - new to Macs, accidently cut and paste over top of photo folder and now no sign of folder or file, no auto back-up in place, how can I restore photos pls

    Urgent help needed - new to Macs, accidently cut and paste over top of photo folder and now no sign of folder or file, no auto back-up in place, how can I restore photos pls

    Thanks for prompt reply, yes we have tried that but have now closed down the browser we where the photos were.
    We haven't sent up time machine, do you know whether there is any roll-back function on a Mac?
    Thanks

  • Is there a file size limitation on the cut and paste function in OSX?

    I have noticed that sometime I am able to cut and paste files and sometimes I can only copy them.  Is there a limitation in the system and if so what is it?  I have also that sometimes I get the option to keep a duplicate file and sometimes it will only allow me to replace it.  Clarity anyone?

    You should not be able to "cut" a file at all, regardless of its size. Files can only be copied.
    Depending on where you copied it from and where you are trying to copy it to, you may be able to only copy.
    If the enclosing folder has an ACL that denies delete, then you wont be able to move it, only copy.

  • How do I cut and paste content of clipboard

    How do I cut and paste content of clipboard 

    What are you trying to do? You can't actually cut and paste within clipboard itself.

  • Cut and pasting clips to a new movie causes 15x file size increase!!

    I'm using 6.04 iMovie. I'm converting 8mm analog video via Canopus 300 into imovie. These movies were of an action sport and very few clips are over ten minutes when imported.
    I have 4 files(sourced from 4 tapes) from 22-28GB in imovie. I have edited these files, removing bad video, unwanted scenes and have added transitions and titles. The resulting files are each from 22-28Gb's in size.
    I then went to make a highlight video by copying and pasting clips from two of the movies. The resulting highlight movie exceeds 160Gb's I have two more movies to past clips from!
    I am aware of the "non-destructive" editing feature of Imovie. In the process of editing the individual movies and putting together the highlight movie I emptied trash frequently.
    My questions:
    1.) What is the best procedure to cut and paste clips from movies to make a highlight movie?
    2.) What can i do with my highlight video to get the size back down to around 15 Gb's? (I've only used about 25% of each of the two first tapes in the highlight video)
    Thanks

    Hello, Scott,
    iMovie moves clips to the trash that you have deleted.....if you are not using any part of that clip. If you are using any part of it, the parts you crop out, 'delete,' will be removed from your movie, but not put into trash and not removed from iMovie's project file. If you use 10 seconds of a 30 second clip, for example, but later decide that you really need to have more than the 10 seconds, say you need 15 seconds, all you have to do is go click on that 10 second clip in your movie and then go to 'Advanced' and select 'Revert clip to original' and iMovie will put back the entire clip for you to re-crop.
    It is not exactly the same for still photos. If you are using still photos with the Ken Burns effect, emptying the trash will remove the photo's 'clip' and you will not be able to redo the KB effect if you decide to change it. Leaving the trash alone will permit iMovie to retrieve the photo so that you can make those edits. Some of us never empty the trash in iMovie.
    When you export as Full quality Quick Time, you are getting just that.....Full Quality, no changes from the original. Your movie is not being compressed, it is shortened because you are saving only the clips that are actually used in the movie, not all the rest. Nothing is lost in quality and you can edit as usual, except for the ability to retrieve any clips that are not in the movie. You will not be able to use the 'Revert clip to original,' now because you have a new set of 'originals.'
    So, when you export to quicktime, be sure that you are completely finished with the cropping of your clips and that you will not need to add anything that you previously deleted. I export to quicktime and then open a new iMovie and import the new qt movie into that. Once you see that it plays properly, you can delete the first iMovie and just work with this one. However, it will come in as one large clip, with audio and video incorporated into one track. You will not be able to re-edit titles and effects. (Well, you CAN do it a bit, but it is tricky and you will lose some footage).
    I actually make a quicktime version of almost all of my iMovies. I find that this process eliminates any jerkiness or stuttering of my longer movies. I edit the original iMovie by cropping clips, adding photos, putting in titles and transitions. I then add audio last, usually first some short audio clips to go with some of the photos, and then I add background music last. I usually export to quicktime during the adding music part, whenever iMovie starts playing back in a stuttering way. The new quicktime movie is smooth and I can finish my music additions easily.
    Apparently, the latest version of quicktime is much better for the jerkiness problem, but I have been hesitant to upgrade since I am in the midst of doing about 4 iMovies.
    Good luck with your project!

  • Changes font and size when cutting and pasting

    Cutting and pasting in a document made with a single font and size results in the moved word changing font and size. Checked all preferences, etc. and can't figure it out. Thanks, Jim

    Hello
    Look at:
    http://discussions.apple.com/thread.jspa?messageID=607239
    Yvan KOENIG (from FRANCE mardi 26 septembre 2006 20:03:27)

  • How do I insert additional clips into my video timeline in Elements 13?  When clicking 'add media' it added the clips at end of video rather than in their appropriate position.  Could not 'cut and paste'.

    How do I insert additional clips into my video timeline in Elements 13?  When clicking 'add media' it added the clips at end of video rather than in their appropriate position.  Could not 'cut and paste'.

    bhsleadership
    I am in the process of preparing to test a sample from your brand and model camera in my Premiere Elements 8.0/8.0.1 on Windows 7 64 bit. I will have the results probably tomorrow morning.
    For now I just want to put you through the drill that I do for anyone who says he/she is using Premiere Elements 8.0/8.0.1.
    1. Are you working from the 8.0/8.0.1 Update of the program?
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4653
    2. Do you have the automatic Background Rendering and AutoAnalyzer features turned OFF.
    For Background Rendering option. See Edit Menu/Preferences/General.
    For AutoAnalyzer option. Click on Organizer in the row below the blue active Organize header in order to open the Elements Organizer. In the Elements Organizer workspace, go to Edit Menu/Preferences/AutoAnalyzer Options and disable all the AutoAnalzyer options. To return to the Premiere Elements workspace from the Elements Organizer workspace, in the Elements Organizer workspace, go to File Menu/Exit.
    Is your computer optimized in spite of the fact that  you have a high end laptop? I presumed so but always go to verify, no pile ups of preview files, conformed video and audio files et al.
    Looking at the properties of your source media, I see:
    video compression = MPEG1
    audio compression = MPEG-Layer1 (.mp2)
    Frame Size = 640 x 480 (4:3)
    Pixel Aspect Ratio = 1.0
    Frame Rate = 30 progressive frames per second
    With properties like those you are sure to get a red line over that content since there is no project preset with that description.
    But, your choice of the default NTSC DV Standard would have been mine also.
    I am heading to try to get a quick look at the behavior of the sample video here in my Premiere Elements 8.0/8.0.1.
    To be continued.
    ATR

  • While using marquee tool to cut and past section to new layer, outline stays transparent

    Hello,
    I am testing the trial version of Photoshop CS5.5 and I am experiencing a weird issue while using the marquee tool while selecting a portion of an image, cutting that section and pasting it to a new layer.
    First off I am running Windows 7 Ultimate 64 bit, 2.8Ghz Dual Core Processor, 4 Gigs Memory, 2 Gig Video card and current on updates with a fresh vanilla install of CS5.5.  Not filters or plugin installed.
    Step by step of issue is as follows,
    I take an image on layer 1 and while using the marquee tool select and area on that image.  I want to cut and Past In Place that selection on a new layer, layer 3. 
    This will allow me to insert another layer, layer 2, in between layer 1 and layer 3 and show what ever I place on layer 2 but still have a complete background if the image does not fill the entire transparent section.
    A good example is a wanted poster.  You have your picture frame with the Wanted letters and reward.  In the center you have a transparent square.  In the back you have a black background.  In between the frame and the background you place a face.  The face will not fill the entire sqaure so you will see some of the black back ground.
    Now the problem appears to be that the dotted line of the marquee selection makes so you can see your selection stays transparent or deletes the ares directly unter it when you cut and past to a new layer.  The transparent outline looks to be the same size of the dotted line when that selection is selected.  I have looked and searched for this promblem and resolution but can not see one. 
    The picture below is the result after I deselect the area.  You can see just above another section that I tried to cover up but did not get it all.  
    This is driving me nuts and I just can not figure out what is causing this behavior.  If I try and stretch the section, it skews the contents out of proportion.
    An suggestions or information would be greatly appreciated!
                                    Marquee Selection, Animated Lines                                                                Cut And Past In Place And Selection Deselected
    Thanks

    Instead of cut, one way is to duplicate the layer and add a layer mask from the selection. Alt click on the layer mask icon at the bottom of the layers panel to add a Layer Mask>Hide Selection.
    Then you can put a layer in the middle.
    The reason your seeing what's in your screenshot is the selection is anti-aliased,

  • The sheet I am working on has lost the ability for me to scroll to the first few columns. I can't see the columns but I can cut and paste them so I know they are still there. Has this happened to others

    The sheet I am working on has lost the ability for me to scroll to the first few columns. I can't see the columns A & B but if I cut and paste the table to a new sheet, the columns I am missing will travel to the new sheet.  I have charts and other stuff related the the original table so I need to figure out why I can only see from column C  forward.  I tried to "UNHIDE" the columns but the function doesn't seem to recognise that there are columns missing. Has this happened to others and how did you fix it?

    I've seen it happen before, or at least it sounds something like what I've seen before. The table somehow gets into the margins of the page and the app doesn't know how to deal with it. Go into Print View and try moving the table away from the left side ofthe page. You might have to change content size or resize the table to get it to correct (then put you can put them back the way you like).

  • My Copy/Cut and Paste Solution (if possible)

    I sent this to Apple:
    I know there's been a lot of people saying they need/want a cut/copy & paste feature.
    I was thinking about this tonight and realized that with a touch screen that needs to control a lot, incorporating "clicking and dragging" becomes somewhat a challenge. I don't know if it's possible to do with a software update (through iTunes) but here two ideas...
    First, in either idea, a "copy arrow" would need to be included in the touch keyboard. It would look like a cursor key arrow pointing to the right.
    Idea #1 - Cursor arrow is a "sticky" key, so you hit it once and it stays selected until you hit it again.
    Using a finger or the cursor magnifying glass, the user could place their cursor at the beginning of the text they want to highlight. They then click on the sticky arrow key. Using a finger or the cursor magnifying glass they place the cursor at the end of the text they want to highlight. The text now shows highlighted. Click the sticky arrow key again to copy the text and clear the highlight.
    Idea #2 - Cursor arrow highlights as it's selected.
    Using a finger or the cursor magnifying glass, the user places their cursor at the beginning of the text they want to highlight/copy. They then click on the copy arrow key (or hold it down) until they reach the end of the text they wish to copy. As they highlight, content highlighted is copied to the clipboard automatically. Clicking anywhere on the screen clears the highlight (and retains what is highlighted on the clipboard).
    Being Apple, you may have a more elegant solution than me... but I thought I'd share it none-the-less.
    What do you think?

    I was going to cut and paste part of another post about this but...
    I think that th simplest initial implementation of copy/cut/paste is to have a clipboard icon that turns on a selection function with its own pallete of keys. (cut, copy, paste, select all, select none, delete selection, and my favorite desperately needed button... copy to notes)
    Once in clipboard mode, single tap selects a ord, double tap selects a sentence, triple tap selects the paragragh, and a select all button selects the entire text within the frame.
    Perhaps there should also be a button that looks like your cursor with the arrow. however, it would have to be set to highlight from one complete word to another and not from the exact point of touch.
    Man do I wish that I could copy and paste this into my own post from earlier.

  • IDCS6(MAC) 10.9.4 - a script that will make an anchored object and paste in clipboard contents

    I'm trying to create a script that will create an anchored object that will paste in clipboard contents.
    So far I have:
    var frameRef = app.selection[0];
        var parentObj = frameRef.insertionPoints.item(0);
        var anchorFrame = parentObj.rectangles.add();
    And this works fine, creating an inline object, that can further be defined (with anchor point settings etc).
    However, it is when I go to use app.paste() or app.pasteInto() that all hell breaks loose.
    The line of code I added was:
    anchorFrame.content = app.pasteInto();
    and the error I get is:
    What am I doing incorrectly?
    Colin

    @Colin – For the paste command you like to use, you have to:
    1. First select an object, in your case the added rectangle object
    2. Then use the pasteInto() method from the app object
    3. There is no content property for a rectangle object
    Watch out what is selected after you added the rectangle.
    What you have is a selection of the text frame when you start your code in line one.
    Adding a rectangle will not change that selection.
    The following code will do the job.
    However, if you use pasteInto() the pasted objects could be only partly visible inside the frame.
    Depends on the size and position of the added rectangle relative to the original copied page items.
    Make sure that you give the rectangle a proper size after or while you are adding it:
    var frameRef = app.selection[0];
    var parentObj = frameRef.insertionPoints.item(0);
    //Will add a rectangle sized 40 x 40 mm
    var anchorFrame = parentObj.rectangles.add({geometricBounds:[0,0,"40mm","40mm"]});
    app.select(null); //Optional
    app.select(anchorFrame);
    app.pasteInto();
    Uwe

  • Smartmailbox - cut and paste

    I can't cut and paste info from my smart mailbox into a word document. I want to delete the mailbox, but save the content.  Any ideas?

    I can paste a .jpg object into a Pages document, but can't cut and paste text blocks.   When I select and execute "Cut" (either via keyboard or menu), the "Paste" function does nothing (although it might be inserting a single space character).   This failure to "Paste" also exists in the TextEdit app.
    In Numbers the problem exists both for text blocks and for cells.
    This has happened in the past, but seemed to be corrected with a Restart of the OS.   Not this time.

  • I want to cut and paste iCal entries on iPad.  Have seen a number of questions raised but no definitive answer - is it possible or not?  (I use Bento but that doesn't sync with ICal now so can use that solution)

    I want to cut and paste iCal entries on iPad.  Have seen a number of questions raised but no definitive answer - is it possible or not? 
    (I use Bento but that doesn't sync with ICal now so can use that solution)
    Hope to hear helpful news soon....
    C

    No, the camera connection kit only supports the copying of photos and videos to the Photos app, it doesn't support copying content off the iPad. For your second camera instead of the SD reader part of the kit, does the iPad to camera cable not work with it for direct transfer to the iPad ?
    For Lightroom and Nikon software again no - you can only install apps that are available in the iTunes app store on your computer and the App Store app on the iPad, 'normal' PC and Mac (OS X) software are not compatible with the iPad (iOS). There are some apps that perform fairly basic editing functions that are available in the store, but nothing as sophisticated as, for example, Lightroom.

Maybe you are looking for

  • How to use a eksternal hard drive on Mac and Pc?

    i have a eksternal hard drive i used with time machine, and now i can not use it on my other windows based computer. do anyone have any solution for me? i would like to be able to uke it on my mac and PC

  • Implementing Webservices Doubt

    Hi, i have few queries in my mind we have to integrate Third party webservices with our SAP R/3 1) Assume that in IDOC--- SOAP scenario( External Web Service)  who has to generate the WSDL file???? 2) In SOAP - IDOC scenario( External web service) wh

  • Application Server Problem

    Dear All, I installed Oracle AS forms and reports services on a test machine. I want to configure tnsnames.ora of the AS to connect to a database in another server. could you plz give me an example of this configuration Os info: Windows 2000 Server O

  • Multiple reads from DataInputStream through Socket

    Ok I got a small prob, and well, here it is: I have a server and a client. The client needs to send a file to the server. I'm using Data(Input/Output)Stream. I use writeLong() and readLong(), to send the size and after that read the size of the file.

  • MAcBook Pro Bluetooth dead

    I cannot connect my wireless Apple mouse or keyboards anymore. They show being connected for 2 or 3 seconds, then go off as being unconnected. I've tried deleting them and reconfigurating them as new Bluetooth devices, but to no avail. Suggestions pl