The document with the hover text

I have a requirement to post a technical document with javascript features hover in which a ball or text box appears when someone passes on a hard word or phrase.

See the image below to get an idea of what I'm trying to achieve.

Can anyone advise a solution?

Thank you!

hover text.png

http://jQueryUI.com/ToolTip/

Tags: Dreamweaver

Similar Questions

  • I'm filling out a form that is available on a site. When I click on the option to fill out and submit the form 'online' a pdf document is displayed in chrome with the following text "to display all of the content of this document, you need a later version

    I'm filling out a form that is available on a site. When I click on the option to fill out and submit the form 'online' a pdf document is displayed in chrome with the following text

    «To display all of the content of this document, you need a later version the viewer PDF.» You can upgrade to the latest version of Adobe Reader from www.adobe.com/products/acrobat/readstep2.html for further support, go to www.adobe.com/support/products/acrreader.html"

    Needless to day, I installed the latest version. I even reinstalled using the link in the message, but nothing helped. Whenever I click on the link to go forward, I get the same message. Question: (i) is it my PC/software (Vista), (ii) is the site where I'm trying to submit the form, or (iii) is it the software acrobat reader. Note that I used successfully the last version to fill out and sign forms.

    It is none of them. It's Chrome, which is ignoring Adobe Reader and showing the message.

    Solution: just save the document (with the message) to your desktop. Then open it in Adobe Reader. The 'real' should then display.

  • Replace the selected text with other content TextFrame

    Hello

    I am changing a text selected in something new, involving the movement of text and the paragraph style using a jsx script. At the present time, everything works beautifully:

    • I entered the select text
    • I have create a new temporary TextFrame
    • I build my new paragraphs and apply styles to them in the new TextFrame

    What I was not able to reach still is to replace the original selected text by temporary TextFrame content.

    Any help would be more than welcome

    A part of my script:

    myText = app.selection[0].contents;

     

    ... do some stuff


    var myDocument = app.documents.item(0);

    var myPage = myDocument.pages.item(0);

    var myTextFrame = myPage.textFrames.add();


    myTextFrame.geometricBounds = [0, -70, 150, 70];

    myTextFrame.contents = "Paragraph1\rParagraph2...";


    myTextFrame.paragraphs[0].appliedParagraphStyle = pStyleGroup.paragraphStyles.itemByName('Style1');

    myTextFrame.paragraphs[1].appliedParagraphStyle = pStyleGroup.paragraphStyles.itemByName('Style2');

    And now, in myTextFrame, I have my new paragraph formatted, and I would like to replace the original selected text with the contents of my TextFrame (keeping the paragraph styles).

    Hello

    Keep the logic of the code and edit utilities:

    var
        mSourceIdx = app.selection[0].index,
        mStory = app.selection[0].parentStory,
        mReplaceStuff = {
            elements: [
                ["Paragraph_1\r",  "Style_1"],
                ["Paragraph_2\r",  "Style_2"],
                ["Paragraph_X\r",  "Style_X"]
                ]},
        mTarget, cElement, cText, cParaStyle;
    
    while (cElement = mReplaceStuff.elements.pop()) {
        cText = cElement[0];
        cParaStyle = app.activeDocument.paragraphStyles.item(cElement[1]);    // modify if styleGroups present in a structure
      mTarget = mStory.insertionPoints.item(mSourceIdx);
        mTarget.contents = cText;
        mTarget.paragraphs[0].appliedParagraphStyle = cParaStyle;
         }
    
    app.selection[0].contents = "";
    

    MReplaceStuff allows to prepare stuff to replace

    Jarek

  • Replace the string with the formatted text

    Hello all - I'm back to my beloved project...

    I want to replace a string by a TextSelction (formatted text) and began with the famous feature of Jang FindAndReplaceString.
    Since my replacement comes from another document (sourceDoc), I edited to targetDoc activeDoc and introduced a second document (sourceDoc).
    The replacePara actually comes from a stone where he had been placed to avoid switch backwards between the documents in a book (where to find and replace) and source documents. In another function, I learned that information on the table requires the sourceDoc must remain open.

    • Of course, everything works fine until I want to insert the replacelement:
      erase line 26 is the string
    • Given that I do not insert a string, I skip lines 28 and 29 and try try line 30
    • On line 30 DocumentSource is Document object and replacePare object TextSelection. However, sourceDoc.replacePara is not set and
    • (as a result?) line 31 past the current contents of the Clipboard.

    Of course, there is a fog around me... and I need some sunshine.

    function FindAndReplacePara (targetDoc, findString, sourceDoc, replacePara, loopMax) {
      var tr = new TextRange();
      var restoreTR, frame = 0, loopCounter = 0, replacementCounter = 0;
      var findParams = new PropVals();
      var firstPgf = targetDoc.MainFlowInDoc.FirstTextFrameInFlow.FirstPgf;
      
      tr.beg.obj = tr.end.obj = firstPgf;             //  set up the starting text range as the very beginning
      tr.beg.offset = tr.end.offset = 0;              // of the flow. We'll move straight from beginning to end.
      trSaved = tr                                    // to come back after work
    
      findParams = AllocatePropVals(2);
      
      findParams[0].propIdent.num = Constants.FS_FindText;
      findParams[0].propVal.valType = Constants.FT_String;
      findParams[0].propVal.sval = findString;
      
      findParams[1].propIdent.num = Constants.FS_FindCustomizationFlags;
      findParams[1].propVal.valType = Constants.FT_Integer;
      findParams[1].propVal.ival = Constants.FF_FIND_CONSIDER_CASE;
    
      FA_errno = Constants.FE_Success;                // errno global, to be used to track the progress of the find and replace
      tr = targetDoc.Find(tr.beg, findParams);        // and do an initial find to get started.
      
      while(FA_errno === Constants.FE_Success && loopCounter++ < 2*loopMax) { //find and replace loop as long as we keep finding
        targetDoc.TextSelection = tr;                 // set up the text range to clear the original text
        targetDoc.Clear(0);                           // clear it
        
    //    targetDoc.AddText(tr.beg, replacePara);       // insert the new text at the original beginning of the text range
    //    tr.beg.offset += replacePara.length;          //  lets jimmy the text range in memory to place it directly after
        targetDoc.TextSelection = sourceDoc.replacePara;        // paste the whole replacement paragraph
        targetDoc.Paste (0);                          // <-- Current contents of clipboard is pasted !!!!
        if(FA_errno === Constants.FE_Success) {       // increment our return counter
          replacementCounter++;
        }
        FA_errno = Constants.FE_Success;              // ...  find the next instance. We'll reset FA_errno again just in case
        tr = targetDoc.Find(tr.beg, findParams);      // something screwy happened while we were replacing text.
      }
      targetDoc.ScrollToText(trSaved);                // we're done. Restore the document to it's original area of display
      return replacementCounter;
    } // --- end FindAndReplacePara
    

    Hi Klaus,

    Thanks for the explanation. I remember something like that GetTabRange of the way back. You have been quite patient and persistent with this project, indeed.

    So, as we are dealing with ranges of text here, I think that the only simple approach is to perform a copy and paste. There is no way to save a 'formatted' in a variable. The only super precise way would be to get a data structure of each text range TextItems in the sourceDoc, then meticulously recreate every element of the targetDoc. It would be very complicated, I think, so copy and paste seems the most logical. I wonder, though, if Miss me something, because I think that maybe you would have tried already so yes (?)

    In any case, I would do something like that, from line 30 of your original code sample (code untested here):

    App. ActiveDoc = sourceDoc;

    sourceDoc.TextSelection = replacePara;

    sourceDoc.Copy (0);

    App. ActiveDoc = targetDoc;

    targetDoc.Paste (0);

    ... etc.

    Does make sense, or am I barking the wrong tree, as they say?

    Russ

  • Is it possible to update a character style with the changes I made to the selected text?

    I use InDesign CS5 on OS X Yosemite.

    I don't really know the best way to put it, so I hope that this scenario makes sense.

    Let's say I have a document with a few styles of different characters, and on one page of the document, I decided that I would try something different for a title that has an applied character style - this style is applied to all titles at the same level on the rest of the document. I do not adjust the style of character, however, but simply adjust the setting in shape in the upper character Panel. After playing for awhile, I have decide that I'm really this new setting in shape and want to apply as a result of the document, but now I don't have a character for this style.

    I know that I could just make a new style of form the title I have changed, then go back into the rest of the document and apply it to other styles. However, since this title still has the original style applied (just with overrides), I would like to know if there is a quick way to update the style based on the new formatting?

    I hope that makes sense.

    Thank you for your help in advance.

    With the substituted text still selected (you will see a + next to the character name of the Style in the character Styles Panel), choose the Style to redefine in the character Styles Panel menu.

  • Elegant way to cope with the Run-in position and the following text

    Hello

    Looking for an elegant way to deal with Run-in position and the following text.

    Currently, HR 11 corresponds to the heading style run-in and then puts the text on the next line. Because the tape FM, heads of run-in with the following style create a look of two columns, this does not quite.

    Thoughts, I had understand how to take the contents of the running head and precede it in the next paragraph? Otherwise, how do something so simple that to change (in HR) the indent of the paragraph following the trail head... How is that done?

    Thank you

    Sean

    I solved this.

    First of all, my FM source has had a problem with some empty paragraphs, sometimes hiding at the end of paragraph runin. So I replaced these (search for \p\p).

    Then I edited the file > Project Settings > FrameMaker Document > paragraph and changed the withdrawal and the spacing for the two styles involved.

    Thank you

    Sean

  • Make a Table of the dynamic contents for a document with a liquid layout... Help!

    * Running LiveCycle ES4 and use of the 'action' to code generator *.

    I have a HUGE document (70 + pages) that needs a dynamic table of content that updates the user adds information that can push all the sections that follow to the new page numbers.  There are sections AND subsections under each article, but for this, lets keep things simple and just talk sections.  I had to face to find a way to do this for months and I need to have done this week. I already have the table of contents and click on each section heading, it sets the focus to the PDF for the first text field in this section.  (each section has a text field just after the title of section)


    To make it dynamic, I added 2 pieces for each section:

    (1) a field of visible text on the Table of contents page with the default page number that the article is on until the user enters information

    2) an invisible digital field placed just before the first text field in each section that of value is set on "property page number: current runtime" so he always holds the current page number


    Using the constructor Action, what I do is every time a textfield is changed, change the value of the table visible from the field content of this section to the value of the invisible digital field that is now the current page number.  There are 7 sections, so if the text of article 2 field is changed, then update the Table of contents to sections 3-7.


    Screen Shot 2015-01-27 at 12.05.36 PM.png


    When I tested on a single article, it worked.  But now it does not work and I do not know why.


    Here are some properties of the object than my being at the origin of the problems too. If anything sticks?


    Visible box on the table of contents page

    Domain: Type = text field

    Value: Type = Protected (I was cycling through all THE different types, but the only time where it worked, it was the Type of value)


    Invisible box above the first textfield in each section

    Domain: Type = numeric field

    Value: Type = calculated - read-only property of execution: current Page number


    any suggestions? Thank you!

    This has never answered, but I understand on mine.  Figured since it had 66 times, I would like to share what I found.  It was actually an easy fix.

    I added a textfield (set to display the current page number of the page on which it is) at the beginning of each section that appears in the table of contents and set it to always stay with the first line of text in this section as well as the document grew, the page number, in that the section begins will remain correct.  Place to hide it.  In the "binding" tab, I put the name is the same name as the corresponding heading in the table of contents.

    Hope this helps someone who is in my place last year. =)

  • Resize the document with Tables

    I use InDesign CS6.

    I have more than 100 documents, with tables. I need to resize my documents 48 p 9 x 65 p 3 to the new small size 44 d 3 x 54 p 0.

    When resizing the document is it possible that tables will be will resize automatically also?

    New page in same proportions not same size of the original page size. So can not just scale the page more small.

    But you can scale a table if you to scale the block of text that appear in the table. Make the text frame exactly the same size as the table. Then hold down the Cmd/CTRL + SHIFT and scale the text block to a corner.

  • Cannot generate the plain text of the document version

    I have a strategy that uses the AUTO_FILTER. Whenever I use this policy when I call the POLICY_FILTER to filter a non-text document. The POLICY_FILTER is

    I'm on Oracle 11.2.0.2 and I can't get the POLICY_FILTER to generate a gross of a text document text version no whenever I call the POLICY_FILTER with a policy set by using the AUTO_FILTER. I specified TRUE for the plaintext parameter when calling the POLICY_FILTER, and yet I still get an HTML version of the document.

    It seemed to work correctly in 10.2.0.4, but once I upgraded to 11.2.0.2, I lost the ability to generate a plain text version.

    Is there anything else that needs to be configured with 11.2.0.2 for a simple plain text version?

    Thank you.

    Due to change of suppliers of filter for 11 g, the 'clear text' parameter has no effect - HTML is always output.

    The only suggestion I can make to use the function REGEXP_REPLACE to remove the HTML tags programmatically.

    -Roger

  • Change the source file of the insert text with a script

    I'm looking for a way to replace existing-insert text in a document with the contents of another file (by reference), using scripts. I have a document c:\referer.fm, in which there is an insert text which the source file is: c:\A.fm

    I also have c:\B.fm, and now I want to change referer.fm so that is no longer the overlay of text contains the text of A.fm, but the B.fm.

    I tried this:

    var doc is app. ActiveDoc;

    var textinset is doc. FirstTiInDoc;

    var pathtosource is textinset. TiFile;

    pathtosource = "c:\B.fm";

    textinset. UpdateTextInset();

    But it does not work. I guess that the "pathtosource" parameter can be done this way. If someone knows a way to do it, I would greatly appreciate your help!

    David

    Hello David,.

    You do not manipulate the text overlay, but a copy of the file in the text box. Your "pathtosource" parameter is a local copy of the property that you read from the actual text insert.

    Try this code instead:

    var doc is app. ActiveDoc;

    var textinset is doc. FirstTiInDoc;

    textinset. TiFile "c:\\B.fm".

    Note that the backslash must be escaped with the backslash to make it work in a JavaScript string. To make your script Fail-Safe, test the name of file textinset before changing. You do not have the textinset that you expect to have, as might also be INSET text on master pages and reference. All inserts text are in a single linked list.

    Also, update the text tagging along after that changing the path may not always work, as compared to FM, last changed the file date text inset with the last time that the textinset has been updated. To force the FM to update the textinset, you must include the following line of code after changing the filename text inset:

    textinset. LastUpdate = 0;

    Then, you can call the UpdateTextInset() method and it will work.

    Good luck.

    Jang

  • IDCS5 JS: problem with the "captured" text lose formatting

    Hi all

    Excellent script from Peter Kahrel allows us to convert the notes in endnotes dynamic in IDCS5 after which, we use some of our own JS to enter this text, put it in an orange box and then delete the original text of notes. This works very well but have just realized that the formatting (italics) who was in the original notes text does not survive moved to the new text box. Italics is still protected by a character style.

    Our code;

    //searches for endnotes, puts them in a orange box and adds the "Endnotes" heading
    app.findGrepPreferences = null;
    app.changeGrepPreferences = null;
    app.findChangeGrepOptions.includeFootnotes = true;
    
    var myDoc = app.activeDocument
    var myPara = myDoc.paragraphStyles.item ("Endnotes");
    
    // Find the text & capture its contents to a variable
    app.findGrepPreferences.appliedParagraphStyle = "Endnotes"
    origText1 = app.activeDocument.findGrep (); 
    
    //check if any Endnotes are found, nothing happens if not
    if(origText1.length!=0)
    {
    newText1=origText1[0].contents;
    
    //adds new text frame on 1st page of doc
    var myTextFrame1 = myDoc.pages.item(0).textFrames.add();
    myTextFrame1.geometricBounds = ["6p", "6p", "36p", "36p"];
    
    // Apply the objectStyle to frame
    var myOStyle = myDoc.objectStyles.item("Endnote box");
    myTextFrame1.applyObjectStyle(myOStyle); 
    
    //add captured text to text box
    myTextFrame1.contents = ("Endnotes\r" + newText1);
    
    var myDelete = myDoc.paragraphStyles.add ({name: "Endnotes1", basedOn: myPara});
    
    // Loop to apply paragraph style to text
    var length = myTextFrame1.paragraphs.length
    
    for (var i =0; i<=length-1; i++ )
    {
    //apply para style to new frame contents
    var myStory = myTextFrame1.paragraphs[0].parentStory
    myStory.paragraphs[i].appliedParagraphStyle = "Endnotes1"
    }
    
    //removes original text
    app.findGrepPreferences.appliedParagraphStyle = "Endnotes"
    app.changeGrepPreferences.changeTo="";
    app.documents.item(0).changeGrep();
    
     // remove Endnotes1 paragraph style and replace with Endnotes style
    myDelete.remove (myPara)
    }
        
    else
    {
     }
    

    As you can see enter us the text to a variable using GREP and that place in a new box (preceded by a heading). Make us a copy of the para style 'notes', which allows you to style the copied text, remove any style with the original style (the original formulation) and then delete the new style replacing wiith the original style so that the copied text back to style 'notes' new para. I don't know there's a better way, but it works for what we want - at least I thought that this was the case.

    Any thoughts appreciated gratefully. I searched the forum but couldn't find anything relevant. What Miss me?

    Thank you

    Iain

    Why don't you just "move" the texts found for the box of endNote?

    I suggest the following approach (not tested, project code):

    function moveEndnotesInBox()
    //--------------------------------------
    // Searches for endnotes, puts them in a orange box and adds the "Endnotes" heading
    {
        // Preset findGrep
        // ---
        app.findGrepPreferences = null;
        app.findChangeGrepOptions.includeFootnotes = true;
        app.findGrepPreferences.appliedParagraphStyle = "Endnotes";
    
        // Find the text(s)
        // ---
        var doc = app.activeDocument,
            foundTexts = doc.findGrep(),
            i = foundTexts.length;
    
        // If no 'Endnotes' text is found, return
        // ---
        if( !i ){ alert("No endnote found"); return; }
    
        // Creates a new text frame on 1st page w/ specific
        // bounds, and preset contents
        // ---
        var tf = doc.pages[0].textFrames.add(
            {
            geometricBounds: ['6p', '6p', '36p', '36p'],
            contents: "Endnotes\r"
            });
    
        // Preset obj and parag. style
        // ---
        tf.appliedObjectStyle = doc.objectStyles.itemByName("Endnote box");
        tf.parentStory.paragraphs.everyItem().appliedParagraphStyle = "Endnotes";
    
        // Backup the last insertion point index
        // ---
        var    ips = tf.parentStory.insertionPoints,
            ipx = ips.length - 1;
    
        // Loop through foundTexts and move texts to tf
        // (IMPORTANT: from the last to the first item to preserve Text indices)
        // ---
        while( i-- )
            {
            foundTexts[i].move(LocationOptions.AFTER, ips[ipx]);
            }
    }
    
    moveEndnotesInBox();
    

    Of course you must still deal with the possible lack of returns of paragraph or 'ghost' reference markers. I do not exactly know the context, but it seems not complicated.

    Hope that helps.

    @+

    Marc

  • Need help to highlight the query text in the document

    Hi, I'm trying to load files into the blob column and try to create the text index.

    I need to query the blob column in the original glass by a string, which should return the relevant documents with the query string, highlighted with some color.

    Can you please help me with an example of the above.

    Thanks in advance.
    SCOTT@orcl_11gR2> -- table:
    SCOTT@orcl_11gR2> CREATE TABLE document_tab
      2    (document_col  BLOB)
      3  /
    
    Table created.
    
    SCOTT@orcl_11gR2> -- procedure to load documents:
    SCOTT@orcl_11gR2> CREATE OR REPLACE PROCEDURE load_document
      2    (p_dir  IN VARCHAR2,
      3       p_file IN VARCHAR2)
      4  AS
      5    v_blob       BLOB;
      6    v_bfile       BFILE;
      7  BEGIN
      8    INSERT INTO document_tab (document_col)
      9    VALUES (EMPTY_BLOB())
     10    RETURNING document_col INTO v_blob;
     11    v_bfile := BFILENAME (UPPER (p_dir), p_file);
     12    DBMS_LOB.FILEOPEN (v_bfile, DBMS_LOB.LOB_READONLY);
     13    DBMS_LOB.LOADFROMFILE (v_blob, v_bfile, DBMS_LOB.GETLENGTH (v_bfile));
     14    DBMS_LOB.FILECLOSE (v_bfile);
     15  END load_document;
     16  /
    
    Procedure created.
    
    SCOTT@orcl_11gR2> SHOW ERRORS
    No errors.
    SCOTT@orcl_11gR2> -- load documents (directory and files must be on server, not client):
    SCOTT@orcl_11gR2> CREATE OR REPLACE DIRECTORY my_dir AS 'c:\my_oracle_files'
      2  /
    
    Directory created.
    
    SCOTT@orcl_11gR2> BEGIN
      2    load_document ('my_dir', 'banana.pdf');
      3    load_document ('my_dir', 'english.doc');
      4    load_document ('my_dir', 'sample.txt');
      5  END;
      6  /
    
    PL/SQL procedure successfully completed.
    
    SCOTT@orcl_11gR2> -- confirm files were loaded:
    SCOTT@orcl_11gR2> SELECT DBMS_LOB.GETLENGTH (document_col)
      2  FROM   document_tab
      3  /
    
    DBMS_LOB.GETLENGTH(DOCUMENT_COL)
    --------------------------------
                              222824
                               22016
                                  60
    
    3 rows selected.
    
    SCOTT@orcl_11gR2> -- text index:
    SCOTT@orcl_11gR2> CREATE INDEX document_idx
      2  ON document_tab (document_col)
      3  INDEXTYPE IS CTXSYS.CONTEXT
      4  /
    
    Index created.
    
    SCOTT@orcl_11gR2> -- confirm files were indexed:
    SCOTT@orcl_11gR2> SELECT COUNT(*) FROM dr$document_idx$i
      2  /
    
      COUNT(*)
    ----------
           319
    
    1 row selected.
    
    SCOTT@orcl_11gR2> -- function to return highlighted document:
    SCOTT@orcl_11gR2> CREATE OR REPLACE FUNCTION your_markup
      2    (p_index_name IN VARCHAR2,
      3       p_textkey    IN VARCHAR2,
      4       p_text_query IN VARCHAR2,
      5       p_plaintext  IN BOOLEAN  DEFAULT TRUE,
      6       p_tagset     IN VARCHAR2 DEFAULT 'HTML_DEFAULT',
      7       p_starttag   IN VARCHAR2 DEFAULT '*',
      8       p_endtag     IN VARCHAR2 DEFAULT '*',
      9       p_key_type   IN VARCHAR2 DEFAULT 'ROWID')
     10    RETURN          CLOB
     11  AS
     12    v_clob          CLOB;
     13  BEGIN
     14    CTX_DOC.SET_KEY_TYPE (p_key_type);
     15    CTX_DOC.MARKUP
     16        (index_name => p_index_name,
     17         textkey    => p_textkey,
     18         text_query => p_text_query,
     19         restab     => v_clob,
     20         plaintext  => p_plaintext,
     21         tagset     => p_tagset,
     22         starttag   => p_starttag,
     23         endtag     => p_endtag);
     24    RETURN v_clob;
     25  END your_markup;
     26  /
    
    Function created.
    
    SCOTT@orcl_11gR2> SHOW ERRORS
    No errors.
    SCOTT@orcl_11gR2> -- query that returns highlighted document:
    SCOTT@orcl_11gR2> VARIABLE string VARCHAR2(100)
    SCOTT@orcl_11gR2> EXEC :string := 'test AND demonstration'
    
    PL/SQL procedure successfully completed.
    
    SCOTT@orcl_11gR2> SELECT your_markup ('document_idx', ROWID, :string)
      2           AS highlighted_text
      3  FROM   document_tab
      4  WHERE  CONTAINS (document_col, :string) > 0
      5  /
    

    HIGHLIGHTED_TEXT
    --------------------------------------------------------------------------------
    It is a document test of demonstration to highlight.

    1 selected line.

    Scott@orcl_11gR2 >

  • How can I set up a list of the Figures with the extra text?

    I am writing my thesis Art History, which includes a large group of figures at the end.  My Counsellor asked that I caption images, but also provide a list of Figures before starting the actual pictures.  I got this far - I use the Table of contents feature for automatically numbered captions and then back up the text of the legend to the list of Figures.

    Here's the rub: I need to include information on where I got the pictures I use attribution, but only in the list of figures.  My Adviser has specifically requested that I don't include this information in the captions as he felt that it cluttering up the images.  How can I include small amounts of text (for example "after Jones 1987, Fig. 22") for hundreds of images in the list of Figures without putting this info in the legends themselves?

    Of course, just by typing the information in the list Figures does not - as soon as the list is updated the extra text is deleted.  I've been playing with the hidden layers, but when I create a new layer mask with blocks of text, the numbering of the original layer is disrupted.  Any ideas on how to keep numbers and include additional information in the list of Figures without adding it to the visible caption? I would be very grateful for any help.

    Maybe at the end of your legend, in a [None] color text, 0.1 pt size? Do not put in a separate paragraph, because you have to pick this up as well for your table of contents. To change this little invisible text, you can use the story editor.

    (And I'm far enough, which suggests making it conditional text, that you would normally hide, have it show only when you generated the list of Figures, before some awake dormant brain cells and required attention.)

    "Course it would work - you would get the extra text in your list, and if you hide conditional text once again, your document is reversed 'normal' State." However, what makes the conditional text visible can cause your text reformattingand so your regular content would be nice but the list of Figures - generated with more text in your document! -could be shifted a few pages...)

  • Fill the Document with the prices of the worksheet

    Hi everyone, I don't know if it's a general question or a challenge for the gurus of scripts.

    I have a huge task in front of me where I need to add prices to individual product copy items depends on the unique code for each product. As you can see in the attachment, I have a master document with applied styles that I will use throughout a catalogue I produce from scratch. The problem is that I have only gave me prices in a spreadsheet after I had already crossed and style the master copy, so for the moment, I have a lot of symbols of Sterling without price.

    Is there a method or plugin I can use that will use the excel sheet to find the product code in a single column use the value of the adjacent copy and add the price of the site appropriate?

    I downloaded the demo for WoodWing's Smart Catalog but is a bit overwhelming in its learning curve because I need super fast results!

    Thanks in advance.

    Lewis

    Hello

    I could offer you my help--but only if you work on PC

    but for this simple task you can use the script called FindChangeByList located in the example scripts folder in your installation of CS4 - [] \Adobe InDesign CS4\Scripts\Scripts Panel\Samples\ and subfolders JavaScript or VBScript file

    contents of your FindChangeList.txt file might look like this:

    text {findWhat: "R883"} {changeTo: "£ 69.00"}

    or if you need to preserve the "code":

    text {findWhat: "R883"} {changeTo: "R883\t £69.00"}

    You can replace '\t' "" (space)

    I think you can build your pretty easy FindChangeList.txt file by adding a few new columns in your Excel and then export to txt file

    Robin

    www.adobescripts.co.UK

  • How to search the selected text with a default search engine?

    Hello

    Before the recent update of the search bar, you can select your 'current' search engine, and a search for the selected text (right click on the selection) would use this engine.

    Now, it seems that you can only search for the selected text using the default engine. If that is correct, it's a big step backwards for me. For example, I can't have Google as my default search engine and the search for a text selected on eBay!

    Or am I missing something?

    Thank you!

    R.

    I find this extension very useful for selected items in the web pages. It offers all your search engines with select > right click.
    https://addons.Mozilla.org/en-us/Firefox/addon/context-search/?src=search

Maybe you are looking for

  • Why my HP support assistant keep crashing?

    HP Pavilion dv7-6175us notebook pc, Windows 7 64 bit I did not major changes, no new software or hardware installed (just the usual gazillion updates for each * beep * program and operating system) I tried to uninstall and reinstall HP support assist

  • exe of LabVIEW with HTML reports

    Hello I'm building an exe of a program using some simple screw to generate an HTML report (so I don't need to Report Generation Toolkit); When generating, I found a lot of screws included in 3 directories: NI_HTML, NI_Reports, NI_StandardReport... ar

  • HP Photosmart B110a: Solution Center does not open

    Hi, I am unable to open the solution center to scan, I can print ok and when I run the diagnostic tests and conduct the analysis test, it works well, but unable to do so through any other medium, please help, it's my head.  Thanks in advance.

  • How to install kb2446708?

    I'm unable to install the kb2446708 update.  How can I install?

  • . Cannot open Outlook 2003 on Vista

    Worked very well, with no problems until about a month. I get the message: "cannot start Microsoft Office Outlook. Cannot open the Outlook window. The set of folders coiuld not be opened. The server is not available. Contact your administrator if thi