History State

Hello everyone,

I want to run a script, but it should not be on a step in state history. would be better if it was just a visible step, for example, there is a frequency separation are performed. In the history State should then 'separation of frequency' are.

Can someone help me because someone accidentally

Ok

/* ==========================================================
// 2013  John J. McAssey (JJMack)
// ======================================================= */
// This script is supplied as is. It is provided as freeware.
// The author accepts no liability for any problems arising from its use.

// I set a shortcut key in my case F5 to this Photoshop script mainly for doing Window screen capturing of:
// desktop displays, Active window and selected area copy to clipboard. The script log the cardboard into a document with the name clipboard. 

/*

$$$/JavaScripts/PasteClipboard/About=JJMack's Paste Clipboard into Clipboard document.^r^rCopyright 2014 Mouseprints.^r^rJJMack's Script.^r
NOTE:New Clipboard Document will be open if necessary
JJMack's Script

*/

// enable double-clicking from Mac Finder or Windows Explorer
#target photoshop // this command only works in Photoshop CS2 and higher

// bring application forward for double-click events
app.bringToFront();
if (!documents.length) {
  NewCliboardDoc ();
  app.activeDocument.suspendHistory('pasteClipboard','main(true)'); // New document opened proceed
  }
else { //locate Document clipboard
  for (var i=0;i 
         

Tags: Photoshop

Similar Questions

  • CC 2015 made history States use zero disk or ram?

    Hello

    may I know if the historical State of photoshop cc 2015 uses the ram or the drive working?

    because I would increase the number in the State of history

    Thank you

    mantralightroom wrote:

    Hello

    Yes, but in the article it has

    Each State history, or snapshot, of an operation that affects the entire image increases the amount of scratch disk space requires the file.

    I guess that it is outdated, and and I guess the new photoshop uses the drive working

    In short if I increae the history State will be photoshop cc 2015 consume more RAM or use the disc more work?

    I guess the answer is that it uses both, but it will certainly impact on the RAM first.   How much RAM you have, and how many States history do you have set?   I expect to be OK with 50 States on a system with 8 GB of RAM.  I use 200 with 32 GB, but Photoshop ever closer by using all the available RAM.

    If you are using Windows, open the Task Manager > Performance tab and keep an eye on the use of the RAM and CPU.  I tried it out of curiosity and with all the States of 1000 maximum, the use of the RAM does not change until you start editing.  My system went from 6.2 to 6.8 GB RAM GB used after 100 and 7.6 GB after only 200 strokes brush strokes.

  • Performance/history States preference Photoshop CS3 problem

    Hello everyone, I am using windows 7/32 bit and I have a huge problem with my photoshop CS3. When I try to open it it says: could not initialize Photoshop because the file is locked.

    Then I go to delete the preferences and it works again, but when I close it I get a message that says that Photoshop no longer works so I try to open it again and it still says: could not initialize Photoshop because the file is locked. I don't know what to do, I tried everything (restart the computer, remove the preferences, delete temporary files) and nothing works. Please help if you can I have a lot of work and can't do anything with photoshop acting like that. Thank you very much in advance.

    UPDATE: it seems that the locked file slipped. But once I open photoshop I change the performance, specific story now because of 100 that I need to have this setting. Once I have it and try to close photoshop that it never closes and it says photoshop stopped working as it crashes or something, but if I do not change the performance/history States it closes normally, I can please help.

    A.


    I don't know why it should crash.  It goes to the right when you change the setting?

    Assuming that you have installed CS3 from your original, do you have updated to the latest version of Photoshop CS3 (10.0.1)?

    http://www.Adobe.com/support/downloads/detail.jsp?ftpID=3775

    -Christmas

  • Adobe Flash Player history States?

    In Photoshop, we can define the number of bones States in history, we can increase or decrease this number, but my doubt is: Flash, we have this option? Cause in photoshop we just go in the PERFORMANCE OPTIONS and set these numbers, but in flash I Don t see this option.

    I appreciate your help...

    If I understand correctly what you ask about, try... Edit-> preferences-> General-> and set the return value as you want

  • As States of the history display options

    In InDesign CS3 on my PC, the display options are saved as history States. This means that, if I switch between the Normal and preview modes and you want to cancel my last changes, Ctrl + Z cancel it display mode changes before the cancellation of the previous action. It's very frustrating when I want to quickly undo and redo an action to compare changes. I tried to look in the preferences, but have not worked out how to change the setting again. I have not experienced the same on other computers or versions of InDesign. Am I missing something?


    Any help would be greatly appreciated.

    Fixed the 5.0.1 update... Download the 5.0.4 update and install it.

    Bob

  • Save all snapshots of history in the form of files

    I admit, I love save snapshots of history! Sometimes, I want to save them in a file later once the image has been closed.

    I wrote an action to save the 10 current snapshots on the files. It works fine with the following limitations:

    (1) she recorded only 10 snapshots (it is easily developed if necessary)

    (2) the snapshots must be named 'Snapshot 1', 'Snapshot 2"etc.

    This action does not work if the snapshot has a different name.

    Does anyone know of a script that is similar?

    Here is a sample of the recorded text action steps:

    Set: Save First 10 History Snapshots to File
      Action: Save First 10 History Snapshots to File
      Select snapshot “Snapshot 1”
      Make document
      Using: Current History State
      Save
      Close
      Select snapshot “Snapshot 2”
      Make document
      Using: Current History State
      Save
      Close
    

    This script will save all snapshots in a folder called instant out of the paths of documents, each file is saved as a jpg with the name of the snapshot file.

    #target photoshop;
    app.bringToFront();
    main();
    function main(){
    if(!documents.length) return;
    try{
        var Path = activeDocument.path;
        }catch(err){
            alert("You save your document before running this script!");
            return;
            }
    var doc = app.activeDocument;
    var now = doc.activeHistoryState;
    var Snaps = snapShotList();
    var outputFolder = Folder(Path + "/snapshots");
    if(!outputFolder.exists) outputFolder.create();
    for (var z in Snaps){
        revertNamedSnapshot(Snaps[z]);
        var saveFile = File(outputFolder + "/" + Snaps[z].toString().replace(/\./g,'_') + ".jpg");
        SaveForWeb(saveFile,80);
        }
    doc.activeHistoryState = now;
    };
    
    function SaveForWeb(saveFile,jpegQuality) {
    var sfwOptions = new ExportOptionsSaveForWeb();
       sfwOptions.format = SaveDocumentType.JPEG;
       sfwOptions.includeProfile = false;
       sfwOptions.interlaced = 0;
       sfwOptions.optimized = true;
       sfwOptions.quality = jpegQuality;
    activeDocument.exportDocument(saveFile, ExportType.SAVEFORWEB, sfwOptions);
    };
    function snapShotList(){
    var doc = app.activeDocument;
    var hs = doc.historyStates;
    var now = doc.activeHistoryState;
    var Name = new Array();
    for(var a =0;a 		   
  • My undo command no longer works, history of not be created, HELP :-(

    Hey everybody!


    I am a long time Photoshop CS5 user and all of a sudden that I can't use several cancellations. Looking at the window of my story, it seems that I'm not generating no history beyond my last order. I did some research and played a bit with some settings, but I can't seem to get this to behave more appropriately. Can someone tell me please in the right direction? Thank you all very much!

    Nicely,

    Jardel

    Make sure you have a number of history States set in preferences:

  • Change history settings

    How can I change history in the General preferences of 20 to 200 file about. It is not like before.

    Hello

    Go to Photoshop > Preferences > Performance and locate the option History States . You can enter a historic State up to 1,000.

    See you soon!

    Kendall

  • History a catalog between volume of sharing folders?

    Setup: I worked on my 'Volume A' images in the past.

    I set up just a pair of disks 1.5 to inside of my workstation (MacPro) and now have the same series of images, "Volume A", on one of the new internal drives. One of the new disks, 'Volume B' will now be my player 'work' to continue my editing on.

    Question: I want that history States AND my snapshots from the images that I had edited using 'Volume A' as my work drive is visible in history and snapshots ("Volume B") windows new drive '- Details exactly as they exist when I look back at history and snapshots of A Volumerendered! Is it possible for me to do this w/Lightroom 2?

    Now things:

    ( 1) in the "Volume A" history and snapshot windows I see all my details of mounting of the drive (original)...

    ( 2) whereas in the News ("Volume B") story reader and snapshot windows I don't see that the import of today (in the historical Panel) and 'Import', 'import 2' in the Snapshots Panel. It's NOT what I want to see. I want to see exactly what I, had made in windows history and snapshots of the original volume work! (I often go in back-and-forth between past history has weeks or months later, to experiment more, and then save the new pictures that I revisit work.)

    Any easy (or bypassed) fix to this?

    Thanks in advance, mm

    It is a confusing request to me.

    You want the story in both places? So, somehow, you can work on Volume B, and at other times to work on the Volume? I have a problem with this idea, it does not make sense to me.

    If I understand you correctly (and I'm not sure I understand you correctly), you want to copy your catalog of Volume for Volume B file, not to import new photos on Volume B. Original photos must be in both places, just the catalog file. This will give you access to your photos on the two volumes... via LR and then keep synchronized is an exercise that I leave to you, because I do not really think about the complexity of this.

    But, if you "often go back-and-forth between the history States several weeks or months later, to experiment more and then save new snapshot", you need only one catalog on a single Volume to do. Trying to recreate the configuration of your whole on Volume B is the solution "killing an Ant with a nuclear bomb.

  • cannot view history

    For some reason I'm not able to view my story.  I can see the menu of history, but I can show only the last action performed.  It is not as usual list all the clicks of the mouse.  In addition, my layers start locked and I can't figure out how to make disable... ANY HELP is appreciated!

    Thank you

    set the number of history States in the prefs

  • Convert to text

    I'm trying to get a numeric value to put in this script, but I get an error when I try to convert the line of text

    Is it possible, that I'm trying to return a specified number of history not in photoshop.

    Thank you very much

    Matt

    tell application id "com.adobe.photoshop"
      tell current document
      set a to current history state
      --undo larget action
      log a
      --(*history state 57 of document DJ30ER08204OR6GO.JPG*)---
      set b to 3rd text item of (a as text)
      set current history state to history state (b - 27)
      end tell
    end tell
    

    This works for now, but is a little messy.

    tell application id "com.adobe.photoshop"
      tell current document
      set a to (current history state)
      try
      set b to (a as text)
      on error error_message
      end try
      log "error " & error_message
      set {oldTID, AppleScript's text item delimiters} to {AppleScript's text item delimiters, "Can’t make «class cHst»"}
      set c to last text item of error_message
      set {oldTID, AppleScript's text item delimiters} to {AppleScript's text item delimiters, "of document"}
      set d to first text item of c
      set e to d as integer
    
      --(*history state 57 of document DJ30ER08204OR6GO.JPG*)---
    
      set current history state to history state (e - 27)
    
      end tell
    end tell
    
  • Cannot install Trend Micro 2012, receive error message: "your computer meets all the installation requirements, so Setup must stop."

    Original title: Problems installing Trend Micro 2012

    Tried to install Trend micro on my laptop, and towards the end of this way the message; "Your computer meets all the installation requirements, so the installer must stop." appeared. He then read "Windows update," I clicked on the link and also called microsoft who gave me the link updates from SP1 to SP2. I did (ran for almost 2 hours!) and recorded. I then checked the edition of windows under system and it has not saved the update even if it is registered and installed to my files. Tried to do the foregoing twice, still the same problem. Rang Dell and they sought to find an answer to the problem, but did everything they could. Still no answer to the problem after all. I have Windows Vista Home Basic as my operating system and installed Trend micro in the past with no problems. (Not sure if the following has nothing to do with it, but thought it might be useful a mention). I changed to Microsoft Office 2007, which has already been installed on my laptop for Office 2003, because I found it difficult from the laptop to the desktop and I didn't really want to pay for the upgrade of my office, if I didn't need it.

    Hello

    You need to install Trend Micro Titanium 2012 Vista SP2 or later version

    See this: http://support.antivirus.co.UK/trendmicro/kbresolution.jsp?Hmid=53756&ServiceId=51&ApplicationId=345

    I suggest you follow these methods and check.

    Determine if SP2 has been installed or not?

    To see if the update has been installed, review the installation history

    To view the history of installation, follow these steps:

    a. click Start, point to all programsand then click Windows Update or Microsoft Update.

    b. click view update history.

    c. find the latest entry for the specific update.

    d. If the entry shows the success in the status column, the update has been installed. If it says pending in the status column, the update is not installed.

    Post back with the history state of Windows update, mistakes, if there is.

    If the update is successful, if it does not show in system properties run System File Checker tool.

    To do this, follow the steps in this link:

    Follow the steps in this link: http://support.Microsoft.com/kb/929833

    In the meantime, you can check this link for the required components, that you must take to install the Vista SP2. Learn how to install Windows Vista Service Pack 2 (SP2)

    http://Windows.Microsoft.com/is-is/Windows-Vista/learn-how-to-install-Windows-Vista-Service-Pack-2-SP2

    Also these return these items:

    Troubleshoot installing or uninstalling programs

    http://Windows.Microsoft.com/en-us/Windows-Vista/Troubleshoot-installing-or-uninstalling-programs

    How to solve problems when you install or uninstall programs on a Windows computer

    http://support.microsoft.com/kb/2438651

    I hope this helps!

  • Cannot run "solve problems" in netwoking "

    I am faced with error "Diagnostics scripted Native Host has stopped working" when executing "solve problems".  repair network and cannot run the "problems".

    My windows update works correctly and is not facing any other question.

    Reliability history States 'sdiagnhost.exe' stopped working and also APPCRASH.

    I also created new user and find the same mistake made its appearance.

    Run the sfc and he found some files it cannot repair, summer of these added files. PL also help me if I can replace these files manually (and then how to extract the right files from windows sources CD) I find this article linked to this

    http://support.Microsoft.com/kb/929833/en-us#manually repair

    Find a file in journal SFC:

    Cannot repair the military record [l:30 {15}] "acppage.dll.mui" Microsoft-Windows-Application-experience - Tools.Resources, Version = 6.1.7601.17514
    Cannot repair the military record [l:42 {21}] "CipherSuiteOrder.adml" Microsoft-Windows-CipherSuiteOrder - Adm.Resources, Version = 6.1.7600.1
    Cannot repair the military record [l:18 {9}] "upcfl.ttf" Microsoft-Windows-font-TrueType-FreesiaUPC, Version = 6.1.7600.16385
    Cannot repair the military record [l:26 {13}] "RSSFeeds.html" Microsoft-Windows-Gadgets - RSSFeedsGadget.Resources, Version = 6.1.7600.16385
    Cannot repair the military record [l:22 {11}] "license.rtf" Microsoft-Windows-license-default - Ultimate.Resources, Version = 6.1.7601.17514
    Cannot repair the military record [l:22 {11}] "L2SecHC.dll" Microsoft-Windows-Layer2SecurityHelperClass, Version = 6.1.7600.16385
    Cannot repair the military record [l:30 {15}] "msprivs.dll.mui" Microsoft-Windows-LSA - MSPrivs.Resources, Version = 6.1.7600.16385
    Cannot repair the military record [l:34 {17}] "dpapi_keys DL.man" of Microsoft-Windows-Migration-DownlevelManifests, Version = 6.1.7601.17514
    Cannot repair the military record [l:40 {20}] "Telnet Server - dl.man" of Microsoft-Windows-Migration-DownlevelManifests, Version = 6.1.7601.1751
    Cannot repair the military record [l:76 {38}] Microsoft-Windows-Migration-DownlevelManifests's ' Microsoft.Windows.COM.DTC.Setup DL.man', Version = 6.1.7601.17514
    Cannot repair the military record [l:26 {13}] Microsoft-Windows-Migration-DownlevelManifests's ' GPBase DL.man', Version = 6.1.7601.17514
    Cannot repair the military record [l:38 {19}] Microsoft-Windows-Migration-DownlevelManifests's ' IasMigPlugin DL.man', Version = 6.1.7601.17514
    cannot repair the military record [l:34 {17}] "dpapi_keys DL.man" of Microsoft-Windows-Migration-DownlevelManifests, Version = 6.1.7601.17514
    Cannot repair the military record [l:40 {20}] "Telnet Server - dl.man" of Microsoft-Windows-Migration-DownlevelManifests, Version = 6.1.7601.1751
    Cannot repair the military record [l:20 {10}] "ds16gt.dLL" Microsoft-Windows-Microsoft-Data-Access-Components-(MDAC)-ODBC-Driver-Setup-Thunking-16, Version = 6.1.7600.16385
    Cannot repair the military record [l:52 {26}] "PreviousMenuButtonIcon.png" Microsoft-Windows-OpticalMediaDisc-Style-Performance, Version = 6.1.7600.16385
    Cannot repair the military record [l:42 {21}] "Perf_Scenes_Mask1.png" Microsoft-Windows-OpticalMediaDisc-Style-Performance, Version = 6.1.7600.16385
    Cannot repair the military record [l:48 {24}] "photoedge_videoinset.png" Microsoft-Windows-OpticalMediaDisc-Styles, Version = 6.1.7600.16385
    Cannot repair the military record [l:44 {22}] "NextMenuButtonIcon.png" Microsoft-Windows-OpticalMediaDisc-Style-Performance, Version = 6.1.7
    Cannot repair the military record [l:60 {30}] "NavigationUp_ButtonGraphic.png" Microsoft-Windows-OpticalMediaDisc-Styles, Version = 6.1.7600
    Cannot repair the military record [l:64 {32}] "menu_style_default_Thumbnail.png" Microsoft-Windows-OpticalMediaDisc-Styles, Version = 6.1.7600.16385
    Cannot repair the military record [l:36 {18}] "BlackRectangle.bmp" Microsoft-Windows-OpticalMediaDisc-Styles, Version = 6.1.7600.16385
    Cannot repair the military record [l:38 {19}] "cloud_Thumbnail.bmp" Microsoft-Windows-OpticalMediaDisc-Styles, Version = 6.1.7600.16385
    Cannot repair the military record [l:58 {29}] "Heart_SelectionSubpicture.png" Microsoft-Windows-OpticalMediaDisc-Styles, Version = 6.1.7600
    Cannot repair the military record [l:20 {10}] "pubprn.vbs" Microsoft-Windows-printing - AdminScripts.Resources, Version = 6.1.7600.16385
    Cannot repair the military record [l:32 {16}] "pwrshmsg.dll.mui" Microsoft-Windows-PowerShell - Message.Resources, Version = 6.1.7600.16385
    Cannot repair the military record [l:22 {11}] "cscript.exe" Microsoft-Windows-writing scripts, Version = 6.1.7601.18283
    Cannot repair the military record [l:24 {12}] "helpcins.dll" Microsoft-Windows-ServicingStack, Version = 6.1.7601.17592
    Cannot repair the military record [l:22 {11}] "cmnicfg.xml" Microsoft-Windows-SharedAccess, Version = 6.1.7600.16385
    Cannot repair the military record [l:24 {12}] "wmipjobj.mof" Microsoft-Windows-WMI-CreateJobObject-provider, Version = 6.1.7600.16385
    Cannot repair the military record [l:24 {12}] "secrcw32.mof" Microsoft-Windows-WMI-Mof, Version = 6.1.7600.16385
    Cannot repair the military record [l:24 {12}] "wmipjobj.mof" Microsoft-Windows-WMI-CreateJobObject-provider, Version = 6.1.7600.16385
    Cannot repair the military record [l:34 {17}] "I386\GS2171E3. PPD"prngt004.inf, Version = 6.1.7600.16385.
    Cannot repair the military record [l:32 {16}] "HPZEVW71. DLL.mui"prnhp003.inf.Resources, Version = 6.1.7600.16385,

    Hello

    Glad to know that you have addressed the issue.

    In Control Panel, you can enable Windows features enable or disable link on the left. .NET Framework will be in the window that opens, a check mark beside that that means that it is installed.

    Windows 7 comes with .net Framework 4.0 Client profile, you must install the lower version.

    I suggest you follow the instructions in the link:

    http://answers.Microsoft.com/en-us/Windows/Forum/Windows_7-windows_programs/how-to-install-NET-Framework-11-in-Windows-7-64/eb1e6232-E874-432e-AB43-17660e25e43d?page=1&TM=1345067625733

    See also:

    How to determine which versions and service pack of Microsoft .NET Framework levels are installed

    http://support.Microsoft.com/kb/318785/en-us

    Important: This section, method, or task contains steps that tell you how to modify the registry. However, serious problems can occur if you modify the registry incorrectly. Therefore, make sure that you proceed with caution. For added protection, back up the registry before you edit it. Then you can restore the registry if a problem occurs.

    How to: determine what version of .NET Framework is installed

    http://msdn.Microsoft.com/en-us/library/hh925568 (v = vs. 110) .aspx

    Hope this information helps.

  • Conversion of snapshots in layers

    My query is specifically about how to do what is stated in the subject. I ruined my brain trying to find a way to do this effectively. Is the closest I've been able to understand to scroll the layers and copy them into a new doc and then copy them back but this requires the knowledge of snapshots how many there are in the original doc. What I want is to take all the instant States (regardless of the amount of snapshots) history and convert them into individual layers in the original document.

    Is it possible a solution that seeks what anyone named 'snapshot' in the history of script and somehow produced history States in several layers in the source document? If so, how would you do that?

    Thanks to all who can help you with this. I know little or nothing about scripts...

    I also suggest flattened copy and save as a layer using merged stamp visible. To keep the flattened layers, you need to set your status non-linear story or save layer flattened on a new doc while you create.

  • Photoshop is so slow, that it is completely unusable.

    I recently bought the CC and was shocked to discover that Photoshop CC 2015 is so slow, it's almost not even worth opening. I'm on a mac running El Capitan and I'll immediately go the bat and say my Macbook Pro is like 6 years old and has only 4 GB of ram. But for reference, my computer works CS6 on Windows XP and it is lightyears ahead of CC. At work, I can take a picture adjust this tweak that adds a filter text top jet and be done lickity Split. On my Mac CC 2015 takes about a minute to do anything. If I create a blank white canvas and do five strokes with a brush that the first will show the half pulled, 5 minutes later, another might appear, and that's it. I read tons of reports on similar issues in dozens of users. I tried things like increasing memory intense Photoshop use, decreased amounts of the history States, I even installed CC 2014 and it worked for a day, but that is now all too slow.

    Why I pay huge, monthly fees for an advanced application that runs slower than the version 4 years on an operating system dead, old 15 year?

    XP is no longer supported by Microsoft, security issues will not be fixed. If you continue to use your DIF, s request. Most windows users use Windows 7 is a lot better than XP OS.   I see many Mac El Capitan related problems in this forum, have you searched?

    https://forums.Adobe.com/search.jspa?place=%2Fplaces%2F1413024&q=El+Capitan+problem

Maybe you are looking for