How can I Automate a Logo insert

Ok, I know how to automate the insert of a logo,  and do a batch of photos. My problem is I have thousands of photos that  i want to add my logo to, but the photos are of different sizes, so what happens when i run this action, it  will move the logo to the position I need it, but the size of the logo does not  correspond to the size of the photo, sometimes the logo might be to large or maybe to  small. Does anyone know how to make the logo resize itself to fit  properly into the photo during a batch operation?
I am using CS2

This video might put you on the right track.
I'm not sure about the sizing bit though.
http://av.adobe.com/russellbrown/BrandingSM.mov
The action is here:
http://www.russellbrown.com/images/tips_downloads/Watermark_Action.atn.zip

Similar Messages

  • When typing in a number, how can I automatically have it insert a / (slash)?

    I've been trying to figure out how to automatcially insert a forward slash (/) after I have entered a 6-digit number.  I'd like to have the slash inserted after the 3 number from the left?   For example; if after entering 123456 the expected outcome would be 123/456.  Any help would be great appreciated. I'd like to give away some points if anyone has the correct answer!!!   

    Thanks for the quick reply.  Basically, what I need is to be able to enter a fixed 6-digit number between 0-9 and then a slash would automatically be inserted.  It would only be numerical and no letters or special characters.  To quickly fill you in on what I"m trying to attain, I have created a form with text fields and on one of the fields there is one called, "work location".  Here the room and cubicle location would be entered.  Each other these locations is designated a 3-digit.  For example:  123 would be the room number and the 456 would be the 3-digit cubicle location. So, instead of enter the first three numbers than manually entering the rest of the numbers, I'd like to see if it's possible to just enter the 6 numbers instead than the forward slash would be inserted in its proper place.  I hope I didn't confuse you.  Once again any advice (or maybe a sample script) would be incredibly helpful,

  • How / can I have jpg logo objects used on reports automatically updated

    How / can I have jpg logo objects used on reports automatically updated after making changes to the repository copy of the jpg logo object in the repository?   The reports are in the enterprise items folder of the repository and the logo.jpg file is in a subfolder of repository items.  I made changes but the changes seem to apply only after I set my options in crystal reports and open the actual rpt file itself. 
    Is there a way to have the changes to the logo show / apply in all reports that have the repository item logo inserted into it without having to open every rpt file in the repository?

    Yes, I understand that...  the problem I was having was that check box being unchecked whenever an unrelated change was made to rpt file...  I was able to ensure that it remained checked by doing save as to the rpt file and making sure the "enable repository refresh" box was checked and replacing the file when prompted upons saving the rpt file...

  • How can I automatically prepend comment blocks to stored procedures?

    How can I automatically prepend comment blocks to stored procedures?
    In my organization, the standard is to comment all stored procedures with a comment block that looks like this:
    /*-- =============================================
    -- Created by: <Owner>
    -- Created date: 01/08/2012
    -- Purpose: Inserts new setting value, code and description
    -- Modifications:
    -- Modified by: <Owner>
    -- Modification date: 01/08/2012
    -- Purpose: Inserts new setting value, code and description
    -- =============================================*/Thanks.
    select * from v$version;
    BANNER                                                                        
    Oracle Database 11g Express Edition Release 11.2.0.2.0 - Production             
    PL/SQL Release 11.2.0.2.0 - Production                                          
    CORE     11.2.0.2.0     Production  Edited by: xDeviates on 01-ago-2012 7:37
    Edited by: xDeviates on 01-ago-2012 8:31

    Hi,
    If I want to write a package called pk_fubar, I copy the following script and call it fubar.sql
    --     ==========  package_name.sql starts here  ==========
    --     Package_Name.sql
    SPOOL     &home_dir\package_name.lst
    PROMPT     .     H   H  EEEE     A    DDDD
    PROMPT     .     H   H  E       A A   D   D
    PROMPT     .     HHHHH  EEE    A   A  D   D
    PROMPT     .     H   H  E      AAAAA  D   D
    PROMPT     .     H   H  EEEEE  A   A  DDDD
    @@package_name_head
    PROMPT     .     BBBB    OOO   DDDD   Y   Y
    PROMPT     .     B   B  O   O  D   D   Y Y
    PROMPT     .     BBBB   O   O  D   D    Y
    PROMPT     .     B   B  O   O  D   D    Y
    PROMPT     .     BBBB    OOO   DDDD     Y
    @@package_name_body
    SPOOL     OFF
    @@package_name_test
    -- EXIT
    --     ==========  package_name_head.sql starts here  ==========
    CREATE OR REPLACE PACKAGE     pk_package_name
    AS
    FUNCTION     sign_in
    (     in_user_name     IN     VARCHAR2
    ,     in_password_txt     IN     VARCHAR2
    RETURN     PLS_INTEGER
    END     pk_package_name;
    SHOW ERRORS;
    GRANT     EXECUTE     ON pk_package_name     TO schema_name_some_role;
    --     ==========  package_name_body.sql starts here  ==========
    CREATE OR REPLACE PACKAGE BODY     pk_package_name
    AS
    --  Procedures related to SCHEMA_NAME ...
    --  2012 July 23 -- Package started with proc_x.  (Frank Kulash)
    --     **   local procedures and variables   **
    --     **   x   **
    --     **   initialization section   **
    --     The following code is executed once per session, when the package is loaded.
    BEGIN
         set_var     ( 'DT_FMT_TXT'
              , 'YYYY-MM-DD HH24:MI:SS'
    END     pk_package_name;
    SHOW ERRORS;
    --     ==========  package_name_test.sql starts here  ==========
    --     PACKAGE_NAME_TEST.SQL -- Test procedures in schema_name.pk_package_name
    SET     DOCUMENT     OFF
    SET     SERVEROUTPUT     ON     SIZE     10000
    ALTER SESSION     SET NLS_DATE_FORMAT = 'DD-Mon-YYYY HH24:MI:SS';
    SPOOL     @@package_name_test.lst
    PROMPT
    PROMPT     ***********************
    PROMPT     **  Testing x  **
    PROMPT     ***********************
    PROMPT
    SPOOL     OFFThen I replace package_name with fubar, and schema_name with the actual schema name. Finally, I cut off parts from the end to create fubar_test.sql, fubar_body.sql and fubar_head.sql. You could easily include a multi-line procedure comment template in this script. Every time you add a procedure or function, ciopy and paste that comment template, and then modify the copy.

  • How can I automatically close a dialog box using Javascript after I click the OK button to submit it?

    How can I automatically close a dialog box using Javascript after I click the OK button to submit it? I don't want to have to X out of the dialog box after I am done.
    Thanks
    Linda

    JS can not interact with open dialogs in any way, unless it's a dialog
    created in JS using the Dialog object.
    On Thu, Jul 24, 2014 at 11:13 PM, lindaeliseruble <[email protected]>

  • How can I change the logo in a template?

    Hello everyone,
    I have searched the Oracle Reports documentation, these forums and the Metalink forums, but I really can't find an answer to what should be a really simple question. My question is: How can I set a logo (an image) in a report template (*.tdf file)? Defining things like a company logo is exactly the purpose of using templates, I think, so I find it strange that is is so difficult to do this. I must be missing something very obvious...
    All help will be much appreciated!
    By the way, I use reports builder 10.1.2.
    Regards,
    Frans

    I have got it!
    In the template editor, there is a button 'Edit Margin' which you can press to edit the margin of a template. This is needed because the log is a part of the report margin.
    Bye,
    Frans

  • How can I use multiple row insert or update into DB in JSP?

    Hi all,
    pls help for my question.
    "How can I use multiple rows insert or update into DB in JSP?"
    I mean I will insert or update the multiple records like grid component. All the data I enter will go into the DB.
    With thanks,

    That isn't true. Different SQL databases have
    different capabilities and use different syntax, That's true - every database has its own quirks and extensions. No disagreement there. But they all follow ANSI SQL for CRUD operations. Since the OP said they wanted to do INSERTs and UPDATEs in batches, I assumed that ANSI SQL was sufficient.
    I'd argue that it's best to use ANSI SQL as much as possible, especially if you want your JDBC code to be portable between databases.
    and there are also a lot of different ways of talking to
    SQL databases that are possible in JSP, from using
    plain old java.sql.* in scriptlets to using the
    jstlsql taglib. I've done maintenance on both, and
    they are as different as night and day.Right, because you don't maintain JSP and Java classes the same way. No news there. Both java.sql and JSTL sql taglib are both based on SQL and JDBC. Same difference, except that one uses tags and the other doesn't. Both are Java JDBC code in the end.
    Well, sure. As long as you only want to update rows
    with the same value in column 2. I had the impression
    he wanted to update a whole table. If he only meant
    update all rows with the same value in a given column
    with the same value, that's trivial. All updates do
    that. But as far as I know there's know way to update
    more than one row where the values are different.I used this as an example to demonstrate that it's possible to UPDATE more than one row at a time. If I have 1,000 rows, and each one is a separate UPDATE statement that's unique from all the others, I guess I'd have to write 1,000 UPDATE statements. It's possible to have them all either succeed or fail as a single unit of work. I'm pointing out transaction, because they weren't coming up in the discussion.
    Unless you're using MySQL, for instance. I only have
    experience with MySQL and M$ SQL Server, so I don't
    know what PostgreSQL, Oracle, Sybase, DB2 and all the
    rest are capable of, but I know for sure that MySQL
    can insert multiple rows while SQL Server can't (or at
    least I've never seen the syntax for doing it if it
    does).Right, but this syntax seems to be specific to MySQL The moment you use it, you're locked into MySQL. There are other ways to accomplish the same thing with ANSI SQL.
    Don't assume that all SQL databases are the same.
    They're not, and it can really screw you up badly if
    you assume you can deploy a project you've developed
    with one database in an environment where you have to
    use a different one. Even different versions of the
    same database can have huge differences. I recommend
    you get a copy of the O'Reilly book, SQL in a
    Nutshell. It covers the most common DBMSes and does a
    good job of pointing out the differences.Yes, I understand that.
    It's funny that you're telling me not to assume that all SQL databases are the same. You're the one who's proposing that the OP use a MySQL-specific extension.
    I haven't looked at the MySQL docs to find out how the syntax you're suggesting works. What if one value set INSERT succeeds and the next one fails? Does MySQL roll back the successful INSERT? Is the unit of work under the JDBC driver's control with autoCommit?
    The OP is free to follow your suggestion. I'm pointing out that there are transactions for units of work and ANSI SQL ways to accomplish the same thing.

  • How can I (automatically) import new photos of the photostream on my local disc (Mac)? Don't want to use new icloud service. Simply import.

    New Photo app on Mac.
    How can I (automatically) import new photos of the photo stream on my local disc (Mac)? Don't want to use new icloud service. Simply import.
    With iPhoto every new photo was automatically imported and saved on my local disk (with "full resolution" that's what I only need). In the new photo app I have still my photo stream and when I move a photo (drag and drop from the photo stream) to a new album it indicates a (plus). My understanding is that the photo is now copied to my local disk. But when I deleted the photo in the photo stream it was also deleted in the album !?
    If that is the case I can use the photo stream only until I reach the max of 1.000 photos, then I have to delete photos and I will have no copy left.
    How can I "physically" copy a photo of the photo stream to my local disk? I just want to "transfer" all pictures taken with Ipads, Iphones to my central storage on the Mac. Please don't propose to connect it via iTunes (cable) to the Mac.
    Any other suggestions?
    thx
    -Tom

    The amazing device cannot do it because no amazing developer has written an app for it.  There is some interest, others have asked, but i have a hunch that the market is fairly limited, and no developer has jumped at the chance just yet.
    Any sort of tethered approach means try to feed the material to the pad thru the cck.  Which means the app would have to use the allowed/existing cck pathway in a manner that does not violate the sandbox rules.  That may be the problem.

  • How can I add a logo to the bottom right of a video?  I have a jpg logo to use.

    How can I add a logo to bottom right of video, using a jpg?

    Even though David's answer is for Final Cut Express, the same answer should apply for FCP X only you would need to place the "track" ... let's say clip ... above the clip it is to overlay.  Thus it can either be a storyline or a connected clip but it should reside above the primary storyline assumming that is where the video is you want your logo to overlay.  As David points out, the type of graphic file should be one that allows the transparent background feature such as a PNG or PSD, etc.  Of course, if your logo has a solid box background, you may be able to simply scale it down and position it to the right place and overlay it over your other video clip using the method described above.  Hope this helps.
    stephen

  • When using Mavericks, how can I automatically replace 'i' with 'I' when typing?

    When using Mavericks, how can I automatically replace 'i' with 'I' when typing?
    It was easy to do prior to mavericks using system preferences (language and text), but now I can only submit a 2 letter word to replace, not a 1 letter word. I have tried using a space but it doesn't allow that. I would assume that most people would love to be able to type quickly without having to make uppercase I all the time (first world problem i know), so I can't understand why apple have removed this feature.

    There is the shift key, or text replacement approach, providing you have enabled two things:
    Edit > Substitution > √ Text Replacement
    System Preferences > Keyboard > TextClick + to add a replacement
    Replaceii[spacebar]
    With
    I[spacebar]
    Press return
    Quit System Preferences
    Now, when you type ii, you will see a pop-up offering I.
    In the OS X App Store, search for WordService. This free collection of Services will enable you to just type your content, select it, and then choose the Service item, “Initial Caps of Sentences.” It does what it says.

  • My iphone 5 keeps asking on sign in to icloud but i forgot my password. it keeps on asking even if i cancel it. how can i removed this logo?

    my iphone 5 keeps asking on sign in to icloud but i forgot my password. it keeps on asking even if i cancel it. how can i removed this logo?

    Please do not double post.
    Try here:
    https://iforgot.apple.com

  • How can I get Siri to insert a pause (,) when voice-dialing a number?

    I join a lot of conference calls with my iPhone.  The conference bridges have phone numbers that follow this pattern:
    (123) 456-7890,1234567#
    How can I get Siri to insert the pause (,) character, and the pound (hash) sign, into the phone number when voice-dialing?
    When I say "pause" Siri inserts the word "pause" as a literal string: 
         Example: (123) 456-7890 pause 1234567
    When I say "comma" Siri will insert a comma (,) into the dial string, but the Phone app ignores everything after the comma and does not dial it:
         Example: (123) 456-7890, 1234567   results in only this being dialed:  (123) 456-7890
    When I say "pound" or "hash" Siri inserts the words "pound" or "hash" as literal strings:
         Example: (123) 456-7890, 1234567 pound     instead of (123) 456-7890,1234567#

    If it is your own conference bridge you can create a new contact named "My Bridge" and enter your 1800 number along with a "wait" command and pass code and #.  It would look something like this 1-800-555-5555;12345678#.  This way when you tell Siri to call "My Bridge" she'll dial and then you'll notice an option in the lower left to dial the pass code.  Press that and you're all set. You can do the same for frequent conference bridges you connect to.  Hope this helps.

  • How can i use BAPI to insert a few records  into standard table

    Can anyone help me with how can i use BAPI to insert some records into a standard table from an internal table?

    Hi,
    First of All try to Explain your Question first.
    This is a general question without mentioning the Table you want to Update.
    Please give the details before posting a question  so it will help people to understand your Problem.
    Regards
    Sandipan

  • How can i automate .pdf output and organize by color/bw?

    how can i "automate" multi-page .pdf output to preflight/imposition software workflow, organized by color/bw?
    basically what i'm trying to do is create a simple output function from InDesign that allows the user to just export a multi-page .pdf into a hot folder and on through preflight and imposition software. i want to be able to tell the hot folder which pages are color -so it can separate, rename and direct color pages to a color queue and b/w pages to a b/w queue.
    i've researched indesign distiller presets and the Acrobat JDF but the JDF isn't really meant for this exact purpose and doesn't help reduce the number of steps currently necessary to manually output/rename/etc.
    is there another way that i can embed information into a .pdf that could be read by a hot folder?

    You might check out this third-party plug-in for InDesign. It may or may not help you (I've never used it). I just saw it on the new Adobe Exchange (beta in Adobe Labs). Here's the description:
    Output Factory automates printing and exporting from Adobe InDesign. Export as single pages with variable file names, output layer versions, update modified links on the fly, preflight InDesign files before output, output to several format at once and much more.
    Just select the documents, adjust settings and Output Factory will do the rest for you. Keep working with other programs while Output Factory processes InDesign files in the background. Or leave it working overnight to output hundreds of documents, and the job will be done when you return in the morning.
    Key features:
    • Output multiple InDesign files automatically
    • Output as single pages
    • Automate printing and exporting to PDF, PostScript, EPS, Flash, IDML, EPUB and several image formats
    • Output files to multiple formats at once
    • Layer versioning: output layer combinations as single files
    • Update modified links automatically
    • Variable output file names
    • Preflight InDesign files and final PDFs
    • Supports books and booklet printing
    • Send output files over Internet and locally
    • Detailed output history
    System Requirements:
    - Adobe InDesign CS3-CS6
    - Mac OS X 10.5 and later, Intel-based Mac

  • How can we automate the Depreciation keys based on production for business

    How can we automate the Depreciation keys based on production for business u2013 this is currently not an optimised process if we expect business to manually change the keyu2019s on a monthly basis.
    The end user updates the table, transaction AO25, manually on month end after the production calculations are completed. The question is, is it possible when the PP is completed, that the system updates the Period Unit table for that period?
    Thanks.
    Regards,
    PS PS

    Hi,
    I am new at this, so I need a explanation on how will this help me, and how do I get about doing this?
    Thanks a lot.
    Regards,
    PS PS

Maybe you are looking for

  • Ibook lid closed while playing music?

    hi, how can i set it up so that my ibook continues to play music even after I close down the "lid"? thanks. Powerbook g4   Mac OS X (10.3.9)  

  • MS Dynamics and Oracle Projects

    Hi Folks, Is there any interface between oracle projects and ms dynamics? Any shed of light would be highly appreciated. Thank you.

  • BizTalk Send Port Error

    We are getting error on send port after some changes in the map, but there is no change in the map which is throwing error - Event Type: Error Event Source: BizTalk Server 2009 Event Category: (1) Event ID: 5754 Date:  11/26/2013 Time:  1:14:22 PM Us

  • Sharepoint 2013 blog post deletion

    when i  am trying to delete post item in sharepoint blog site, getting error "No item exist" I have followed below steps 1. Added new item in posts list. 2. I clicked the item title it is redirected to "/testblog/Lists/Posts/Post.aspx?List=ce56b641%2

  • Finding Lot size in PPM

    Hi, where can i see the Lot Size of the PPM in PPDS PPM. i mean under which section, the operation part, or Activity Relationship or under PPM ? Thanks in Advance, PP.