Not all "reverse" actions can be scripted?

hi,
A new newbie question of the day. Is it the case that ScriptListener will log specific individual tasks performed in Photoshop, but not their reverse? For example, I can see a logging of opening an image and using it to create a Pattern (via the Edit menu item for that). No problem. But when I want to choose that Pattern for another task or I want to delete it, that is not captured in the log ... what gives?
Any feedback appreciated.
John Stevenson

Michael,
What I did was as follows:
- opened Photoshop and opened an image
- created a Pattern from that image (Define Pattern)
- added a Layer
- selected the Pattern Stamp tool and a Tool Preset
All of these tasks are logged by ScriptListener.
Then next:
- went to the Pattern selection drop-down in the horizontal toolbar and selected the new Pattern ...
I cannot find a log for this.
And next:
- deleted that Pattern ... (so as to start over)
This does seem to be logged. My mistake earlier.
John

Similar Messages

  • I have a iPhone 4S and when watching videos on the internet sound cuts out as the video is playing. The rest of the video plays with no sound. Sometimes when I pause It and play again sound comes back but not all the time. can anyone help?

    I have a iPhone 4S and when watching videos on the internet sound cuts out as the video is playing. The rest of the video plays with no sound. Sometimes when I pause It and play again sound comes back but not all the time. can anyone help?

    The "restore disk" is built into the Mac. See About Recovery.
    Need more specifics about what error messages you got while installing Adobe Flash.
    However, you can almost avoid Flash altogether by setting YouTube to play the HTML5 version instead.
    Click the Try something new! link at the bottom of the YouTube page.
    I don't know about the sound issue. Might be hardware as you think. Try other headphones to check.

  • I have photos on my iphone 4 that i'm trying to transfer to iphoto.  The problem is when I plug the phone in, it only wants to transfer the new photos, not all.  How can I take all the photos off my phone and put them into iphoto?

    I have photos on my iphone 4 that i'm trying to transfer to iphoto.  The problem is when I plug the phone in, it only wants to transfer the new photos, not all.  How can I take all the photos off my phone and put them into iphoto? Even if there are duplicates, I'd like to make sure I get all the photos from my phone into iphoto.  Thanks

    To see all the photos on the phone, including photos that have already been imported into iPhoto, deselect the "Hide Photos Already Imported" checkbox. If the camera contains photos that have already been imported into iPhoto, those photos are hidden by default.

  • About tab page:not all tab page can view when have many tab page

    It has 12 tab page in a tab canvas,when it is running ,
    not all tab page can view.
    the tab canvas's Tab Attachment Edge is Top.
    How can it view all tab page?
    Pleae help me!
    Thanks.
    Daniel Liang
    2007.3.20
    Message was edited by:
    DanielLiang

    The number of tabs that you can show at once is limited by the size of the canvas. If you have too many tabs, then you can set up one tab to be a 'MORE'. When the user clicks on it, it hides the current set of tabs and displays the set of tabs that were not shown. By having a MORE for each set of tabs, you can toggle between the sets of tabs. The Help documentation describes how to show and hide tabs, and how to set focus to a particular tab.

  • Not all keys responding - can it be remapped ?

    not all my Macbook pro keys are responding and some seem remapped.  How can I remap the keyboard to original settings.  I can type using the keyboard viewer and the mouse - a real drag- any ideas?

    Go into your System Preferences, Universal Access, and choose Mouse & Trackpad.
    Chances are "Mouse Keys" is turned On. Turn it off, and you'll be set.
    Ever since Apple removed the "numlock" on certain MacBook models, there's apparently some shortcut you can inadvertently hit that turns this on, and when you do, your i key becomes a mouse click, and the characers around the i actually operate the mouse (this is what Mouse Keys does).
    It's frustrating and I only just now figured it out myself.

  • Query execute warning - Not all info-objects can be read

    When I execute query, I get warning "Not all infobjects can be read". This happens only with business user ids and not with developer IDs. Long text is -
    Inconsistent InfoObjects exist in the system. The inconsistency may be caused by a program termination while saving or activating the InfoObject or in its after import treatment.
    We are not able to trace which info-object is having problem. Problem is also while displaying data in LISTCUBE. Is this has to do anything with authorizations? We are not able to catch exact source of problem. Any ideas will be helpful.
    -Abhijit

    Hi,
    Do you have the problem with LISTCUBE with developer userd ID also ?
    Check the Consistency of the InfoProvider and activate it once more.
    Regards
    ReddyA

  • I'm trying to wipe out everything off my Macbook Pro.  When I get to the disc utility, the erase tab only erases current available space, not all data.  Can anyone help?

    I'm trying to erase everything off my MacBook Pro to transfer the computer to a new owner.  When I get to the disc utility, the only option is to erase "empty space," not entire contents.  Can anyone help?

    Try OS X: How to erase and install - Apple Support

  • Iphoto 09 - after install, not all photo's can be printed - help

    After installing iphoto, not all of my photo's were displaying. and when I had tried to print, only original photo's would print. if a duplicated or edited photo was selected, it would just look like a screen dump. I have uninstalled the software and re-installed it. the same problem occured. When I reinstalled it, the faces did not run. help please!

    i think i found a solution. rebuilding the photo database and fixing permissions did not correct a problem with 1 of the 4 photos I was attempting to print. Editing the photo in iPhoto may have resulting in the photo becoming corrupted. To make a long story short ... I used Time Machine to retrieve an earlier version of the corrupted photo, and all seems to be well.

  • Script works in Script Debugger, but not a folder action - can u help?

    Hi
    I have written the following script to run as as folder action and it works fine when running it through in debug mode in Script Debugger, but as a folder action nothing happens.
    I wonder if someone could have a look and spot what the problem is.
    Thanks
    Nick
    on adding folder items to this_folder after receiving added_items
    set convertPath to "Macintosh HD:opt:local:bin:ffmpeg"
    tell application "Finder"
    set inPath to this_folder as alias
    set outPath to this_folder as alias
    set filesToConvert to (name of every item of inPath whose name extension is "m4a")
    end tell
    repeat with i from 1 to count of filesToConvert
    set fileName to removeExtension(item i of filesToConvert)
    do shell script POSIX path of convertPath & " -i " & (quoted form of ((POSIX path of inPath) & item i of filesToConvert)) & " -f mp3 -ar 44100 -ab 192k -acodec libmp3lame " & (quoted form of (POSIX path of outPath)) & quoted form of (fileName & ".mp3") & " -mapmetadata " & (quoted form of ((POSIX path of inPath) & item i of filesToConvert)) & ":" & (quoted form of (POSIX path of outPath)) & quoted form of (fileName & ".mp3")
    end repeat
    end adding folder items to
    to removeExtension(fileToParse)
    #display dialog fileToParse
    set prevTIDs to text item delimiters of AppleScript
    set text item delimiters of AppleScript to "."
    return first text item of fileToParse
    set text item delimiters of AppleScript to prevTIDs
    end removeExtension

    mmh, well, it seems something is awry with the triggering. other folder action scripts seemed to work fine, but now are intermittent.
    i created the following simple script:
    on adding folder items to this_folder after receiving added_items
    display dialog "1"
    end adding folder items to
    sometimes it works, sometimes not.
    what could be going wrong?

  • In KEPM  error msg ' not all profitability segment can be processed'

    Hi
    PL  HELP ME WITH  THE FOLLOWING  ERROR, when doing   'enter planning'  in KEPM.
    Message no. KG803
    Diagnosis
    You cannot maintain all of the profitability segments in the current transaction. This could be due to the following:
    1. Errors occurred when characteristic values were derived for the profitability segments.
    If this is the case, you can display the error messages under the menu option "Extras -> Error logs -> Derivation".
    In   the   log , it says
    Diagnosis
    The characteristic "PRCTR" ("Profit Center") should be posted to Profitability Analysis (CO-PA). When the system checked the entries, it was established that the transferred characteristic value (" 1000 YB999") is not valid in CO-PA.
    Thanks
    kamala

    Hi Kamala,
    I would kindly ask you to check transaction OKEQN with your relevant planning version you are using in KEPM and where the above error occurs.
    The system checks within derivation (where the error comes from) if the characteristic value is valid for a specific date set within the version (thus trans. OKEQN). If you have PRCTR '1000 102C511' not valid for the date set in the version within OKEQN, then this error message is justified, as the system realises that the PRCTR was not valid by that time.
    Could you please check this? If the profit center is not valid for this date please adjust the date to a more recent one.
    Best Regards,
    Abhisek Patnaik

  • After moving profile, not all addons work -- can't reinstall

    I moved my FF profile from old computer running ubuntu to new one with opensuse. I used directions at https://support.mozilla.org/en-US/kb/back-and-restore-information-firefox-profiles
    Seems that most eveything transferred correctly except two addons: Session Manager & Pocket. Removed them both with intention to reinstall. I am unable to do so and am presented with the same error for both:
    ... could not be installed becaue Firefox cannot modify the needed file
    There is more detail in the Error console (also same for both):
    Warning: WARN addons.xpi: Failed to install: [Exception... "Component returned failure code: 0x80520005 (NS_ERROR_FILE_DESTINATION_NOT_DIR) [nsIFile.create]" nsresult: "0x80520005 (NS_ERROR_FILE_DESTINATION_NOT_DIR)" location: "JS frame :: resource://gre/modules/XPIProvider.jsm :: AI_startInstall :: line 5046" data: no]
    Source File: resource://gre/modules/XPIProvider.jsm
    Line: 5046

    When attempting to install the normal way is exactly when I was getting the error messages I mentioned in the first post.
    Anyway, I left out what I believe now is the critical detail: that the profile was moved from a partition that had to be rescued. It initially looked like all the data was saved but I've since discovered that a small percentage of the files on the disk were corrupted.
    The corrupted files must have included those for Session Manager and Pocket as I've been able to reinstall them by manually "save link as" downloading the xpis and then renaming or unpacking the files. It still remains to be seen whether or not I can do a normal install with an addon I didn't already have.

  • IPod NOTES - I think they can secretly scripting

    If you read the original notes file that comes with your ipod, it gives directions for how to place text files in that directory. However, that original file itself, when viewed view PC, contains only the tag <INSTRUCTIONS> - which suggests to me, that the files in the directory are interpreted - ie the iPod in this case replaced <INSTRUCTIONS> with the information it had store in memeory for how this section works.
    I tried some basic html stuff and , and both dissapeared when rendered on my ipod (suggesting that code is being interpreted, but and don't specifically do anything on the iPod. Any ideas as to what some other codes that would work in the NOTES section of an iPod might be?
    Perhaps they are considering the ability to make the note section interactive? But haven't released the code reference yet?

    when playing with notes and automator (there's an example workflow to sync your email) I noticed that there appears to be some file size restriction and large files are split into several parts.
    does anyone know why this happens, and why the maximum file size is so small?

  • Not all my photos can be imported from iPod touch

    I have Windows Vista and I was importing photos from my iPod to my computer the usual way, right click iPod in computer and it starts importing. Problem is it says I have 1464 photos and its importing them but I have 2200 photos... I've reconnected a bunch of times but no luck.

    DCIM folder has 4 different folders inside...
    823WGTMA
    860OKMZO
    858HDJES
    965YOKDJ
    which one is Camera roll?

  • Can message some but not all

    I can message some phone numbers but not all.  How can I tell what is causing the not delivered message?

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    iOS: FaceTime is 'Unable to verify email because it is in use'
    http://support.apple.com/kb/TS3510
    Using FaceTime and iMessage behind a firewall
    http://support.apple.com/kb/HT4245
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    iOS and OS X: Link your phone number and Apple ID for use with FaceTime and iMessage
    http://support.apple.com/kb/HT5538
    How to Set Up & Use iMessage on iPhone, iPad, & iPod touch with iOS
    http://osxdaily.com/2011/10/18/set-up-imessage-on-iphone-ipad-ipod-touch-with-io s-5/
    Set Up Alert Sounds
    http://www.quepublishing.com/articles/article.aspx?p=1873027&seqNum=3
    Extra FaceTime IDs
    http://tinyurl.com/k683gr4
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Troubleshooting iMessage Issues: Some Useful Tips You Should Try
    http://www.igeeksblog.com/troubleshooting-imessage-issues/
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    Fix Can’t Sign Into FaceTime or iMessage iOS 7
    http://ipadtutr.com/fix-login-facetime-imessage-ios-7/
    FaceTime, Game Center, Messages: Troubleshooting sign in issues
    http://support.apple.com/kb/TS3970
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90
    iOS 7 allows you to block phone numbers or e-mail addresses from contacting you via the Phone, FaceTime, or Messages
    http://howto.cnet.com/8301-11310_39-57602643-285/you-can-block-people-from-conta cting-you-on-ios-7/
    How to Block Someone on FaceTime
    http://www.ehow.com/how_10033185_block-someone-facetime.html
    My Facetime Doesn't Ring
    https://discussions.apple.com/message/19087457#19087457
    How to watch FaceTime calls on the big screen with Apple TV
    http://www.imore.com/daily-tip-ios-5-airplay-mirroring-facetime
    Send an iMessage as a Text Message Instead with a Quick Tap & Hold
    http://osxdaily.com/2012/11/18/send-imessage-as-text-message/
    To send messages to non-Apple devices, check out the TextFree app https://itunes.apple.com/us/app/text-free-textfree-sms-real/id399355755?mt=8
    How to Send SMS from iPad
    http://www.iskysoft.com/apple-ipad/send-sms-from-ipad.html
    How to Receive SMS Messages on an iPad
    http://yourbusiness.azcentral.com/receive-sms-messages-ipad-16776.html
    Apps for Texting http://appadvice.com/appguides/show/apps-for-texting
    You can check the status of the FaceTime/iMessage servers at this link.
    http://www.apple.com/support/systemstatus/
     Cheers, Tom

  • Not all chinese characters display correctly with non-embedded text

    Hi all,
      I've updated to the last beta 2 of Flash Player 10.1 (10,1,51,66) and compiled this simple Flex application to illustrate the fact that not all chinese characters can be displayed correctly with non-embedded text (device font).
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/halo"
                   minWidth="1024" minHeight="768"
                   creationComplete="resourceManager.localeChain = ['zh_CN'];"
                   layout="{new VerticalLayout()}">           
        <fx:Script>
            <![CDATA[
                import spark.layouts.VerticalLayout;
            ]]>
        </fx:Script>
        <s:Label text="伜-伞伟传伡伢伣伤伥伦伧伨伩伪伫伬伭-伝">
        </s:Label>
        <mx:Label text="伜-伞伟传伡伢伣伤伥伦伧伨伩伪伫伬伭-伝"/>       
    </s:Application>
      Notice that characters from the Unicode range 0x4F1E .. 0x4А2D are not displayed within <s:Label> component that uses Flash Text Engine (FTE) by default to display the text, but at the same time those characters display just fine within older <mx:Label> component that relies on flash.text.TextField instance to render the text.

        OK, did not know that "Arial Unicode MS" font is only distributed with Microsoft Office, was looking into relying on this font in case if "simsun.ttc" font is not available at the user's system, by using the following:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx"
                   minWidth="1024" minHeight="768"
                   creationComplete="resourceManager.localeChain = ['zh_CN']"
                   layout="{new VerticalLayout()}">               
        <fx:Style>
            @namespace s "library://ns.adobe.com/flex/spark";
            @namespace mx "library://ns.adobe.com/flex/halo";
            s|Label {
                fontFamily: "Arial Unicode MS, SimSun, Arial";            
        </fx:Style>   
        <fx:Script>
            <![CDATA[
                import spark.layouts.VerticalLayout;
            ]]>
        </fx:Script>
        <s:Label id="sparkLabel" text="伜-伞伟传伡伢伣伤伥伦伧伨伩伪伫伬伭-伝"/>   
    </s:Application>  
    Tough decision ahead, but accordingly to  the survey at codestyle.org (2000 participants from 2007 year and onwards), Arial Unicode MS is present at 62.53%% system surveyed.
    ps
       My current install of Windows XP already includes the install of Microsoft Office 2007 and I've also enabled/disabled the support of East Asian languages, thus the content of  my "fonts" folder differs now significantly from "clean" Windows XP install version.
    Nevertheless I found the page with comprehensive lists of standard fonts installed with different releases of Windows that looks viable here:  http://www.kayskreations.net/fonts/fonttb.html

Maybe you are looking for

  • Trouble creating a third partition in Disk Utility.

    Hello, I am fairly new to the Mac as I recently switched from a PC just a few weeks ago. Now you won't be dealing with a "noob" here because I am a power user when it comes to the PC so not too much adjustment has been needed for OS X. So I Have the

  • Six kernel panics since installing Lion

    So I've had six kernel panics since installing Lion on my sandy bridge MBP.  Usually running safari, mail, and excel when they occur.   Weird third-party process or something?  I actually don't have many applications installed on this computer.  Any

  • Determine http source for file in my PKGBUILD

    I'm trying to write a PKGBUILD for a JAlbum skin.  The problem I'm having is that the download link doesn't point to a specific file.  Ideas on how I can translate the following into a source=(http://) line in my PKGBUILD are welcomed Here is the dow

  • Identifying the CAB font

    Hi I'm designing Christmas cards (I know its July!) for a relative who runs a local branch of "Citizens Advice Bureau" and I need help identifying the font the logo uses. Here is a highish res image of the logo:  http://www.southwarkadvice.org.uk/ima

  • Advantages of 10/100 Management port on 6500/4500 series

    Hi mates, There is a common port called "10/100 MGT" (next to console port) on the supervisor engines of 6500 and 4500 series switch. Why would I need that port since I can telnet through Layer2 10/100 ports?? Is that port doing the same job as conso