Adding parts of the Current [PS] File to a CS Live Review

I have a large psd, say 4000 x 8000 pixels in size; I can only up;load a snapshot of the entire file when I want to upload a portion of the file as a new part of the current review; any suggestions?
tia,
--Dan

Flatten the file, crop the area you want and then upload? Then undo the cropping and flattening to revert to your layered version.

Similar Messages

  • How to not append '.PART' to the file name of the currently downloading file, and just download the file with its normal filename

    In Windows, when Firefox (I'm currently using 7.0) downloads a file, it appends ''.PART'' to the file name of the currently downloading file and just renames it to its original file name after it finishes downloading.
    I sometimes like to watch a currently downloading video file, so it will be better if Firefox just downloads the file to its actual filename (like what Opera does), so I can easily double click the incompletely downloaded file and watch it with the video player assigned to that file extension, rather than the awkward ''Right click -> Open With -> Choose Default Program'' route with .part files.
    Does anyone know how to set Firefox to do this?

    It is possible that your anti-virus software is corrupting the downloaded files or otherwise interfering with downloading files by Firefox and prevents Firefox from renaming the .part file.
    Try to disable the real-time (live) scanning of files in your anti-virus software temporarily to see if that makes downloading work.
    See "Disable virus scanning in Firefox preferences - Windows"
    * http://kb.mozillazine.org/Unable_to_save_or_download_files

  • When I download files, firefox is adding " .part " to the file name and the file won't open, but if i back the .part out, it opens fine.

    Firefox seems to be adding " .part " to the file names of files I downoad. Here's an example:
    YuT9iNv8.pdf.part
    I cannot open this file because it can't find an application.
    If I back out the .part, I get a box asking if I want to change the extension to .pdf I check yes, and everything works fine. It doesn't happen with other browsers (Safai).

    I get the error message saying the file could not be downloaded due because there is no enough disk space.
    How large is your HD and how much space do you have left?

  • I bought a new laptop (Macbook) but the current installation files I have of Photoshop Elements 12 is for Windows, how can I change this? Or do I have to purchase an all new photoshopset?

    Can anyone help me with this question?
    I bought a new laptop (Macbook) but the current installation files I have of Photoshop Elements 12 is for Windows, how can I change this? Or do I have to purchase an all new photoshopset? I hope not because that would be really expensive.

    Really? That's extremely unusual. Have you looked at all the discs? In any case you can download the mac version here:
    Download Photoshop Elements products | 12, 11, 10

  • How to get the current executing file/itself absolute directory?

    hellooo,
              gentlemen/lady, how to get the current executing file/itself absolute directory?
              thanks
              

              Hello,
              you can get the real path information of the JSP through the servlet context:
              http://java.sun.com/products/servlet/2.2/javadoc/index.html
              javax.servlet
              Interface ServletContext
              Method getRealPath
              Christian Plenagl
              Developer Relations Engineer
              BEA Support
              [email protected] (alex mok) wrote:
              >hellooo,
              >
              >gentlemen/lady, how to get the current executing file/itself absolute
              >directory?
              >
              >thanks
              

  • File system task - Move file issue, skip the current log file thats open by another process - IIS logs

    Hi,
    I have created a package to move IIS log files from their source directory to another directory called processing. However, when the package tries to move the current log file it errors because the file is in use by another process (by IIS as its still writing
    to it). I would like the package to just ignore the "in-use" file and process the rest and show the package completing successfully. The file in use will be rolled by IIS at midnight and the file will be picked up by the next package run.
    However, when the file is rolled and becomes free a new log file is created which will be marked as "in-use"...... which should be ignored at the next run.
    Is there some way that I can tell the file system task to ignore in use files or add an event handler to do the same sort of thing?
    Any assistance is appreciated

    Hi Arthur,
    Thank you for your reply.
    I have resolved the issue with the following example:
    http://www.timmitchell.net/post/2010/08/23/ssis-conditional-file-processing-in-a-foreach-loop/
    What I realised was that I needed to just ignore the current log file which gets created daily, so using the above example (and changing the last written date to created date) I am able to ignore/skip the log thats in use.
    Adam

  • XPath+XSLT: Re-adding parts of the document after XPath eval. (fragment)

    Hello all,
    Sorry, I know that this is not strictly a Java related problem, but who knows if there are standard API functions for that...
    Imagine this simple XML document:
    <document>
       <meta>
         [some deeper structs]
       </meta>
       <content>
          <chapter id="1">
          </chapter>
          <chapter id="2">
          </chapter>
          <chapter id="3">
          </chapter>
       </content>
    </document>Normally, I transform the entire document via XSLT e.g. to XHTML. But if I want just to extract e.g. the first chapter using XPath evaluation, I do not have other "static" parts of the document, e.g. the meta part or the document root.
    Currently, I am adding this very complicated by having the XPath evaluation as a string and by prepending and appending the "static" part in order to have a fully working XSL transformation (e.g. "<document><meta>[...]</meta><content>" + xpathEval + "</content></document>")...
    Are there any best practises? I think using XPath is very nice for this kind but maybe the wrong way and I should filter another way? Hope there is an elegant way whith sticking to XPath though...
    Thanks and regards,
    Timo

    Rehi DrClap,
    Thanks for your reply.
    Yes, that is pretty fine, but the problem is that I have some "static" parts like the "meta" tree are outside the "chapter n" tree.
    And just selecting for my chapter will result in just that tree but not the entire document pattern including the document root and the meta part.
    XSLT being more SAX'ish, I think I have to rebuild my document using DOM in a way that I do some consecutive XPath selections like for meta and chapter, create the root node, append them and then XSL transform that new document. However, that are much steps and not good for larger documents.
    Thx and regards,
    Timo

  • Rename the current active file?

    I'm wanting a script to be able to rename open Photoshop files, if possible.
    I cobbled this together from an existing script:
    tell application "Adobe Photoshop CS5"
      activate
              set old_name to name of current document
              set dialog_result to display dialog ¬
                        "Rename active document:" default answer (old_name) ¬
                        buttons {"Cancel", "Rename"} default button 2 ¬
      with icon note
              if button returned of dialog_result = "Rename" then
                        set new_name to text returned of dialog_result
                        set d to properties of current document
                        if path of d is equal to missing value then
                                  set name of current document to new_name
                        else
                                  tell me to set the_file to POSIX file (d's path as text) as alias
                                  tell application "Finder"
                                            set name of the_file to new_name
                                  end tell
                        end if
              end if
    end tell
    If I run it it shows the dialogue window, but when I enter the new name and hit Return it throws out lots of errors.
    Is something like this possible?

    As Chris wrote Photoshop is not a File Editor. Photoshop edits Photoshop Documents the current Document may or may not have a file on the system created fron the active document.  If if does have a file assocatation I sure with scripting you can perform file operations on the file  like delete, rename, move etc.  However the will not change the active document name. Basicly document name is read only.... well sort of read only for if the current document does not have a file assocation and you save it into you file system The docoument becomes assocated with a file and Photoshop will change the active document name.  Aslo when you open a RAW file through ACR the inage image window or tab may show something like imagename.cr2 there is not actually a file associated with the document for Photoshop can not save a Camera RAW file so if you save it as PSD or TiFF the window or tab will now show the file assocation imagename.psd|tif  not .cr2. The document name does not always change with a save for if you save the PSD as a jpeg after the jpeg images is saved the document reverts back to its layered and color depth state  and is still imagename.psd.  There is no active document associated with that saved jpeg file. You can open it and have two document open that look the same one being layered a and perhaps 16bit and the other flat and 8bit.

  • Display the Current Running Files in the Label Control

    I have a label control in Windows Form Application, and i have the application to display the building and progress of the projects in the label control using C# code. Along with the update of the label, the progress bar should also show progress simultaneously,
    according to the building of the project. How should i do this ??
    Thanks.
    Tanmay

    Hello All;
    I want to know how can i display the current running project in the label control along side the same, i want to  display the progress of the files that are build successfully through a progress bar.
    What i need to do is when i click the button named as "Build" in the GUI it will display the selected projects to build from the CheckedListbox into the label control placed in the GUI.
    Please, provide me some hint regarding the same.
    Thanks.
    Tanmay
    Hello,
    It depends on what your application is and how you build these files, if possible you could share them with us.
    The most common way to display the progress, is to set the text for that label before or after we execute the line building these files.
    You could place the lines setting the text or change the progressbar.value before or after the building lines.
    Here is a simple sample using progressbar with a backgroundworker.
    http://stackoverflow.com/questions/12126889/how-to-use-winforms-progress-bar
    Regards,
    Carl 
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Trouble adding alias to the web.xml file (External Facing Portal)

    I'm trying to implement the external facing portal. I don't really have any real custom content to add to it but have just created an iView that contains a webpage that's contained within a copy of the light framework.
    I'm having trouble adding or accessing the alias that I've created to go to this iView.
    I can test my iView by adding it to the master rule collection under one of the predefined aliases in the web.xml (e.g. portal/anonymous etc) but when i define my own (e.g. "ext" etc) and then go to http://portal:<port>/irj/ext I'm just getting an error:
      The requested resource does not exist.
      Details:   Go to main page of this application!
    This is what my entry in the web.xml file looks like:
    <web-app>
    <display-name>The Java iView Runtime</display-name>
    <listener>
    <listener-class>
    com.sapportals.portal.prt.session.HttpSessionHandler
    </listener-class>
    </listener>
    <servlet>
    <servlet>
    <init-param>
       <param-name>
          portal/anonymous
       </param-name>
       <param-value>
    anonymous=1,proxy=0,low_bandwidth=0,include_in_url=1,include_application_name_in_url=1
       </param-value>
    </init-param>
    <init-param>
      <param-name>
       ext
      </param-name>
      <param-value>
    anonymous=1,proxy=0,low_bandwidth=1,include_in_url=1,include_application_name_in_url=1
      </param-value>
    <init-param>
    </servlet>
    My master rule collection seems to be correct, since I can test the iView etc by adding it to a predefined alias. I've tried closing all browsers etc. Nothing seems to work.
    Any ideas what this could be?
    Thanks!
    I'll award points for any help.

    Hi Beau
    Just Have a try.
    In the servlet mapping add the following entry.
    <servlet-mapping>
    <servlet-name> gateway </servlet-name>
    <url-pattern> /portal/* </url-pattern>
    </servlet-mapping>
    <b><servlet-mapping>
    <servlet-name> gateway </servlet-name>
    <url-pattern> /ext/* </url-pattern>
    </servlet-mapping></b>
    <servlet-mapping>
    <servlet-name> prt </servlet-name>
    <url-pattern> /irj/* </url-pattern>
    </servlet-mapping>
    Restart after making the changes.
    Regards
    Geogi Luke

  • I'm having trouble after editing in PS where my photo are not added back to the current catalog

    I like to use the "Edit in" Photoshop feature of Lightroom, but after moving to CC...My photos after saving them after correcting in PS are not returned into the catatlog. I've been having to importment the edited photo back into lightroom from the finder folder..I remember prior to CC my photos whould return to the strip with Edit.tiff, not any more..?

    Reset your preferences file: Resetting (or 'Trashing') the Lightroom Preferences file - Lightroom Forums
    Report back if that doesn't work.

  • Adding periods in the current fiscal period

    Hi,
    I need to extend the current financial period which is actually 12 periods to 18 periods.Is it possible in SAP Business One?
    The financial period is already in use in transactions so i am not able to remove it.
    Thks
    Nisha

    Hi
    No you can't change the no. of periods
    Regards

  • Abort the current sequence file

    Hi,
    I have a main sequence file (with a number of test cases) calling another 2nd sequence file.  I like to abort from my 2nd sequence file if a paremeter returned is certain value (e.g. parameter.result == "1") from TestComplete.  What command can I use?
    Also once the 2nd sequence file aborts, I need the main sequence file to continue on the next step.
    Thanks!

    The easiest way is to use the Post Action in the Step to Terminate.
    But I dont think you want to do that because you still want the caller sequence to run. Therefore use the Post Action of the Step to goto to CleanUp. This will then skip the remaining steps in the Main, run any steps you have in the Cleanup and return back to the Caller Sequence which continue running onto the next step.
    Regards
    Ray Farmer

  • I need to extend the schema for iPlanet Dir. 5.0 and add custom objectclasses and atributes. I do this by adding entries in the 99user.ldif file. Its not working. Any ideas?

    Hi
    I need to extend the schema for iPlanet Dir. 5.0 and I do not want to do so from the console. As per the documentation, I need to either add entries in the 99user.ldif file or define my own custom [00-99]myname.ldif file. I tried this but its not working.
    I have made the assumption that there is no explicit import step for the 'user defined' schema files (as it is for user data ldif files). I assume that on start (or on opening the console), I'd be able to see the new schema after the server has read the schema file.
    I have verified that entering new objectclasses and attributes from the console adds entries into the 99user.ldif file. So why is the reverse process not working. Can anybody throw some light on this? Also in case my assumptions are faulty, please let me know.
    I did not change the aci entries in the existing ldif file. Is any modification needed there? I was logged in as the Directory Manager during this testing process.
    regards
    Sikka ([email protected])

    Hi Sikka,
    The server reads its schema configuration on startup. If you manually modify the schema files while the server is running, it will not have any effect. You have to restart the server.
    The console adds the new schema elements over LDAP (you could do that as well, you only have to modify the cn=schema entry), so the server is aware of the changes immediately and thus restarting is not needed.
    I hope this helps.
    Bertold

  • I would like to confirm that the following file is part of the current firefox update: IdVault.XPCOM19.dll

    Norton Security flagged this file.

    Are you using Comcast (XFinity) Constant Guard Protection Suite? That is Norton licensed to Comcast. It appears to be part of that application designed by White Sky. See - http://www.isthisipsafe.com/company/White%20sky_details.aspx
    You can contact Comcast on a toll-free number - http://xfinity.comcast.net/constantguard/Support/?cid=NET_33_605

Maybe you are looking for

  • Can you copy a build action from one image to another?

    Hello - is it possible to set up a build action for a shape/image and then copy these attributes to another shape/image? I tried to use copy/paste styles however this did not work. I need to replicate the same path/build sequence many times over many

  • FILL IN PDF FILE

    Hi everyone, I have a PDF file that I would like to display and fill in with data so that the user could print the form. What is the best and easiest way to perform this? Thank you, steven

  • Can't initiate factory restore

    The sound card on my recently-inherited Toshiba satellite L655D-S5050 has been malfunctioning so I want to try to repair it via factory restore, except I can't find/access the factory image.  Seriously, I've tried everything.  The boot menu, the setu

  • Call to smartform

    Dear all I want to find out which program my smaftform is used in.??? Regards

  • Physical standby database to Logical standby

    Can I convert a physical standby database to Logical standby,