How can I add a text watermark, NOT an image

I would like to make a watermark for all of my images, but I want to vary the location it is at every time.  Also, I'd like to change the color of the text according to the image.  Is there a plugin out there that allows for this?
Thanks,
Zach

Zach -- try it again.
The watermark blend modes are there to help show your watermark on varying backgrounds.  The Blend Mode selector is on the Watermark tab.  Try all of them.
You are not limited to images.  Here is a screenshot of the Border FX text tab.  The options are extensive (and include separate colors for stroke and fill).
Message was edited by: Kirby Krieger

Similar Messages

  • I have started a photo book in iPhoto (OS 10.7.5). How can I add photos that were not in the original album?

    I have started a photo book in iPhoto (OS 10.7.5). How can I add photos that were not in the original album?

    Thanks for your quick response. I thought I had tried that but I must not have because it worked perfectly.

  • How can I add a text( In CRM 2007 called Note) to the current entity?

    Dear Friends,
    I want to add text type 'SU99' with text 'Hello World' to a CRM transaction, how to do this by BOL? Is there any example component for this issue?
    Thanks and best regards,
    Anders

    Hello Anders,
    here a piece of code where we add a text from type S002 to the Servicerequest:
    lr_bt = lr_bt_adminh->get_related_entity( iv_relation_name = 'BTHeaderTextSet' ).
          lr_bt = lr_bt->create_related_entity( iv_relation_name = 'BTTextHAll' ).
          lr_bt->set_property( iv_attr_name = 'TDID'
                                    iv_value = 'S002').
          lv_conc_lines = 'called Tel.'(003).
          CONCATENATE lv_conc_lines lv_phone_no into lv_text.
          lr_bt->set_property_as_string( iv_attr_name = 'CONC_LINES' iv_value = lv_text ).
          lr_core->modify( ).
    I hope this helps.
    Kind regards
    Manfred

  • How can I add the text from a Word document to an existing PDF that is my letterhead?

    I have a business letterhead created to a PDF file.  I'd like to add text from letters to this letterhead but do not know how.  Please help.

    Hi tatestar1,
    You would either need to use Acrobat to edit your letterhead PDF, or add the text in whatever application you used to create the letterhead in the first place, and then re-create the PDF. If you have the source file, then the latter may be easier.
    Best,
    Sara

  • How can I add a text substitution for changing st in 1st to superscript?

    I would like to add text substitutions for 1st, 2nd, 3rd, etc. so the letters show up as superscript. I attempted to change the st, nd & rd to superscript in Pages and tried to paste it, but it simply changed it back to regular format. How can I go about changing this?
    Thank you in advance for your help!

    It only works in TextEdit consistently for me. Mail forgets as soon as I sent the message. Pages doesn't even have an Edit > Substitutions menu, nor it is there anything in the inspector.
    So I use [Typinator|http://www.ergonis.com/products/typinator>, which works system-wide, no fuss, and it's more powerful than the built-in text substitution. Another alternative is [Text Expander|http://smilesoftware.com/TextExpander>.
    If the free trails and price still can't help you decide, see this [discussion|http://www.macheist.com/forums/viewtopic.php?id=13544] comparing the two.
    Edit: I eat my words. Getting Typinator to substitute superscript is tricker than I thought.
    Message was edited by: Sam_P

  • How can I add linked text boxes to Contents?

    I have a lot of sections in my chapters, and I think they are all coming in to the TOC, but the automatic text box doesn't have a blue tab, so I cannot add a new text box to continue showing the sections.  How can I make this show up? There's no layout I can manipulate for the TOC, so I cannot make the text editable, which is the suggestion that I have seen for regular linked text boxes.

    Hello,
    If you want to add image to it's background then you can select the SubMenu and use the fill option to fill an image to it.
    Make sure you uncheck "Edit together" option in Menu properties so that you can add different images to different submenus.
    And if you want to edit the text and add images to it, I would suggest you to use Manual menu. Where you can customize your own Menu and add links to the Menus and Submenus.
    Please have a look at the screenshot showing how to create Manual menu :
    Hope this helps.
    Regards,
    Sachin

  • How can I add javascript text fields to Acrobat pages from Applescript please?

    I have a real need to add text fields to Acrobat document pages from Applescript. I can't access the Headers and Footers from Applescript in Acrobat XI. I can set watermarks using the following script, but cannot for the life of me work out how to add text fields. Any advice please?
    Regards
    set TempAttachmentName to "(20140717121212Z)"
    set PreserveFileName to "This is a test"
    set bypass to false
    tell application "Adobe Acrobat Pro"
      activate
      set CountOfPages to count of pages
      repeat with PageCounter from 1 to CountOfPages
      tell application "System Events" to tell process "AdobeAcrobat"
      try
      click menu item "Page..." of menu 1 of menu item "Go To" of menu 1 of menu bar item "View" of menu bar 1
      tell current application to delay 0.1
      keystroke PageCounter as text
      tell current application to delay 0.1
      keystroke return
      if not bypass then
      my ADDHeaderFooter(TempAttachmentName, PreserveFileName & " " & CountOfPages, PageCounter)
      end if
      end try
      end tell
      end repeat
    end tell
    on ADDHeaderFooter(The_String1, The_String2, currentPage)
      tell application "Adobe Acrobat Pro"
      activate
      set myDocument to document 1
      tell myDocument
      tell page currentPage
      set cbox to crop box
      set item 2 of cbox to (item 2 of cbox) + 44
      set item 4 of cbox to (item 4 of cbox) - 44
      set media box to cbox
      set crop box to cbox
      set theResult1 to my Add_WaterMarkText(The_String1, "IDAutomationHC39M", 12, 1, 1, 1, 0, 3, 10, 3, 0)
      do script theResult1
      set theResult2 to my Add_WaterMarkText(The_String2, "Times", 16, 1, 1, 1, 0, 4, 10, -6, 0)
      do script theResult2
      end tell
      end tell
      end tell
    end ADDHeaderFooter
    on Add_WaterMarkText(cText, cFont, nFontSize, nS, nE, nTA, nHA, nVA, nHV, nVV, nR)
      set Params to "cText: '" & cText & "'," & return
      set Params to Params & "cFont: '" & cFont & "'," & return
      set Params to Params & "nFontSize: '" & nFontSize & "'," & return
      if class of nS is integer then set Params to Params & "nStart: " & (nS - 1) & "," & return
      if class of nE is integer then set Params to Params & "nEnd: " & (nE - 1) & "," & return
      -- 0 = left, 1 = centre, 2 = right
      if class of nHA is integer then set Params to Params & "nHorizAlign: " & nHA & "," & return
      -- 3 = top, 4 = bottom
      if class of nVA is integer then set Params to Params & "nVertAlign: " & nVA & "," & return
      -- offset in points
      if class of nHV is integer then set Params to Params & "nHorizValue: " & nHV & "," & return
      -- offset in points
      if class of nVV is integer then set Params to Params & "nVertValue: " & nVV & "," & return
      if class of nR is integer then set Params to Params & "nRotation: " & nR & "," & return
      set javascript to "this.addWatermarkFromText({" & Params & "});"
      return javascript
    end Add_WaterMarkText

    G'day
    Unfortunately I don't have the API. My Adobe Reader installation updating to version XI failed, and subsequent attempts to fall back on the X version are blocked by the partial install of XI. Damn Adobe stuff.
    Could someone please post the relevant part of the API to give me some pointers, please.
    I ha mucked about with some information I found on the Web, and come up with the following, which fails because I can't work out how to address the current document with the variable myDoc.
    Regards, Brian
    set Params to Params & "var myDoc = this;" & return
    set TempAttachmentName to "(20140717121212Z)"
    set PreserveFileName to "This is a test"
    set bypass to false
    tell application "Adobe Acrobat Pro"
      activate
      set CountOfPages to count of pages
      repeat with PageCounter from 1 to 1 # CountOfPages
      tell application "System Events" to tell process "AdobeAcrobat"
      try
      click menu item "Page..." of menu 1 of menu item "Go To" of menu 1 of menu bar item "View" of menu bar 1
      tell current application to delay 0.1
      keystroke PageCounter as text
      tell current application to delay 0.1
      keystroke return
      if not bypass then
      my ADDHeaderFooter(TempAttachmentName, PreserveFileName & " " & CountOfPages, PageCounter)
      end if
      end try
      end tell
      end repeat
    end tell
    on ADDHeaderFooter(The_String1, The_String2, currentPage)
      tell application "Adobe Acrobat Pro"
      activate
      set myDoc to document 1
      tell myDoc
      tell page currentPage
      set cbox to crop box
      set item 2 of cbox to (item 2 of cbox) + 44
      set item 4 of cbox to (item 4 of cbox) - 44
      set media box to cbox
      set crop box to cbox
      set theResult1 to my Add_WaterMarkText(The_String1, "IDAutomationHC39M", 12, 1, 1, 1, 0, 3, 10, 3, 0, myDoc)
      do script theResult1
      set theResult2 to my Add_WaterMarkText(The_String2, "Times", 16, 1, 1, 1, 0, 4, 10, -6, 0, myDoc)
      do script theResult2
      end tell
      end tell
      end tell
    end ADDHeaderFooter
    on Add_WaterMarkText(cText, cFont, nFontSize, nS, nE, nTA, nHA, nVA, nHV, nVV, nR, myDoc2)
      #set Params to "var myDoc = app.newDoc();" & return
      set Params to ""
      set Params to Params & "var myDoc = this;" & return
      set Params to Params & "var inch = 72;" & return
      set Params to Params & "var Bbox = this.getPageBox(" & "\"Crop\"" & ");" & return
      set Params to Params & "var f = myDoc.addField(" & "\"Text1\"" & ", " & "\"" & cText & "\"" & ", 0, [72, Bbox[1]-inch, Bbox[2]-2*inch, Bbox[1]-2*inch ] );" & return
      set Params to Params & "f.strokecolor = color.black;" & return
      set Params to Params & "f.richText = true;" & return
      set javascript to Params
      return javascript
    end Add_WaterMarkText

  • How can I add a Text Template Binding to an UML Class within a MenuCommand Execute Method?

    Hey,
    I am using Visual Studio 2013 Ultimate with Visual Studio SDK and the Modeling SDK. 
    I am trying to develop an Visual Studio Extension (VSIX) which contains new MenuCommands. 
    So if I execute a MenuCommand I want to add a new TemplateBinding for a specific class 
    something like that:
    IClass aspectClass = rootPackage.CreateClass();
    aspectClass.TemplateBindings.ToList().Add(new TemplateBinding());
    aspectClass.CreateTemplateBinding();
    aspectClass.CreateTemplateParameter();
    I have already created a new text template file (.tt) and I also want to pass values to this text template file when the
    menu command will be executed if this is possible?
    So the goal is 
    1. To execute a custom menu command to add a custom text template file to a specific UML Class
    2. To execute the "generate code" menu command to get a generated CSharp file which is conform to my custom text template file
    I know this is possible via the GUI, but is this also possible via code?
    Thank you very much for your support
    Regards,
    Michael
    Liebe Gr+ße Michael Web Entwickler

    Hi,
    According to your post, my understanding is that add a link to an item within a workflow email.
    I’ m not very clear about the status you said. Please descript more detail which URL do you want to display.
    Per my knowedge, you can display the following url in your email body:
    [%Workflow Context: Current Item URL%]
    [%Workflow Context: Current Site URL%]
    [%Workflow Context: Workflow Status URL%]
    [%Current Item: Encoded Absolute URL%]
    Please start the workflow automatically when an item is changed and changed.
    No matter how you  edit the item or update the approve status, the URLs remains the same.
    Thank you for your understanding.
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • How Can I add/change text/description in accounting view of Vendor master ?

    /nxk02 --> (give vendor, company code ) 
    then check the check box of 'Accounting info' under Company code data block -->  then hit 'Enter'
    --> it goes to next screen.  Then in this screen, click menu 'Extras' --> then press "Texts" under that menu. 
    So that popup screen appears with the Description.
    I need to know from where these descriptions are coming or where these descption  can be maintained ? Because I need to add/change these  descriptions to my vendors
    YOUR HELP IS HIGHLTY APPRECIATED.  Please help....
    THANKS IN ADVANCE.

    Hi Aman,
    Because these texts are maintained at Company Code level for the Vendor, they are part of the Accounts Payable configuration in the SAP IMG. 
    SPRO > Financial Accounting > Accounts Receivable and Accounts Payable > Vendor Accounts > Master Data > Preparations for Creating Vendor Master Data > Define Text IDs for Accounting Texts (Vendors)
    Transaction OBT5
    Regards, 
    Monika

  • How can I place a text field not directly on the left of the page but with an indent to the right?

    Hi everybody,
    I try to create a form in which I want to enter several item under each other
    general info        Item 1               Item 2
                             Name 1            Name 2
                            Item 3               Item 4
    and so on.
    Since it is not possible to insert a table for something like that I would like to enter seperate text fields one underneath the other.
    But every new line starts on the left side and I do not see any way to move a text field to the right with an indent so that "item 1", "Name 1" and "item 3" are aligned the same.
    Can anybody give me a hint?
    Thanks a lot and have a good 2015!
    Oliver

    Hi,
    Insert a blank "Formatted Text" field on the far left, and shrink it down as much as you wish. Then insert your normal text field to the right of that.
    I hope that helps,
    Brian

  • How can I add append text to a text box?

    I want to have it so I can add data to the textbox, through my program, and not overwrite what's currently in there. I'd also like to have new lines indented. Ex.
    I have:
    cp C:\Test C:\Test2
    I want to just add a console response as such:
    cp C:\Test C:\Test2
    Copy Successful
    I'm writing my own console like program. I'm not trying to actually get input from the system.

    Hi,
    You can use the append() method of the TextArea.
    For example:
    showText=new JTextArea(" ", 10, 20);
    showText.append("First\n");
    showText.append("\tSecond");\\adding a tab space
    Output:
    First
    Second
    Bye
    -Dani

  • How can i change bookmarks text colors, not toolbar text color.

    I know how to change color of toolbar text but still want to change the text color of bookmarks.

    You can experiment with code like this in the userChrome.css file.
    *http://kb.mozillazine.org/userChrome.css
    <pre><nowiki>@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    #personal-bookmarks .bookmark-item > .toolbarbutton-text {color:#000!important; background-color:-moz-dialog!important}
    </nowiki></pre>
    The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.
    *http://kb.mozillazine.org/Editing_configuration

  • How can I add a Google account not connected to a GMail account to Messages in OSX Mountain Lion?

    With iGoogle going offline soon, and being myself averse to using Google+ for social networking due to what I perceive as a blatant disregard for my privacy, I'm trying to save my few Gchat contacts, as I don't have many other ways to contact these specific people. However, I'm having trouble connecting my Gchat (or Google Talk if you prefer the term) to Messages. It doesn't recognize that my google account is tied to a verizon email address, not a gmail address, and refuses to acknowledge my password as correct (even though I typed it correctly at least five times trying).
    I haven't seen anyone else having this problem, and I'd prefer to call customer support about this, but this seems to be the next best option.

    Hi,
    iChat and Messages (and for that matter any other Jabber capable App) will not accept non Google Mail Google IDs as Google Talk IDs
    When Google launched Google Talk it was only for those IDs issued under @googlemail.com or @gmail.com that were eligible.
    Later they allowed other Google IDs to Chat but only from Web Browser Logins.
    There was a period when they did seem to expand the non Googlemail IDs into the GoogleTalk fold for external apps to also allow access but this was dropped after a while.
    10:11 pm      Thursday; October 3, 2013
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.4)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • How can I add courses which are NOT downloaded from catalog

    Hi. I have recorded my teacher's voice and created a pdf from his lessons. now i want to add them in my iTunes U app. I tried to add them by changing "media type" to iTunes U but files didn't move to iTunes part. (excuse me for my bad english if you found grammar and vocabulary mistakes)

    Drag/drop the picture you want to add on the area with the other thumbs.

  • How can I add callouts on top of anchored images in CS6?

    I am using InDesign CS6 on a MacBook. I have multiple anchored images in a long document. Some of the images require callouts, such as labels or arrows, which should display on top of the image and should always stay with the image as if these items were also anchored. Is there a way to layer images in InDesign so that they are all anchored?
    I tried grouping the callout objects with the anchored object, but you cannot select an anchored object and other objects at the same time. I know in Word you can create an image canvas and add multiple items to that, and they are all grouped together. Is there a way to do that in InDesign? Or would I have to anchor each callout along with its corresponding image?

    Peter, your advice was very helpful. However, the text boxes (callout labels) that are included in the grouped objects get distorted once the grouped objects are anchored. Each text box shows the red +. When I expand the text box to fit content, the text box expands vertically so that all of the text is below the originally anchored object.
    The other callouts (just lines) stay in place perfectly.  Any insight into why the text boxes don't behave the same way that the lines do?

Maybe you are looking for

  • Mouse Over Toolbar In Forms 4.5 and Registry stuff too

    Is it possible to create an MS Office 97 /ie3/ie4 type of mouse over toolbar in forms 4.5..... I'm trying (with litlle success) to use images as buttons ... unfortunately i have a lot of problems 1. each button has 4 states: flat, up, down, disabled.

  • Can't access BEFW11S4 v2.1 config page / PASSWORD PROBLEM

    Hello. I have a BEFW11S4 version 2.1 wireless router. Recently, I had to reset it to factory defaults. However, since then, I can't access it from my web browser at 192.168.1.1 URL. It keeps asking me my password. I've tried the "admin" password (wit

  • DM 5 does not recognize Outlook 2003

    Hello.  I recently got a new laptop & installed the latest Desktop Manager - 5.0.1.37.  When I try to sync, I get to the screen where it asks to select a desktop application, and Outlook is not listed (Options are: <None>, ASCII Importer/Exporter, Ya

  • Macbook Connected To Playstation 3

    Is there any way to set my Macbook and my Playstation 3 upp threw bluetooth or anyhting. Want I want it to do is share music and such. Please help if you can in anyway. I try to pair them together and they never find eachother

  • How portable is the 15" Macbook Pro?

    I will be a freshman at college this fall and am looking to buy a Macbook Pro.  I am stuck between the 13" and 15", both low end models.  I like the portability of the 13" however the screen feels too small to me.  However, I love the size of the 15"