How to "copy" in bridge and "Paste" in win explorer ?

really , how can i do this ?
becasue when i copy a file in bridge and then in the win explorer the Paste option is grayed.
any helps ?

You can't copy what is essentially a preview in Bridge to the Windows clipboard.
Right-click > Reveal in Explorer and do it from there.

Similar Messages

  • How to copy header items and paste it into a new channel

    Hi everybody,
    i'm trying to customize my tasks with DIAdem and got some big problem. I have a channel table in VIEW with 295 columns and have added a new column.In this column i want to write all the Header Items i've got.
    I've created a new channel with:
    Call ChnAlloc("Betriebsdaten_akt_Monat", 295, 1,DataTypeString,"Text")
    Call Zusfassg.Columns.Add(296)
    Then I use this command to read the header items:
    Set MyHeaders = View.ActiveSheet.ActiveArea.DisplayObj.HeaderItems
    But how could i now paste all these items into the new column i've created?
    Thanks in advance for your help.
    Kind regards
    Patrick
    Patrick Etoumann

    Hello Patrick,
    to be honest, I did not completely understand what you are trying to do - so if the answer does not fit 100%, please give me some more information about your task.
    Within the DIAdem Help (topic: Object HeaderItem) you can find this short script:
    Set oMyHeaders = View.ActiveSheet.ActiveArea.DisplayObj.HeaderItems
      For Each oMyHeaderItem in oMyHeaders
      Call MsgBoxDisp(oMyHeaderItem.Name)
    Next
    It calls a messagebox for each configured headeritem. If you want to write the titles of these items into a new channel you can use the ChT() variable. Specify the row and a textchannel as parameters of this function.
    But because you created a textchannels with a length that equals the numlber of displayed channels i think you rather want to copy the content of a specific header property to the rows of that column. In this case it might be most convenient to program a for loop and use the loop variable to reference the individual channels. With the command ChnPropGet(), the channel number and the property name you can read the value of a property.  Even here, use ChT() to store the data into the new channel.
    Ingo Schumacher
    Systems Engineer Sound&VibrationNational Instruments Germany

  • How to copy a document and paste in pdf form

    I have an email that I copied. I need to paste to a document in PDF form. Does any one know how I am to do this?

    Hi shortcake61,
    Do you want to create a PDF from the email? Or add the content of the email to an existing PDF file? In either case, you can use Acrobat to do the job. If you don't have Acrobat, please feel free to give it a try. You can download a 30-day trial form http://www.adobe.com/products/acrobat.html.
    Best,
    Sara

  • I have a pdf file which contains text if i copy all text and paste them into notpad and save file as .txt Is it change the ascii value of text ?

    I have a pdf file which contains text if i copy all text and paste them into notpad and save file as .txt Is it change the ascii value of text ?

    How to know character's encoding is ASCII?

  • I want to create an external video widget with iAd. I followed the steps and copied the Url and paste it in the Video pop-up menu in the Properties section of the inspector. When i select 'preview' the video doesn't play and the Url that i pasted is gone.

    i want to create an external video widget with iAd to use in an iBook. I followed the steps and copied the Url and paste it in the Video pop-up menu in the Properties section of the inspector. When i select 'preview' the video doesn't play and the Url that i pasted is gone.
    hope someone can help!

    May have something to do with whether or not the URL can be reached while building your widget.  I've got a video on the web. When I enter the URL into the field for the video object and click to another field,  the URL is replaced with some text indicating that it is accessing the video then updates itself to displaying just the name of the video file.
    It shows just fine in preview and I can see the full path to the video when I export the widget so it should work for you. 
    Is the video accessible from your Mac while you're laying out your widget?
    -Mark

  • Why when I copy a cell and paste into another it pastes into the middle of three cells?

    Why when I copy a cell and paste into another it pastes into the middle of three cells? I was very fond of using numbers as it was straightforward and much better than Excel. But I made the mistake of installing Mavericks and Numbers 3.0. Now it is worse than Word at doing what it thinks it wants to do rather than what you want to do. I can no longer copy a cell and paste it into another. For some reason on pasting, instead of pasting into just one other cell it pastes into the middle of three cells - what the ****?

    Thanks Badunit for your quick response
    I have found the answer - it is a incompatabilty between CopyPaste Pro and Numbers: -
    Thanks dbg1596 - solved my problem with which I wasted a good couple of hours getting more and more frustrated with numbers 3.0
    I had the same problem - copy a cell - paste into another cell and it created three vertical cells with the pasted data in the middle
    Definitely a problem between CopyPaste Pro - one of the most useful aps on my Mac for the last many years
    Once I quit CopyPaste Pro - no problem with pasting in Numbers 3.0
    But I use CopyPaste Pro all the time
    Have the folks responded to your query?
    But I use CopyPaste Pro all the time - hope that it can be sorted sooner rather than later

  • Problems copying a row and pasting it in the following row

    Hi all,
    In a Numbers table I have 400 rows with data separated each one by a blank row
    row 2 has data
    row 3 is blank
    row 4 has data
    row 5 is blank ... and so on.
    I have prepared a small script to copy row 2 into row 3, row 4 into row 5,... as follows:
    set dName to "Conta"
    set sName to "Movis"
    set tName to "Pruebas"
    set row_ini to 2
    tell application "Numbers" to tell document dName to tell sheet sName to tell table tName
    set selection range to row row_ini
    repeat
    if value of first cell of selection range = 0 then
    exit repeat
    else
    tell application "System Events"
    keystroke "c" using {command down}
    keystroke return
    keystroke "v" using {command down}
    end tell
    tell first cell of the selection range to set rowNum to address of its row
    set selection range to row (rowNum + 1)
    end if
    end repeat
    end tell
    The idea is:
    1 select the initial row (in this case row 2)
    2 check if the value of first cell of the row is cero, then exit the repeat loop
    3 else
    4 copy the entire row, move down a row and paste.
    5 move to the next row
    6 repeat
    The first time I run the script it worked until the row 124 and stopped. I tried again changing the inicial row and it worked only for 7 rows. The third time it erased all the cells with data. I've tried closing both the table and the script but the problems persists: in this case it stops after replacing 5 rows.
    Where am I wrong?
    Thank you in advance
    Ratz

    KOENIG Yvan wrote:
    There is not such a book.
    There is just on short chapter dedicated to iWork in :
    Hanaan Rosenthal & Hamish Sanderson, Learn AppleScript: The Comprehensive
    Guide to Scripting and Automation on Mac OS X, Third Edition, Apress (2010);
    ISBN 978-1-4302-2361-0
    You may find useful infos in my idisk :
    <http://public.me.com/koenigyvan>
    Scan the contents of the folder :
    For_iWork:iWork '09:for_Numbers09.
    I guess the problem is for using the tell application block without telling the process Numbers.
    No, I had to change a lot of things.
    the name of the document was wrong (at least on my machine on which I always use the name extension.
    set selection range … was wrong.
    Yvan KOENIG (VALLAURIS, France) dimanche 20 février 2011 23:02:35
    Thank you.
    Visiting your idisk I realise how much work I must do to become a decent scripter!
    The book you mention looks interesting. I'm going to include it in my bookcase (and read it, of course).
    Ratz

  • I tried copying a photo and pasting it in another event/group within iPhoto but the paste feature doesn't work.  This wasn't an issue with both Leopard and Snow Leopard.  Do you have any solutions or tips?

    I bought a new MacBook Pro with OsX Lion as operating system.  I use iPhoto a lot and when I tried copying a photo then pasting it to another event/group, the 'paste' feature doesn't work.  This wasn't the case with Leopard and Snow Leopard where the 'paste' feature worked.  What I did was to paste the photo first to the desktop before transferring it to the new event/group.  I brought my Mac to the Apple store where I bought it and the technicians were themselves surprised that the 'paste' feature didn't work.  Chalked it up to glitches in the Lion os.  So how do we fix this?  I just find it absurd that a feature that used to work in Snow Leopard has been disabled in Lion, and the user still has to undergo an additional step to make it work, when new technology is supposed to make things easier for users. 
    Also, hasn't anyone noticed that it takes longer for the computer to boot upon opening? 

    Instead of copy and paste drag the photo to the new event. Or flag it and use the add flagged photos to selected event command
    LN

  • Envy 17-j020us, cannot cut/copy and paste within file explorer

    I can cut/copy and paste url's and text from word, etc, but I am unable to cut/copy and paste files within file explorer windows. I have tried running malwarebytes and virus programs. HP support has tried remote access to find the problem unsuccessfully. Is there any other option besides doing a factory reset or restore point? Thanks in advance for any help.
    This question was solved.
    View Solution.

    Hi jdavis33811,
    Have you tried all three methods of cutting and pasting? Using the keyboard shortcuts CRTL-X and CTRL-V, right click the file and selecting cut and then using the file explorer ribbon / File menu.
    If you have tried all three the next thing to try is a Clean Boot to see if something is in the background blocking the command. A clean boot loads Windows with minimal software and drivers. This Microsoft Support link will show you how to do it.
    Once you have performed the clean boot try all three methods of cutting and pasting. If it works the next step is going back to msconfig (see Microsoft link above) and enable half of the services you shutoff to do the Clean Boot. Then try cutting and pasting again. Keep enabling half of the remaining services until you can't cut and paste then disable half of the services you just enabled. Do this until you pinpoint what service caused the issue.
    If after all that you are still having a problem then the next step would backing up your files onto an external hard drive or USB flash drive and then doing a full System Recovery.
    Please click “Accept as Solution ” if you feel my post solved your issue.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Thank you,
    BHK6
    I work on behalf of HP

  • Copy and pasting - maintaining content integrity when copy from pdf and pasting to word doc

    My firm is currently using an older version of Acrobat to transfer portions of medical report to a word document format. We are only taking select excerpts and not exporting the whole document. As of now, i copy and paste the needed piece to word but the integrity of the transfer is terrible. Many misspelled words, wrong spacing, characters replacing letter, etc...We are curious if this issue could be resolved by upgrading to the latest version of Acrobat. Thanks for your help!

    If you could give the version of Acrobat and post some before and after screen shots it would help us understand the issue (yes, avoid any personal info). Was the original PDF created as a scan? If so, is it clearscan or searchable? There are many issues that are hard to comment on because we don't know how the PDF was produced or what has been done to it in the meantime. It may be that an upgrade would help, but not necessarily. If you have a spare machine available, you could always download and install the trial to see if it would resolve the issue -- I would not install the trial over your current version.

  • I can't seem to copy or cut and paste with firefox anymore

    I can highlight but I can't cut or paste words or phrases on firefox anymore. I can on explorer but not firefox
    == This happened ==
    Every time Firefox opened
    == its been a while not sure what setting got changed

    ~~red:''<u>'''Please list your Extensions & Themes when posting a question'''</u>''~~
    When posting future questions, please post the information in the "Troubleshooting Information" section. See: [[Using the Troubleshooting Information page]]
    ~~red:''<u>'''Can not copy/cut and paste'''</u>''~~
    The two most commonly reported causes of not being able to right-click, Copy and Paste are AVG Safe Search and Yahoo Toolbar. ~~red:'''Disable them and test'''~~ ( Tools > Add-ons > Extensions , locate and click on each of the add-ons, click Disable, when both are disabled, click Restart Firefox in the Extensions window.)
    If the right-click context menu allows copy/cut and paste with the two add-ons disabled, then one or both of them is causing the issue. Re-enable the extensions one-at-a-time, restart Firefox and test. When the problem returns, you will know which is the culprit.
    See:
    http://support.mozilla.com/en-US/kb/Customizing+Firefox+with+add-ons
    http://support.mozilla.com/en-US/kb/Troubleshooting+extensions+and+themes
    http://support.mozilla.com/en-US/kb/Uninstalling+add-ons
    http://support.mozilla.com/en-US/kb/Troubleshooting+plugins
    ~~red:<u>'''''Other Issues'''''~~: to correct security/stability issues</u>
    <u>'''Update Java'''</u>: your ver. 1.6.0.17; current ver. 1.6.0.20 (<u>important security update 04-15-2010</u>)
    ''(Windows users: Do the manual update; very easy.)''
    See: '''[http://support.mozilla.com/en-US/kb/Using+the+Java+plugin+with+Firefox#Updates Updating Java]'''
    Do the update with Firefox closed.

  • I just received Adobe Elements 9 and want to how to open find "Bridge" and open it.

    I just received Adobe Elements 9 and want to know how to find "Bridge" and open it.  How do I go about that?

    I don't think PS Elements ever came with Bridge.  And Elements 9 is way old.  Believe current version is 11.

  • Copy text frames and paste in place from source file to opened docs

    Hello All,
    I have one source indd file which is having 10 small text frames (40pt square) in both pages (Facing pages, Left and Right) on a master page. In that master page there is no frame except that 10 small text frames and the text frame contains the paragraph style called "Cat_Cont".
    I have opened some files and I want to copy that 10 small text frames from the source file and paste in place into the opened InDesign Docs master pages. I hope while copying that text frames, paragraph style also would copy. Could anyone help for this, please?
    If anything not clear plz let me know.
    Thanks in Advance,
    Thiru

    Use TextFrame.duplicate()

  • N8 Photo Editing - how to use the cut and paste?

    Hello,
    I am trying to edit some photos - there is a an option to use an ellipse or magic wand.  I thought that was to cut and paste from the photos.
    All I can do is select and area - but how do I cut it. 
    I tried save, but it saves the whole image...
    Or am I just doing this wrong...
    Thanks,
    VeePee
    Nokia 3395
    Nokia 6600
    Nokia N95 8GB
    Nokia N8 (Anna)
    Nokia Lumia 930

    I was hoping to use the ellipse or magic want to cut and paste items in a certain shape to paste on other photos.
    I could do this on my N95-4.
    So there is no way to photo edit with cut and paste?
    Any idea what the ellipse and magic wand function do, and how do they work?
    Thanks,
    VeePee
    Nokia 3395
    Nokia 6600
    Nokia N95 8GB
    Nokia N8 (Anna)
    Nokia Lumia 930

  • Copy from clipboard and paste in Web Dynpro table

    Hi
    I have a client requirement where the client wants to copy the table from some already existing application and paste the data  directly in web dynpro java table.  It is similiar to copy the data from clipboard and paste it directly in web dynpro table.
    I would like to know is it feasible. If yes, please provide some links or guide me on achieving the same.
    Thanks
    Harsimran

    Hi
    I think one way you can do it,
      1 . try to export the table dato to excel sheet.(copy and paste to excel)
       2. Importing the excel data to WD table.
      for more details about reading excel data, there is many blog on sdn just check it.
    Hope will help you
    Thanks

Maybe you are looking for

  • INS-20802 Oracle net configuration assistant failed on windows server 2003 R2

    Hi all,             I have windows server 2003 r2 installed on VM and tried installing oracle database 11g r2. But got Oracle net configuration assistant failed. Below is the log INFO: This variable JRE_HOME is not added to the global context map INF

  • Trying to understand Bluetooth with printers

    I have a DV7T laptop, Bluetooth enabled.  I have older HP printers, Photosmart 8750 and Photosmart 8450.  I bought 2 non-HP bluetooth adaptors.  The 8450 works fine, I can find that bluetooth device when I plug the adaptor into the USB on the 8450. 

  • SAP PI 7.1 Enhancement 1 - New Search features

    Hello, Can anyone confirm if the new feature of PI 7.1 EhP1 for searching messages based on payload content is only availabe for asynchronous messages? Check the following document on page 12: https://ecohub.sdn.sap.com/irj/scn/go/portal/prtroot/docs

  • A problem for writing sbin/fsck -fy

    I´m trying to do "sbin/fsck" When the black screen with white words appears I write "sbin" but when I try to write " /" this signal doesn´t appears, instead of it "&" Please, could anybody help me?

  • HT1551 Hi. The TV shows icon does not appear on my home screen. Any ideas how I can locate it?

    Icons are missing from my home screen. The TV show icon was missing today. I updated with the latest software - now the TV and movie icons are both missing. Can someone point this newbie in the right direction? Many thanks!