Using a brush within an action

I'm trying to find a way to incorporate a brush into my action without actually having to stop and using the brush and then continue. More specifically, I would like to apply the art history to the entire image as a step within an action, but I want it to automatically be applied without me having to actually brush it.
Is there a way to do this?

What about using snapshots, and copy/paste, instead of the history brush?
Or, you could use a path that crosses the canvas and stroke it with a very large history brush. To apply a path to an action use the action flyout menu "insert path".
I'd probably just copy/paste and arrange layers, avoiding the history panel altogether.

Similar Messages

  • Is it possible to use a Script within an action? - it doesn't seem to work...

    Is it possible to use a Script within an action? - it doesn't seem to work...
    I'm using the 'round any corner' script from SATO Hiroyuki..., and  I'd like to apply it to only one anchor point (on multiple boxes)

    An Action can call a script from the File>Scripts menu by means of the Add Menu Item Action step. But it will only work for the duration of your Illustrator work session. If you quit AI and then restart it, the Add Menu Item step will be blank. This bug has been reported for FOUR FULL VERSIONS of this sloppy program.
    However, if I am correctly understanding your description of what you are trying to automate, an Action will not be able to automate the selection of a particular anchorpoint in multiple paths. You'd have to make the selections all at first. Whether the script would then apply as desired to each path depends on how the script is written.
    JET

  • Using static Delegates within Struts' Action classes

    HI,
    I have a struts app. I also have several delegate classes that connect to ejbs (session beans) used within my action classes. I was thinking about putting the delegates into a helper class as static properties. That way my action classes can just reference the same delegate. I don't want to have to create a new instance of a delegate with every request an action class handles.
    However, I'm wondering if this will cause synchronization issues with multiple requests being handle, as our site handles a heavy load of requests. Any suggestions would be appreciated?

    static will work - but IMO here's a better option
    1. Have multiple delegates (one per module - one for login, another for business process1, another for business process2)
    Advantages : Cleaner segregation, easier maintenance and readability.
    2. Maintain the business delegates as individual classes and access them through instance variables from action.
    Advantages : All the advantages of inheritance, one business process may be the child of another - for example you can have a BasePaymentDelegate and then a specific CreditCardPaymentDelegate extending it. Similarly a PaypalDelegate may also extend BasePaymentDelegate and then common functionality can be moved to the Base class.
    3. Cache the delegate instance variables in your action - so you dont have to create one per invocation. Having said that, all the business delegate methods should be stateless - all the data to a business method should be passed as local params.
    Advantages : Local variables are thread safe as long as the object itself are thread safe. So no synchronization issues.
    Hope that helps some
    Ram.

  • Using a method of a class within an action event

    Good day.
    A beginner question.
    It is possible to use within an action event (triggered by a view of the button)
    instantiate a class from another java project and use a method?
    If it is possible how to do?
    Thank you

    hi carlos,
    yes it is possible. as a reference please have a look at this document How to Reference External JAR Files in Web Dynpro DC in SAP NW Portal 7.3
    basically the steps are the same (adding dependency, public parts, etc.) for a ejb or java project.
    regards,
    christian

  • Can a plugin like NIK Dfine be used within an action?

    I am trying to automated some of my mundane tasks in PS CC and I am wondering can a plugin like Nik Dfine be launched within an action? If so will it pause at the right point and then pressing OK continue through the remainder of the action.
    Thanks
    John

    PS will record the invoking of the filter without isszes, but it may not be able to look inside specifics of some effects. This is entirely up to whether the publishers chose to include this functionality and allow recording values in actions. Simply try.
    MYlenium

  • How do I use the brush tool on a video in cs6? It only stays on one frame?

    How do I get what I create with the brush tool to stay on every frame in my video? I've got some footage of a car trip and I'm trying to use the brush tool to make a super 8 looking border, but it vanishes when I play the video because its only on one frame.

    When Photoshop just won't work properly, try replacing the Preferences file by using this procedure:
    Open Photoshop and save your custom goodies. Choose Edit→Presets→Preset Manager to save sets of styles, brushes, and other such bits and pieces you created. Use the Save Actions command in the Actions palette menu to save any sets of custom Actions.
    Review your Preferences. Open Photoshop's Preferences and go through each pane, noting your preferred settings so that you can restore your work environment later.
    Quit Photoshop. You can close the program like this:
    On a Mac: Hold down Command+Shift+Option and restart Photoshop. When prompted, release the modifier keys and confirm, that yes, you do want to replace the Photoshop settings.
    On a PC: Restart Photoshop; immediately press and hold down Ctrl+Shift+Alt. When prompted, release the modifier keys and confirm, that yes, you do want to replace the Photoshop settings.

  • Using APEX_MAIL from within a procedure invoked from DBMS_JOB

    I have done a lot of googling and wasted a couple of days getting nowhere and would appreciate some help. But I do know that in order to use APEX_MAIL from within a DBMS_JOB that I should
    "In order to call the APEX_MAIL package from outside the context of an Application Express application, you must call apex_util.set_security_group_id as in the following example:
    for c1 in (
    select workspace_id
    from apex_applications
    where application_id = p_app_id )
    loop
    apex_util.set_security_group_id(p_security_group_id =>
    c1.workspace_id);
    end loop;
    I have created a procedure that includes the above (look towards the end)
    create or replace procedure VACANCIES_MAILOUT
    (p_application_nbr number,
    p_page_nbr number,
    p_sender varchar2)
    AS
    Purpose: Email all people registerd in MAILMAN [email protected]
    with details of any new vacancies that started listing today.
    Exception
    when no_data_found
    then null;
    when others then raise;
    l_body CLOB;
    l_body_html CLOB;
    l_vacancy_desc VARCHAR2(350);
    to_headline varchar2(200);
    to_org varchar2(100);
    l_vacancies_desc varchar2(2000);
    to_workspace_id number(22);
    CURSOR vacancies_data IS
    select DISTINCT v.headline to_headline,
    ou.org_name to_org
    from VACANCIES v,
    Org_UNITS ou
    where
    ou.org_numb = v.Org_Numb
    and v.public_email_sent_date is Null
    Order by ou.org_name, v.headline;
    BEGIN
    BEGIN
    FOR vacancies_rec in vacancies_data
    -- build a list of vacancies
    loop
    BEGIN
    l_vacancy_desc := '<br><b>' ||
    vacancies_rec.to_org || '<br>' ||
    vacancies_rec.to_headline || '</b><br>';
    -- l_vacancy_desc :=
    -- vacancies_rec.to_org || ' - ' ||
    -- vacancies_rec.to_headline ;
    l_vacancies_desc := l_vacancies_desc || l_vacancy_desc;
    END;
    END LOOP;
    END;
    l_body := 'To view the content of this message, please use an HTML enabled mail client.'||utl_tcp.crlf;
    l_body_html :=
    '<html>
    <head>
    <style type="text/css">
    body{font-family:  Verdana, Arial, sans-serif;
                                   font-size:11pt;
                                   margin:30px;
                                   background-color:white;}
    span.sig{font-style:italic;
    font-weight:bold;
    color:#811919;}
    </style>
    </head>
    <body>'||utl_tcp.crlf;
    l_body_html := l_body_html || l_vacancies_desc
    || '<p>-----------------------------------------------------------------------------------------------------------------</strong></p>'
    ||utl_tcp.crlf
    || '<p>The above new vacancies have been posted on the <strong>Jobs At Murdoch</strong> website.</p>'
    ||utl_tcp.crlf
    ||'<p>For futher information about these vacancies, please select the following link</p>'
    ||utl_tcp.crlf
    ||'<p> Jobs At Murdoch </p>'
    ||utl_tcp.crlf
    ||'<p></p>'
    ||utl_tcp.crlf;
    l_body_html := l_body_html
    ||' Regards
    '||utl_tcp.crlf
    ||' <span class="sig">Office of Human Resources</span>
    '||utl_tcp.crlf;
    for c1 in (
    select workspace_id
    from apex_applications
    where application_id = 1901)
    loop
    apex_util.set_security_group_id(p_security_group_id => c1.workspace_id);
    end loop;
    apex_mail.send(
    p_to => '[email protected]',
    p_from => '[email protected]',
    p_body => l_body,
    p_body_html => l_body_html,
    p_subj => 'Jobs At Murdoch - new vacancy(s) listed');
    update VACANCIES
    set public_email_sent_date = trunc(sysdate,'DDD')
    where public_email_sent_date is null;
    commit;
    END;
    but still get the error
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    ORACLE_HOME = /oracle
    System name: Linux
    Node name: node
    Release: 2.6.18-194.17.1.el5
    Version: #1 SMP Mon Sep 20 07:12:06 EDT 2010
    Machine: x86_64
    Instance name: instance1
    Redo thread mounted by this instance: 1
    Oracle process number: 25
    Unix process pid: 5092, image: (J000)
    *** 2011-07-12 09:45:03.637
    *** SESSION ID:(125.50849) 2011-07-12 09:45:03.637
    *** CLIENT ID:() 2011-07-12 09:45:03.637
    *** SERVICE NAME:(SYS$USERS) 2011-07-12 09:45:03.637
    *** MODULE NAME:() 2011-07-12 09:45:03.637
    *** ACTION NAME:() 2011-07-12 09:45:03.637
    ORA-12012: error on auto execute of job 19039
    ORA-20001: This procedure must be invoked from within an application session.
    ORA-06512: at "APEX_040000.WWV_FLOW_MAIL", line 290
    ORA-06512: at "APEX_040000.WWV_FLOW_MAIL", line 325
    ORA-06512: at "APEX_040000.WWV_FLOW_MAIL", line 367
    ORA-06512: at "HRSMENU_TEST.VACANCIES_MAILOUT", line 94
    ORA-06512: at line 1
    Can someone please tell me what what stupid thing I am doing wrong? The procedure worked when invokded from SQL Workshop but fails in a DBMS_JOB.
    much thanks Peter

    I think that might help...
    http://www.easyapex.com/index.php?p=502
    Thanks to EasyApex..
    LK

  • Retrieve alert values for use as parameter in corrective action sql script

    I am trying to write a corrective action sql script to kill a session that is blocking other sessions. I have the "blocking session count" metric set and the alert is firing correctly.
    Is there any way to retrieve the sid and serial number from the alert generated and use it in a corrective action sql script?
    Here is the alert generated:
    Target Name=myproddb.world
    Target Type=Database Instance
    Host=myprodserver
    Metric=Blocking Session Count
    Blocking Session ID=SID: 522 Serial#: 5228
    Timestamp=Mar 4, 2008 5:57:12 PM EST
    Severity=Warning
    Message=Session 522 is blocking 1 other sessions
    Notification Rule Name=Testing Corrective actions
    Notification Rule Owner=sysman
    Clearly the sid, and serial # is contained within the alert Message field
    what I want to write for the sql script is :
    alter system kill session '%sid%,%serial_no%' immediate;
    and have GC pass in the sid and serial_no to the script.
    The "Target Properties" listed on the right of the Edit Corrective Action screen lists minimal details pertaining to the alert and certainly not the session sid, serial no.
    Generically, is there any way to retrieve the values from an alert and use them in a corrective action script or job?
    I've looked into getting the values from the mgmt$alert_history table, but I'm hoping that GC can pass the values to the sql script.
    thanks in advance for your help.

    Hi
    You can implementing a procedure like this.
    1. When a block session count alarms occurs, there is a column in the v$lock that you can examine.
    #!/bin/ksh
    #kill_block_session.sh
    #first export your variables
    export ORACLE_HOME=/oracle/product/10.2.0.3
    export ORACLE_SID=SIDNAME
    $ORACLE_HOME/bin/sqlplus "/ as sysdba" << EOF
    execute immediate killed_blocks;
    EOF
    # end
    The killed_blocks is a procedure:
    create procedure
    declare
    v_sid varchar2(15);
    v_serial varchar2(15);
    -- now a sql query that retrieve the sid and serial
    -- you can obtain these values from v$session and v$lock
    select vs.sid,vs.serial into v_sid,v_serial
    from v$session vs,v$lock vl
    where vs.sid=vl.sid
    and vl.block >0
    -- After this, you execute a dbms_put line with these
    -- values
    But you understant that this response action is very dangerous, because its possible that you kill sessions that the blocking are transitient.
    You must examine your enviroment and your application and establish the metric like UDM and not for only session blocking count.
    You must to see:
    - The type of block
    - The ctime time in the v$lock for to understatn the amount of time to determine that the block is need killed.
    - In my opinion you need a special UDM and deactivate the blocking sesion count
    If you want help to create this UDM send me a mail to [email protected]
    Regards
    Robert

  • CS3 JS Running an JS within an Action?

    I realize that I can create a script that will through an alert as shown below and can be created as an action. So the process would be to run the action and the script will display the alert. If the user clicks the Yes button the script would run the next action. If they click No than the process would stop to allow the user to fix the issue.
    var myDialog = new Window('dialog', ' Details');
    myDialog.fDetails = myDialog.add('panel',undefined,'Has this file been processed correctly?');
    myDialog.fDetails.Btngroup = myDialog.fDetails.add('group');
    myDialog.fDetails.Btngroup.orientation = 'row';
    myDialog.fDetails.Btngroup.Ybtn = myDialog.fDetails.Btngroup.add('button', undefined, 'Yes');
    myDialog.fDetails.Btngroup.Nbtn = myDialog.fDetails.Btngroup.add('button', undefined, 'No');
    myDialog.fDetails.Btngroup.Ybtn.onClick = function() {
        //continue and run this action
    myDialog.fDetails.Btngroup.Nbtn.onClick = function(){
       //does these changes
    Would it be possible to add a script within an action and so if the result of the alert is Yes continue with the action is the result is No stop the action.
    Cheers, John.

    I do agree the logical process would be to have the entire process in a script.  What I'm doing is putting a workflow process in before an action the guys here use. Rather than take away the ability for them to adjust the action currently used, as they would not be able to edit the JS I thought having both could work. The work around has been to create an action from the JS that if they click on the Yes then the script will call the next action. I would of liked to have the users only click on one action and not risk then going to the second action first which checks the workflow.

  • Can't Use Shortcuts with Photoshop Preset Actions

    I haven't been able to get my shortcuts to work in CS4 when I set them for individual actions within the actions palette. I do understand how to both set actions and their shortcuts. I also understand how to use the shortcuts. I have successfully done each of the processes in the past, but haven't been able to get them to work since installing them on my new computer.
    For example, I have a photo effect I like and use frequently, so I created an action for it. I gave it the shortcut (Command + F1). When I press the Command and F1 buttons, nothing happens. If I change the shortcut to (Shift + F1), when I press the appropriate keys, it simply changes the brightness of my screen, as F1 on my keyboard also decreases the brightness of my screen.
    I'd definitely appreciate any ideas!
    Thank you!

    Mac OS is overriding the function keys. You need to hold down the "fn" key (in the lower left of the keyboard on Macbook Pros) the Function key (in the group of keys between the main keyboard and number keys on an extended Mac keyboard) in addition to the function key in order for it to work.

  • Need Help! PS CS3 have Error when using custom brushes.

    Hello Everyone,
    First, please forgive my bad english!
    My prpblem is, that Photoshop CS3 (Part of Adobe Premium Suite 3, Design Premium package) always crash when I using the brushes.
    I can use any other tool and it works great. But at the moment I use a brush for two three strokes Photoshop have an Error.
    What I did. Delete all Brushes, save new Brushes, just use original Brushes. create new Brushes, that all didn't work. PS crashes also after I did all that stuff.
    Hopefully somebody can help me, its very frustrated. Because Im a concept artist and I only need PS for painting. PS have this problem by the way
    from beginn on I installed the Premium Suite on my iMac.
    Thank's and kind regards from Zurich

    What are your performance preferences?
    Is the Brush tip extremely large?
    Boilerplate-text:
    Are Photoshop and OS fully updated?
    As with all unexplainable Photoshop-problems you might try trashing the prefs (after making sure all customized presets like Actions, Patterns, Brushes etc. have been saved and making a note of the Preferences you’ve changed) by pressing command-alt-shift on starting the program or starting from a new user-account.
    System Maintenance (repairing permissions, purging PRAM, running cron-scripts, cleaning caches, etc.) might also be beneficial, Onyx has been recommended for such tasks.
    http://www.apple.com/downloads/macosx/system_disk_utilities/onyx.html
    Weeding out bad fonts never seems to be a bad idea, either. (Validate your fonts in Font Book and remove the bad ones.)
    If 3rd party plug-ins are installed try disabling them to verify if one of those may be responsible for the problem.

  • How do I use the brush to paint in latest version of Photoshop CC ?  I have a MAC with OS 10.10.2

    How do I use the brush to paint in latest version of Photoshop CC ?  I have a MAC with OS 10.10.2. 
    I clicked the brush tool, then clicked on color swatch that brought me to the colors and clicked OL... but not able to get the color I need.

    Well if I follow him, he creates an Exposure Adjustment Layer.
    Then he cranks up the Exposure, lightening the entire body, which he does not want. It's only the head.
    So leaving the Exposure set to where he put it, he selects that adjustment layer, clicks on that white thumbnail mask first, then paints
    using the brush and black. What this does is "hides" or Masks the exposure effect where he paints, it doesn't paint the picture black.
    He finds having to "mask" the entire body a lot of work. So he changes the mask to black by inverting it, and changes the swatch to white.
    Then being sure the black mask thumbnail is selected, he paints the head with the white color, punching a hole in the mask so the exposure setting comes through on the face.
    Does that make sense?

  • How to use a back button in action pages?

    Hi all,
    I have created a user login page,home page and user profile page.
    If the user provide correct username and password in the login page he will be taken to home page.
    In the home page he will be having his username and a link to view his profile.
    When the user click on the link "My Profile(user profile)" he wil be taken to that page.
    In my profile page the user can edit only his firstname,lastname and password .
    On the user profile page i have placed a Back Button(using javascript: on onclick event i have used history.back()) to go back to home page after editing his profile.
    If the user edit his profile for n-number of times then atlast if he wants to go back to home page-then he wil cilck the back button.
    Now the problem occurs like the back button not going to home page and it simply going back with the edited history.
    How to use a back button in action pages; without repeating the actions done on the page; how to redirect to the users home page?
    I simply used the hyperlink in userprofile page to go to home page but when i click onit it is displaying blank home page.
    I'm using hibernate orm mapping; cflogin and cflogout tags.
    Any help appreciated,
    Chandru P

    chandrup wrote:
    Hi Dan,
    Dan Bracuk wrote:
    Use an anchor tag.
    I simply used the hyperlink(<a href="home.cfm">Home</a>) in userprofile page to go to home page but when i click onit it is displaying blank home page.
    I can see your problem. You may use javascript:history.go(-1), javascript:history.go(-2), ..., to go back one page, two pages, and so on. But how does one go back an arbitrary n pages? The link href="home.cfm" isn't a good solution for the browser. It makes a new call to the server which, as you may have discovered, can overwrite all the changes made at the browser. 
    You should use the Javascript variable history.length. If you open n links in succession, starting from page0.cfm, then the browser holds the value of history.length as n. So, experiment with something like
    <a href="javascript:history.go(-history.length)">Go home</a>
    or
    <a href="javascript:history.go(-history.length+1)">Go home</a>

  • LR 3.5 "Stops working" when using the brush tool.

    I am not able to use the brush tool when 'developing' any image without the message "Lightroom has stopped working" coming up. I have tried developing other images with the same result. As soon as I try to brush it crashes. This has only been the case since I upgraded to LR 3.5 recently. Has anyone else experienced the same?

    Mmmmm, firts I would suggest removing the Prefernce file by shifting it to the desktop (with Lr closed).

  • (Photoshop CS2) It crashes every time I use my brush tool for a long time. Help?

    Hi,
    I have recently been having some trouble with my photoshop cs2 (it isn't my computer because it is easily quicker them the majority of computer I have been on and it's only a recent problem). I can use all my tools very easily without having any little pauses and it wont crash, but with my brush tool, after using the brush for a long stroke without unclicking it crashes. Well, it pauses for 2 mins- 4 hours (wont let me click on another tool or carry on drawing or select layers and such). Since I am an artist and work on photoshop for a living , not being able to use the brush tool is a huge problem for me. I have no intension of updating my software to cs3/4/5, (as I don't want to pay for all that software and then find that it crashes again). I recently got my new bamboo graphics tablet and it is even slower when using that. This is also a very recent problem so I was wondering if anyone else had had this before and found a way around it?
    Thanks!,
    -Lithia

    I actually believe there are updates for Photoshop itself, not through Mac Software Update.  You should check if there are any updates for the product on this website.  Photoshop also tends to glitch sometimes.  For example, on PSCS4 for Mac, after opening the program, and changing the toolbar to the traditional 2-column style, the quck mask button is totally cut off unless I switch it to the 2-column style twice.

Maybe you are looking for

  • After updating to 9.0.1, I have LOTS of problems. Bookmarks, google search, and more.

    1. The icons accompanying the bookmarks in the list disappeared. 2. The former method of ordering the bookmarks disappeared and I cannot find any new one. The list of bookmarks in the catalogue (library? I use the program in Spanish) has become incom

  • Time Machine getting stuck on random hourly backups?? Please help!

    I set up Time Machine the yesterday, it compleated it's initial backup fine, and performed about 10 or so hourly backups, then randomly on one of it's hourly backups it got stuck. It never actually started the backup. The preferences said it was back

  • Warning triangles on brush properties...

    i was doodling along just fine with Ps CC 2014, when my brush properties suddenly spawned warning triangle. brush pressure, etc. no longer works. what happened? i've asked this question a few times now, but no response. worse, when i look through pos

  • How to use function module SAPGUI_SET_FUNCTIONCODE?

    Hi all, I understand that the function module SAPGUI_SET_FUNCTIONCODE is being used to manully trigger the PAI/PBO at the POV. However, I was not able to get it to even trigger anything. Need suggestion as of how to use this function module. I try to

  • Database instance on one node

    Hi Suppose i have two nodes in my RAC. Is it possible to have two differents instances of database in one of my node ? I mean for example, one instance for the test schema and one for the production schema ?? Thanks for answer