Paste the text of a document in a text box in HP Photo Creations

I thik I've tried everything, but how do you paste text from another document into HP Photo Creations? I am creating a map and I have a poem that I have wrte a few years ago and I want to insert in one of the pages. Can't seem to find a way to do it. Should be pretty simple.

I use control-Ins and shift + ins apparently does not. Your do. Thank you. I was ready to go to another program. Problem solved.

Tags: Notebooks

Similar Questions

  • How to copy/paste the text box anchor to its anchor text and remove all checkpoints empty?

    Hi all

    I have a document of a few pages, but a story. The right column is the area of main text and on many places, anchored text boxes are placed which appears on the left column, as shown below.

    I want the text of each text box anchor to cut of his place and sticking to its point of insertion/anchor and remove all of the empty boxes of anchored.

    I'm trying since this morning but I was able to get the anchor object reference. Any help on how to start with will be useful.

    Marie rosine

    anchor_box.png

    OK, let's say you have a main text (not rooted) box and three text boxes that are anchored to the text it contains. One is anchored with text, the second is not anchored and the third argument is empty (I won't get into the anchor vs custom anchor line given that you mention in your message).

    Scroll us through the items on the page:

    function main(){
      var myDoc = app.activeDocument;
      var myPages = myDoc.pages.everyItem().getElements();
      for (var i = 0; i < myPages.length; i++){
      {
        var myPage = myPages[i];
        //Checks that the page is valid, and that it is not a master page. If either is true, skips to the next page.
        if (myPage.isValid == false) continue;
        if (myPage.parent instanceof MasterSpread) continue;
        var myItems = myPage.allPageItems;
        for (var j = 0; j < myItems.length; j++){
          //Current item.
          var myItem = myItems[j];
          //If myItem doesn't have a Character parent, it is not anchored.
          //The first and third text frames would fail this test.
          if (!(myItem.parent instanceof Character)) continue;
          //We only care about text frames.
          if (!(myItem instanceof TextFrame)) continue;
          //I think the only way this would happen would be if you had an image or
          //something else unexpected within the frame. I check for it so no content
          //is inadvertently lost.
          else if (myItem.texts.length > 1) continue;
          //If we're still in this iteration of the loop, all qualifications are met.
          //Flatten the text frame.
          //I don't use layers that often so, to me, flatten makes sense. You may want
          //to use a different term if there's a chance for confusion.
          flattenItem(myItem);
         }
       }
    }
    
    function flattenItem(funcItem)
    {
         //Hold onto the anchor character.
        var myParent = funcItem.parent;
         //Duplicate the text from within the frame so that it appears right after the anchor.
         //There may be other methods, but this works for me. I try to avoid copy/paste
         //so as not to deal with any clipboard mishaps. I added a check in case of empties.
         if (funcItem.texts.length > 0){funcItem.texts[0].duplicate(LocationOptions.AFTER, myParent.insertionPoints[0]);}
         //Replace the anchor character itself with a space (or whatever) which also
         //deletes the text frame it was anchoring.
        myParent.contents = " ";
    }
    

    I guess the takeaway is perhaps you aren't looking at the main text block and then check if anything it is anchored. You are watching each text block and find out if it is anchored. That's my approach, anyway.

  • How to paste the text as default text?

    How can I get FM to paste the text as text by default, instead of having to use 'paste special '?

    (Years ago a configuration file that can be changed, but memory fails me).

    The configuration file is maker.ini... There is one master copy of the FrameMaker application, but you should rather edit your own personal copy, which will replace the captain. You can find it in:

    • "\Documents and Settings\\Application Data\Adobe\FrameMaker\" on Windows XP ".
    • "\Users\\AppData\Roaming\Adobe\FrameMaker\" on Windows Vista and later versions. ".

    FrameMaker rewrites your copy whenever it comes out - so before you change the file, quit FrameMaker, otherwise it will just overwrite your changes. Then backup the file, just in case.

    The desired setting is ClipboardFormatsPriorities. It is very unlikely to already be present, but if this is the case, modify its value. Otherwise, add this line to the [options] section:

    ClipboardFormatsPriorities = FILE, MIFW, MIF, RTF, OLE 2, META, DIB, EMF, BMP, UNICODE, TEXT TEXT

    The above is the default setting. Change the order by yourself; You can use one of the following conditions:

    • ClipboardFormatsPriorities = FILE UNICODE TEXT, TEXT, MIFW, MIF, RTF, OLE 2, META, EMF, DIB, BMP
    • ClipboardFormatsPriorities = UNICODE TEXT, TEXT FILE, MIFW, MIF, RTF, OLE 2, META, EMF, DIB, BMP

    Restart FrameMaker. No problem, go back to your backup of the file.

  • Paste the text into facebook

    Hello
    Sorry a simple question.
    How to paste a URL or a text just leave the notebook in a Facebook comment on a photo?
    in the past it was all ok, but since 2 months if I press Enter to post my comment, I'm going to the effects of the space bar. its unpossible paste the text. Thanks for the suggestions.

    solution:

    Despite the protection of personal information (!).

    DOM. Event.clipboardevents.Enabled > TRUE.

    It works fine now!

  • Paste the text copied without formatting in the form fillable

    I created a PDF form to be completed online for my clients who copy and paste a large amount of information to ensure accuracy. There are several fields that are marked as multiline and formatting so that the field adapts most of the information, however, when customers are copy and paste the information that they are facing two problems:

    1. He is coming with the source rather than the defined field of formatting formatting
    2. When they try to paste several lines of text, it is not wrapped in the field as it should. Instead, he says that he can not paste the text and runs to the end of the field, even if there is a lot of room below.

    This form was created using acrobat and fill using reader. Are there solutions to these two problems?

    Under the Options tab of the field properties window, is the 'allow Rich Text Formatting' selected? If so, that probably the reason and it must behave as you want, when it is turned off. If yo don't want the user to be able to enter more text than the field can display, you should also deselect the option "text long scroll.

  • Simple cut and past the text in JS please

    Hello world. A big problem I always had with Indesign, is that I can't seem to remove shift as a keyboard shortcut for cutting text. (This is the shortcut, I grew up with and could never get used to the use of Ctrl-X, that I prefer to use for other things). In my view, there is a fundamental bug which means that this shortcut will not work. (In the box keyboard shortcuts dialog, 'cut' is listed under the Edit menu. It works on the text boxes and objects when assigned to 'default', but not in the selected text when the 'text' option is used.)

    Therefore, I thought I'd try to assign the shortcut to a simple piece of JS code. Can someone give me the syntax if you please. Can follow programming languages, I am new to JS and despite playing for a few hours, that I can't seem to find the code to cut the selected text in the Clipboard.

    Thank you very much

    John

    code for cutting:

    App.Cut)

  • What is this icon on my text box? It is the breaking copy in the text box.

    Can someone tell me what this little icon on the left side of the text box in the screenshot below? I tried to google it with no luck and I don't know what to do to turn it off then my text doesn't go haywire. I copied the text area of a document. INDD where the text has worked, then pasted into a document. Pre-existing INDD and when I go to move the text around the text box begins to align left, right and Center on its own.
    Screen Shot 2015-06-03 at 1.21.45 PM.png

    Looks like you pasted the frame on a master page. This icon appears on text blocks that reside on a Master.

    Not sure if the erratic behavior of alignment is however; Maybe something else on the page has wrapping applied... (?)

  • copy is break to the next page and don't sink to the bottom of the text box

    I have a document where text is decorated with style sheets and overrides are disabled, but the text is introduced on the next page, rather than sinking to the bottom of the text box. I've had this problem several times in the past but have never figured out how to fix the problem.

    Sometimes it can also happen without reason - simply because the story

    reestablish has no kick.

    If this is the case, of all the stories to recompose: Shift + Enter to open Quick

    Apply, and then by typing "recompose" should show the required element:

    "Recompose all stories." Sometimes white gaps in the

    at the bottom of pages (quite rare).

    Bonus question: does anyone know what is the difference between "redial".

    all the stories"and" recompose all stories immediately "is (since the two

    seems to work immediately!) ?

  • White type in the text box with fill with transparency

    This page of color in my INDD document a lot of transparency on this - in the following stacking order:

    1. downstairs are two boxes gradients covering the entire page.

    2. next is a background photo that's an advantage to feathers.

    3. then comes my text box that floats over a part of the photo in the background. The text box is filled with a gradient purple feather. The text box contains 8.5 PT. White type (Helvetica Neue Medium).

    4. a transparent dingbat straddles a corner of the text box.

    Where the white guy is pictured in the background, a color is reflected type. I have not noted on the PDF, but of course, the work of back of the printer, you can see.

    I thought all type except automatically eliminated black?

    I pulled out the file using PDFX-3 (1.3) because my printing does service provider ' t supports the 1.4. I underdstand this version flattens transparency. I scanned "Print Production Guide for transparency" Adobe and learned that the areas of complex transparency can cause unexpected results. Is what happened here?

    When I opened the flattening of transparencies and he asked to highlight objects with 'Text of Raster-Fill and Stroke' or 'Text described', this type area is highlighted. No other boxes on this page type were noted, even where it overlaps the background photo (which has applied feather).

    Several other transparent dingbats (such as duplication of the text box) are also highlighted as 'Raster - Fill and Stroke text'. They are all on the highest layer (type).

    This isn't a disaster - it's still readable - but the details of the publication who are affected, which is important. Maybe next time I won't be as lucky. What would I do different?

    It is possible in the more recent versions of ID to the value of transparency to the object, STROKE, fill and levels of content, and I suspect that you have applied your effects to the object level. I was able to recreate what you see as well by using the gradient feather tool and in the effect controls panel and using the pen it y to the entire object. Oddly enough, once the gradient feather tool has been used I couln can't access options in the effect controls panel or in the menu object.

    In all cases, if you can, select the block of text, open the effect controls panel or object > Effects > menu feather degraded, remove the gradient feather and reapply just the filling.

    If you are not able to do so, copy the text, delete the block of text and create a new and paste back the text, and then select the image and apply the gradient feather to complete using the effect controls panel or the menu object.

  • When I print a table (multiple pages) the text box under the table seems to be moving under the table and prints with the table of this overlap. My only solution is to push the text box further down the page before printing... Any advice?

    Im having problems shaped a text box so that my table does not print right on top of it. I want it inside of my table (it's 'tems and conditions' budget)

    Any advice would be great.

    I face the same problem as well. Would like to know if there is a better way to get the text box to move with the table instead of the effect that overlap. Have to manually adjust the layout, whenever I want to get a reasonable print of a document (or export it to PDF) seems counterintuitive, especially when it causes the document seem ill-disposed on screen.

    I am running version 3.6.2 of the numbers in the case where that matters.

  • Update records with the text box

    APEX: 4.0.2

    THEME: SAND

    SERVER: Oracle-Application-Server-10g/10.1.3.1.0 Oracle-HTTP-Server

    I'm just letting my user paste values in a text box, click a button and then update some fields for this record.

    I created an example with more comments on the page:

    workspace: stevendooley34

    username: dev01

    password: dev01

    application: examples of Forum

    page: update example

    Keep in mind: the apex, theme, and Server version are different where I created the example. The above version, theme and the server are the stats of my workplace.

    Thank you

    Steven

    -changes

    Or if the modification of the code below would be easier I can go that route.

    Update oef_itv_ndn

    Set cancelled_cd =: MMR_CANCELLED_CD.

    closed_date =: MMR_CLOSED_DATE.

    admin_remarks =: MMR_ADMIN_REMARKS

    where abc = '12345';

    I created a dynamic Action with the above code works correctly.

    but instead of "abc = '12345' 'I need it to be" where abc in: SEARCH_INPUT "

    : SEARCH_INPUT is the text box that users can paste values in this format:

    12345

    67890

    98765

    so, when it comes to the clause "where" I need to maintain all records that are in the text box.

    Post edited by: StevenD609

    The "WHERE" clause is in the wrong position.

    It should be part of the "USING" clause)

    (the nickname table 'data' is defined in the scope of this subquery)

    In addition, it seems to me good.

    If you're still having problems, you can go to the forum 'SQL and PL/SQL '.

    MK

  • The text color will appear washed out when written in the text boxes. Help?

    As you can see in the first picture, the color of my text becomes faded as it moves to the next text box. I got the color of real black text of the text on the left by copying and pasting my text at random (do not paste in a text box). It seems that when the text is placed in a text box (as seen in the 2nd and 3rd images), it automatically searches faded.

    What I'm doing wrong here?

    Adobe Support Question - Pic 1.PNG

    Adobe Support Question - Pic 2.PNG
    Adobe Support Question - Pic 3.PNG

    I suspect that you have selected the text box and applied transparency as well as the image.

  • Blue teal weird around the text box

    It happened when I pasted the text from one of my InDesign files to another file InDesign from a colleague. It does not appear when I export a PDF file but it's annoying when designing.  Anyone have any ideas on what this is?  The Red plan is the text for the bottom text box.

    Screen Shot.jpg

    Custom tracking / kerning, I think. You can disable the high point in the section of the Composition of the prefs.

  • The existing letters disappear in pdf when I add the text box

    If I get letters in the text disappearing as soon as I type anything in a new text box. I have acrobat pro 8.1 Windows XI.

    My pdf document looks very good. All the text is there that's supposed to be here. I have to add areas of text on some pages, so I click "Add text", I click on any area in my document and the text box appears. As soon as I type anything at all "random" letters disappear throughout my document. I say randomly is a l e meantime, etc, but it's the same letters of the words disappear each time. A month ago, I was working on the very document that does exactly the same thing and had no trouble adding text without letters endangered.

    I've been playing with it for several hours now and I'm ready to punch a hole in the wall.

    Any ideas?

    Thanks for 'all' the help (I'm kidding, of course) but I figured it out on my own.

    Tried many, many things and what has worked in the end increased the dpi of the pdf when it was created first. I'd put it at 300 dpi, which was the same default setting for all other documents I created and manipulated without a problem, but for some reason, it does not work now. I tried to 600 dpi and it is fine. All letters remain in place when I add new text boxes. Probably the other ppp settings would also work, but I have not tried.

  • Extract the contents of the text box

    Hello

    I am trying to automate a process PDFing complex. A single indesign document should appear as several PDFs named, which fall into a number of folders that also have specific names. If I place the PDF names and folders in text boxes on the pasteboard of indesign pages they can be recovered by a script. Do I need to mark the text box, so the script knows where to look, and how this is done?

    Thanks much for any help.

    Hello

    Create a new layer and name it as "printpdf", create a block of text with this layer on each page and fill in the content, as shown in the picture, the first line for the name of the folder and the second row for filaname. The text block should be placed within the page, not the editing table.

    var doc = app.activeDocument;
    var pages = doc.pages;
    var _layer = doc.layers.item("printpdf");
    _layer.printable = false;
    for(var i =0;i
    

    Kind regards

    Cognet

Maybe you are looking for

  • Qosmio X 300 - 14 p - Linux distribution that?

    Hello Someone at - he was installing a linux system on qosmio x 300 with success (all hardware work)?If Yes: which distro and which version? THXMartin

  • Communication with Serial Port

    Hello Hi I have a request that I should communicate with serial port... Its works perfectly if gives you all parameters to com as constants (pls hav a look @ codea). But I want to read the port number and baud RRSP file text. When I changed the encod

  • An error occurred during the installation of microsoft install (MSI)

    Original title: an error occurred during the installation of microsoft install "during the installation of the Simulator professional siemens step 7. at the beginning of the installation process of professional Simulator of Siemens step 7 it told me

  • I just reinstalled Windows XP Home Edition and after put into Avast detected a VIRUS.

    I have a purchased retail Microsoft Windows XP Home SP2 (version 2002) installation C.D. recently, I wiped my hard drive with a disc of scrub and re-installed Windows with this C.D. After all Microsoft security updates, I downloaded Avast Internet Se

  • Continues scanning

    I have a HP Deskjet 3521 e-all-in-one model of printer: CX058A.   There, I could scan multiple pages into a single file.  Now I can't do this and can't find an option to do this.  Before, it will display a page with you the scan page in the backgroun