New scripts

I've posted a couple of new scripts on ps-scripts.com:
http://www.ps-scripts.com/bb/viewforum.php?f=17
XWatermark is a script for apply watermarks (shapes or text) with lots of
options. I'll be adding as a it's own package on the ps-scripts sourceforge site
in a month or two.
CameraRaw is for doing stuff with raw files via Bridge. The big one in here is
the ability to apply presets to raw files. This will be a part of xtools v1.6
which should be released sometime soon.
-X
for photoshop scripting solutions of all sorts
contact: [email protected]

What's your idea of adding scripts to WebToGo? Retrieving information about client syncs doesn't required adding scripts to WebToGo; just create scripts (batch files, java programs, whatever you want) to select the data from the Mobile Admin schema and its appropiate tables (c$synch_history, etc).

Similar Messages

  • I want to know how to create a new script that can be run in batch proces in Photoshop Element 11 ?

    I want to know how to create a new script that can be run in batch proces in Photoshop Element 11 ?

    Have a look at the menu file/process multiple files. You can choose to add your signature (or the caption) to the image and export the new files.
    If that solution is not flexible enough, consider using the very affordable (12$)  Elements+ add-on which offers a 'meta stamp' script :
    http://elementsplus.net/v5/en/meta-stamp.htm
    Otherwise, have a look at other free and good solutions like Faststone Photoresizer, Xnview...

  • New Script for PE Tags-- iPhoto keywords

    I haven't tried it yet, but there's a new script for getting your Windows PE tags into iPhoto as keywords. Use the Write Tags to File command in PE first.
    http://scriptbuilders.net/files/iphotoiptckeywordimportexportutilities1.0.html

    Oh, whoops, I just posted this in the Technical forum before I came here. Never sure which one to use.
    This looks like the script a lot of folks were looking for.

  • Perl, my old scripts run but a I can't run new scripts

    I'm getting back into Perl and I have old practices files which will run fine. But when I write a new script nothing happens. Currently using 10.4.5, BBEdit 6.1 Lite. All my scripts have the following first line: #!/usr/bin/perl
    Old scripts work, if I type a new one and run it nothing happens except I get a new command line prompt.
    On the other hand if I remove the #!/usr/bin/perl line and go to the command line and type: perl programname. Programname will run!?!!?
    I still have to dig into the man pages on perlrun. Does anyone have a clue?
    Thanks, Dennis

    thanks for all the information. I really appreciate the replies.
    all of my experience is based on the O'Reilly book I mentioned above. I've tried to respond to all the comments but the order is not exact.
    chmod 755 uses an octal argument to change the permissions on the file.
    In particular the file becomes executable.
    1. which perl returned /usr/bin/perl which explains why the old perl programs run. Perl is where it's supposed to be.
    2. I haven't done anything to my system as far as a rehash goes(what is that anyway?)
    3. the wc -l command returned 0 hw2, meaning zero lines, bingo!! this must be it, don't you think?
    4. So why will BBEdit let me write, save, reopen files with content and UNIX sees the file as empty.
    5. when these programs are run, nothing happens I just get a new prompt.
    BTW the program, called hw2, in question reads:
    #!/usr/bin/perl
    print "hello, world. \n";
    get this: when I do cat hw2 I get a listing without the #!/usr/bin/perl at the top ie I see one line instead of two even though wc -l reports zero lines, what's up with that???
    I think that's everything for now. I'm going to look for another texteditor
    ps does it matter what the line end character is? I can choose Mac or UNIX.

  • New script dialog box only displays momentarily

    FM10 in TCS3 on Windows XP
    My coworker and I decided to investigate Extendscript and when we select File>Scripting>New from the main toolbar, the New Script dialog box flashes momentarily and then disappears. However, selecting Run displays the Choose Script dialog box, and selecting Catalog displays the Script Library.
    We have the latest patches and have installed DITA-FMx, FrameSLT, and SDLAuthorAssistant in FM.  Could any of those be affecting the scripting function?
    Thanks in advance.
    m

    Using TechCommSuite 3.0 on Windows XP.
    I always like to close loops and this posting is no exception.
    After almost two weeks of diligent sleuthing by Adobe techs and our own security personnel, we determined that the problem of ExtendScript not launching was an in-house problem.
    We have a DLP application that interfaces with our desktops for security purposes.  We needed to identify the ExtendScript.exe that was running in order to allow it to function.  Our security guy performed some wizardry and voila!  I had my ExtendScript window.
    Mary

  • News script in JSP HELLP!!!

    I am a beginer with JSP (i did something in PHP), i must do a news script for school and i don't have time to learn all about jsp. So cam someone tell mi the basics. I have the java and the tomcat server. I make a database in MYSQL but i dont know how to make it work with jsp.
    I must do something very simple a login and a form for the input of the newses.
    PS soooy for my english.

    See whetehr ethis helps. Yuo need to change the Driver Class for MySQL
    <HTML>
    <BODY>
    <%@ page import="java.sql.*" %>
    <%
    String strErrorMessage = " ";
    Connection conn = null;
    Statement stmt = null;
    if (request.getParameter ("n_entrada") != null)
    try
    Class.forName("com.jnetdirect.jsql.JSQLDriver").newInstance();
    conn = DriverManager.getConnection ("jdbc:JSQLConnect://<ServerIP>:Port/database=<dbname>/user=sa/password=sesame");
    stmt = conn.createStatement ();
    StringBuffer sbfQuery= new StringBuffer ();
    sbfQuery.append ("INSERT INTO destinatarios ");
    sbfQuery.append (" VALUES (" + request.getParameter ("n_entrada") + ",");
    sbfQuery.append ("'" + request.getParameter ("cod_entrada") + "')");
    stmt.executeUpdate (sbfQuery.toString ());
    strErrorMessage = "Cod. Dest. Successfull inserted";
    catch (Exception expGeneral)
    expGeneral.printStackTrace ();
    strErrorMessage = "" + expGeneral;
    finally
    if (stmt != null)
    stmt.close ();
    if (conn != null)
    conn.close ();
    %>
    <form method="get" action="Request.jsp">
    <table border="0" cellpadding="3" cellspacing="3" align="center">
    <tr>
    <td class="bolddark">N� Entrada :</td>
    <td><input type="text" name="n_entrada" class="formstyleShort" value=""</td>
    <td class="bolddark">C�digo Entrada:</td>
    <td><input type="text" name="cod_entrada" class="formstyleShort" value=""></td>
    </tr>
    <tr>
    <td colspan="4" align="left">
    <input type="submit" value="Inserir" class="formButton">
    <%-- Start of MR mr_smcoa_005 --%>
    </td>
    </tr>
    <tr>
    <td colspan="4" align="left">
    <FONT COLOR='RED'><B><%=strErrorMessage%></B></FONT>
    </td>
    </tr>
    </table>
    </BODY>
    </HTML>

  • New Scripts for Bridge posted

    From John Nack's blog: http://blogs.adobe.com/jnack/
    New scripts extend Bridge CS4
    Ever wanted to convert just about any file to JPEG from Bridge, or to attach browsed files to email? Photographer/scripter/Bridge quality engineer David Franzen has your back, having posted a set of great scripts to the Adobe Exchange. He writes:
    http://www.adobe.com/cfusion/exchange/index.cfm?event=productHome&exc=20

    Please post the solution how did you solve and what was the exact issue so that if anyone faces the same problem in future they can easily find answer from your post.
    Regards,
    Lalit Mohan Gupta.

  • Help - lost motherboard, auto save saved older script, newer script actually with older date.

    Adobe story team:
    I had a best script to date, on an older hard drive and the motherboard failed on my HP tower.  The sony laptop has a more recent dated script, but not the one I want.  How do I replace an "older" date script, one that I want for a newer script.  I don't want the newer script, I want the older one that is on a "pulled" hard drive again, from a tower that failed.
    Do I save the older file on an offline, using a new ID, new password, forever changed or what can I do?
    I need a fairly quick response, timing is critical.  HP tower is the problem.
    drgm
    thanks

    You have it half right.  the issue is the HP tower I had failed.  The mother board failed, I pulled the hard drive which is windows 7, I have a sony laptop which is in 32 bit vista, I am not sure if the different versions will be an issue.  can i take a file off the pulled hard drive and put it somewhere in a directory even with the different windows vista vs windows 7 if so which file should i copy on the pulled hard drive and where do i put it on the laptop, directory plus I will go back on online save it in the clouds and reformat the laptop and go to windows 7 then go back to adobe story  and go from there. thank you for your quick attention in this matter.
    Respectfully,
    drgm
    doug morrow
    Date: Tue, 24 May 2011 22:10:24 -0600
    From: [email protected]
    To: [email protected]
    Subject: Help - lost motherboard, auto save saved older script, newer script actually with older date.
    Hi
    I am not sure if I understand your problem correctly, but as far as I can make out you had been working on a script and then it got autosaved and now you wish to go back to the "older" script.
    In order to do so you may visit your document's history through the View->History option. There you will see older versions of your document (if you had not turned off autoversioning). You may then open an older version of the document from the panel by double clicking on it. Once on an older version you will get to see the "Make Latest" option. Clicking on that will make the "older" state of your document your "current" state and then you may proceed to edit the document as usual.
    I hope this is helpful to your situation. In case you face any issues in following the mentioned steps do let us know.
    Thanks
    Ali
    Adobe Story Team
    >

  • Where to add new script in an ActionScript file

    Hi,
    moved to AS3 forum
    I am a newbie using Flash Pro CS5 and have beginner skills in AS3.
    I am working on an eLearning lesson and already, with a lot of earlier help of others, and have an Action Script file to use for a white noise  animation in a learning lesson.
    I need to make a couple of additions but am very unfamiliar with adding  script to an Action Script file "package." Specifically, I want to add a  URL checking to the Action Script file so that students do not view the  Flash movie animation outside of the lesson which contains learning  materials and instructions for using the animation.
    I would like to add the following script but so far, I have been getting error messages:
    if ((this.loaderInfo.url).indexOf("mywebsite. com") == -1)
                navigateToURL (new URLRequest ("http://mywebsite.com/default.html"));
                else
    //run the animation
    The current AS3 in the .as file is:
    package
        import flash.display.Bitmap;
        import flash.display.BitmapData;
        import flash.display.Sprite;
        import flash.events.Event;
        import flash.events.MouseEvent;
        import flash.events.TimerEvent;
        import flash.geom.Matrix;
        import flash.geom.Point;
        import flash.utils.getTimer;
        import flash.utils.Timer;
        public class Main extends Sprite
            private var viewbmd:BitmapData;
            private var workbmd:BitmapData;
            private var scaleUp:Matrix;
            private var px:Vector.<uint>;
            private var timer:Timer;
            private var itsNoisy:Boolean;
            public function Main():void
                if (stage) init();
                else addEventListener(Event.ADDED_TO_STAGE, init);
            private function init(e:Event = null):void
                removeEventListener(Event.ADDED_TO_STAGE, init);
                viewbmd = new BitmapData(stage.stageWidth, stage.stageHeight, false);
                var view:Bitmap = new Bitmap(viewbmd);
                addChild(view);
                workbmd = new BitmapData(viewbmd.width / 8, viewbmd.height / 8, false);
                scaleUp = new Matrix();
                scaleUp.scale(8, 8);
                itsNoisy = true;
                stage.addEventListener(MouseEvent.CLICK, manageNoise);
                initNoise();
                timer = new Timer(50);
                timer.addEventListener(TimerEvent.TIMER, onTick);
                timer.start();
            private function initNoise():void {
                var array:Array = [];
                for (var i:uint = 0; i < 255; i++) {
                    array[i] = 0xffffff * (i % 2);
                workbmd.noise(getTimer(), 0, 255, 7, true);
                workbmd.paletteMap(workbmd, workbmd.rect, new Point(0, 0), array, array, array);
                px = workbmd.getVector(workbmd.rect);
            private function onTick(e:Event):void {
                flipSomePixels(160);
                viewbmd.draw(workbmd, scaleUp);
            private function flipSomePixels(howMany:int):void {
                for (var i:int = 0; i < howMany; i++){
                var pxidx:int = Math.floor(Math.random()*px.length);
                    px[pxidx] = ~px[pxidx]; //bitwise NOT to flip all bits
                workbmd.setVector(workbmd.rect, px);
            private function manageNoise(e:MouseEvent):void {
                itsNoisy ? timer.removeEventListener(TimerEvent.TIMER, onTick) : timer.addEventListener(TimerEvent.TIMER, onTick);
                itsNoisy = !itsNoisy;
    If anyone can take a look and please let me know how to add the  additional script to check for the URL (please be specific since I am a beginner in  scripting):
    I have tried everything that I can think of and am stuck.
    Thanks in advance for your help.
    Kind Regards,
    saratogacoach

    in your constructor:
    if (this.loaderInfo.url.indexOf("mywebsite.com") == -1) {
        navigateToURL(new URLRequest ("http://mywebsite.com/default.html"));
    } else {
        addEventListener(Event.ADDED_TO_STAGE, init);

  • E17 SVN Builder, a new script for pacman to keep your E17 up to date!

    I created a script called E17 SVN Builder because of what it does: create packages of E17 direct from SVN using the same PKGBUILDs as the Arch snapshots do. It came around because I was bitten by the Settings panel bug, which was fixed in upstream a few days after the SVN snapshot was taken. I wanted an up to date E17 install, so I created this script. Do NOT use it if you want your E17 install to be stable(r?)!
    I just thought I would share this script since it works for me. Perhaps people could help me improve it?
    Anyway, the dependancies right now are:
    yaourt-git (I need it to fetch the PKGBUILDs for the images from CVS)
    svn (to fetch the E17 code)
    TODO:
    - I need to get rid of the dependancy on yaourt-git by extracting the code for fetching the PKGBUILDs with it.
    - I want to be able to use flags with this.
    License: GPLv3
    Version: 0.2
    #!/bin/sh
    # * E17-svn-builder *
    # * A script to build E17 directly from SVN *
    # * By smartboyathome *
    VERSION=0.2
    usage(){
    echo 'E17 SVN Builder'
    echo 'This is version '$VERSION
    echo 'For now, this is a very simple script. It will fetch and build the PKGBUILDs for you. It is recommend you create a new directory to run this in, as it will pollute a directory with tons of files and folders.'
    echo '-h, --help; Show this message.'
    while [ "$#" -ne "0" ]; do
    case $1 in
    --help)
    usage
    exit 0
    -h)
    usage
    exit 0
    esac
    done
    buildpkg(){
    echo 'Building '$_E17PKG'...'
    # Check if the package directory exists, and if not, create it.
    if [ -d $_E17PKG ]; then
    cd $_E17PKG
    else
    mkdir $_E17PKG
    cd $_E17PKG
    fi
    # Check if the PKGBUILD exists, and if not, get it.
    if [ -d PKGBUILD ]; then
    yaourt -G $_E17PKG
    else
    mv PKGBUILD PKGBUILD.old
    yaourt -G $_E17PKG
    mv PKGBUILD PKGBUILD.new | mv PKGBUILD.old PKGBUILD
    cmp -s PKGBUILD PKGBUILD.new || mv PKGBUILD.new PKGBUILD
    fi
    makepkg PKGBUILD
    mv *.pkg.tar.gz ../
    cd ../
    # Make sure there aren't any left over environment variables from a previous run or program. This keeps things clean. :)
    unset _EXTRA
    unset _E17PKG
    echo 'Would you like to build the e17-extra-svn packages as well? (y/n)'
    read _EXTRA
    # Remove all packages
    rm *.pkg.tar.gz
    echo 'Beginning to build e17-svn packages...'
    #--- Begin building eina-svn ---
    _E17PKG=eina-svn
    buildpkg
    #--- Begin building eet-svn ---
    _E17PKG=eet-svn
    buildpkg
    #--- Begin building evas-svn ---
    _E17PKG=evas-svn
    buildpkg
    #--- Begin building ecore-svn ---
    _E17PKG=ecore-svn
    buildpkg
    #--- Begin building embryo-svn ---
    _E17PKG=embryo-svn
    buildpkg
    #--- Begin building edje-svn ---
    _E17PKG=edje-svn
    buildpkg
    #--- Begin building e_dbus-svn ---
    _E17PKG=e_dbus-svn
    buildpkg
    #--- Begin building efreet-svn ---
    _E17PKG=efreet-svn
    buildpkg
    #--- Begin building e-svn ---
    _E17PKG=e-svn
    buildpkg
    echo 'Finished building e17-svn packages!'
    if [ $EXTRA="y" ]; then
    echo 'Beginning to build e17-extra-svn packages...'
    #--- Begin building exml-svn ---
    _E17PKG=exml-svn
    buildpkg
    #--- Begin building emprint-svn ---
    _E17PKG=emprint-svn
    buildpkg
    #--- Begin building engrave-svn ---
    _E17PKG=engrave-svn
    buildpkg
    #--- Begin building epsilon-svn ---
    _E17PKG=epsilon-svn
    buildpkg
    #--- Begin building esmart-svn ---
    _E17PKG=esmart-svn
    buildpkg
    #--- Begin building etk-svn ---
    _E17PKG=etk-svn
    buildpkg
    #--- Begin building ewl-svn ---
    _E17PKG=ewl-svn
    buildpkg
    #--- Begin building e-modules-extra-svn ---
    _E17PKG=e-modules-extra-svn
    buildpkg
    #--- Begin building elitaire-svn ---
    _E17PKG=elitaire-svn
    buildpkg
    #--- Begin building entrance-svn ---
    _E17PKG=entrance-svn
    buildpkg
    #--- Begin building exhibit-svn ---
    _E17PKG=exhibit-svn
    buildpkg
    echo 'Finished building e17-extra-svn packages!'
    fi
    echo ''
    echo 'All package building is complete!'
    echo 'It is recommended you restart E17 after installing these packages.'
    echo 'To do this, go to menu > Enlightenment > Restart;'
    echo 'If you cant, then issue this command to restart it:'
    echo 'enlightenment_remote -restart'
    echo ''
    echo 'Have a nice day!'
    # Unsetting our variables so that we aren't messing with anything else. Also keeps things clean. :)
    unset _E17PKG
    unset _EXTRA
    exit 0
    Last edited by smartboyathome (2008-12-21 21:10:47)

    UPDATE! This package has had a couple changes:
    - Repetitive stuff was condensed into one piece of code. Now, its much easier to read.
    - I implemented extra differently. Instead of using a flag (which for some reason always sent me into a loop, I need more practice with scripting ), I just ask the person running the script whether they want to build extra as well as the core e17-svn stuff. Now it doesn't build them all automatically.

  • How to call photoshop new script from bridge tools menu

    i just create a 'Image Processor Outter Mode.jsx' script for photoshop and copy to ../photoshop cs3/presets/scripts/ folder.  i can see the menu item list in photoshop file->script->.
    but can't find it in the bridge cs3 menu. in bridge cs3 tools->photoshop. it only list the default script, image processor for example.
    i'm plan to search files in bridge and run all the result files with the new jsx. anybody can help me ?
    thanks.

    You would need to amend Photoshop-10.jsx on a pc this would be found in the following folder:-
    C:\Program Files\Common Files\Adobe\Startup Scripts CS3\Adobe Photoshop

  • New Scripting Features in CS5

    This discussion is for new features/improvements in CS5 related to scripting. For changes to the scripting DOM which effect older scripts please use this discussion instead.
    Appropriate topics are ones which revolve around the ESTK, InDesign's DOM, or new technologies (such as the new "CS Extension Builder"). Please try to keep the discussion on topic!
    Thanks,
    Harbs

    Dear Harbs,
    Really I appreciated publish for the CS5 Scripting Features, and really many thanks to you...
    Past some of the years I can used your coding as well as Dave's codes.
    Really very nice for this intro...
    Please let me know the DOM concepts in CS5 scripting architecture and new extra Features also [Scripting].
    Thanks & Regards
    T.R.Harihara SudhaN

  • What tot do with new scripts (ssodatan etc.) from Portal306-308upg_nt.zip archive

    Applying the upgrade script from Portal 3.0.7 to 3.0.8 as documented went without errors. But...
    The zip archive Portal306-308upg_nt.zip containing the Portal 308 upgrade scripts also has a lot of additional files, like ssodatan, ssodatax and much, much more, that are not installed into the iAS/Portal software tree.
    The scripts are newer and sometimes larger then the ones present.
    So, what to do with them? I couldn't find any info on these, so I guess it's OK to just toss them away? Probably not. But where should I put them - the directory structure in the archive is quite different from the installed software tree.
    Should I keep my existing scripts?
    If the new ones are not needed with a migrated portal, why are they included in the upgrade scripts archive?
    null

    Applying the upgrade script from Portal 3.0.7 to 3.0.8 as documented went without errors. But...
    The zip archive Portal306-308upg_nt.zip containing the Portal 308 upgrade scripts also has a lot of additional files, like ssodatan, ssodatax and much, much more, that are not installed into the iAS/Portal software tree.
    The scripts are newer and sometimes larger then the ones present.
    So, what to do with them? I couldn't find any info on these, so I guess it's OK to just toss them away? Probably not. But where should I put them - the directory structure in the archive is quite different from the installed software tree.
    Should I keep my existing scripts?
    If the new ones are not needed with a migrated portal, why are they included in the upgrade scripts archive?
    null

  • My new script vanished!

    Hello, I had been working on a re-write for two days of a script I renamed and resaved, and went online an hour or so in Adobe Story.  Suddenly my new version was gone.  Can you help me find it?

    Send me your adobe id please (at ‘ratnesh at adobe dot com’).

  • New-CMGlobalCondition unable to create New script Condition using Power Shell

    I am using config Manger 2012 and trying to use power shell cmdlet to create a new Global Condition using PowerShell but its not working for me using this
    Do not understand how to use that command any idea.
    New-CMGlobalCondition -DataType Boolean -DeviceType Windows -FilePath file.ps1 -Name test -ScriptLanguage PowerShell
    Error comes as 
    New-CMGlobalCondition : No object corresponds to the specified parameters.
    At line:1 char:1
    + New-CMGlobalCondition -DataType Boolean -DeviceType Windows -FilePath file.ps1 - ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : ObjectNotFound: (Microsoft.Confi...onditionCommand:NewGlobalConditionCommand) [New-CMGlobalCondition], I 
       temNotFoundException
        + FullyQualifiedErrorId : ItemNotFound,Microsoft.ConfigurationManagement.Cmdlets.AppModel.Commands.NewGlobalConditionCommand

    Hi,
    What's your version of SCCM? I ran this command line on SCCM 2012 R2 CU2.
    It seems SCCM 2012 R2 CU2 fixed New-CMGlobalCondition cmdlet issue.
    "The New-CMGlobalCondition cmdlet incorrectly requires use of the
    -WhereClause parameter."
    Description of Windows PowerShell changes in Cumulative Update 2 for System Center 2012 R2 Configuration Manager
    Best Regards,
    Joyce

Maybe you are looking for

  • Installation on Windows 64-bit

    I'm looking for instructions to install the 64-bit version on Windows. 1. I downloaded ofm_cep_win_11.1.1.4.0_64_disk1_1of1.zip 2. I extracted the ofm_cep_win_11.1.1.4.0_64_disk1_1of1.jar file from the zip file 3. I attempted to install using this co

  • Conversion problem in xml file

    Hi , I am updating the table reading an xml file. For the column whose datatype is raw, i read the value as string and convert to byte[] and update the database . I get an error value too large for the column. Is this because I'm converting the byte[

  • WAD 7: Hide Web Item depending on variable value

    Hi, I have two enterprise reports in a web template. The underlying queries have the same variable (calendar month). I want to achieve the following: In case the variable is < 4: Show report A, Hide report B In case the variable is >=4: Show report B

  • Diablo 2 and/or Doom 3 on a MacBook, good idea?

    Well, these are the only games I'd play on the Macbook, D2 for sure Doom 3 might be changed for Prey, but anyways, I read somewhere that the MacBook can use up to 420something Mbs of ram for video, so can it run smoothly or will it crash and burn? Sh

  • Sound and picture did not match?

    After recording the presentation it was OK and I could show it. But the fourth time I would show the presentation the sound and animation did not match the pictures? t.i. Keynote did not move to next picture (e.g. I was in picture No. 3 and it shoud