Expanding Text Glossary Terms into Popup windows

I am using RH6 and I have a help project that uses expanding
text glossary terms throughout all the topics. When the topic is
printed out, the glossary terms are auto expanded and it disrupts
the flow of the text.
My questions are:
Is there a way to quickly change expanding text glossary
terms to just popup hyperlink windows?
If not, how can I find all the expanding text glossary terms
using the Multi Find and Replace?
Can they be searched for in a Report?

There's another way. Enclose your glossary definitions in
brackets [a means of enclosing text] so that the definition does
not interrupt the flow.

Similar Messages

  • Show some text messages in a popup window.

    I have a requirement to show some text in a pointed popup window (similar to a pointed tooltip) when a commandLink is clicked. The text consists of 2-3 lines. What can I use?
    I guess <af:popup> doesnt show up as a pointed tooltip.

    Use an ad:popup and put an af:noteWindow in there.
    Check out http://docs.oracle.com/cd/E21764_01/apirefs.1111/e12419/tagdoc/af_popup.html
    Timo

  • How to make mouseover effect text show image in popup window or tooltip?

    I am trying to display a popup image in a new window when the mouse moves over some text. Or perhaps, the image could display in a tooltip when the mouse moves over some text.
    However, I have achieved the functionality of an image appearing above the text when the mouse moves over some text. This is how I did this:
    I put this code into the Page HTML Header:
    <script type="text/javascript">
    <!--
    function setFirstChildImgDisplay(el,vis) {
    if(!el || !el.getElementsByTagName) return;
    el.getElementsByTagName('img')[0].style.display=vis;
    // -->
    </script>
    I created a region and put this in the Region's Title field:
    {div onmouseover="setFirstChildImgDisplay(this,'inline')"  onmouseout="setFirstChildImgDisplay(this,'none')">Check out Page 1 here <img src="#WORKSPACE_IMAGES#DGNR Preview Page 1.bmp" alt="Page 1 Preview" style="display:none;">{/div}
    I am thinking that I should not have all of this code in the Region's Title field. But, I don't know where else to put it in APEX.
    So my questions are:
    1. how to get an image to display in a popup window or as a tooltip when the mouse is moved over some text?
    2. where should the {div} content be placed in APEX, if not in the Title field?
    Please note that I used '{' & '}' instead of '<' & '>' just so the div would display in this post.
    Also, I would like to give credit to this website because this is where I found out how to do what I have provided above.
    http://forums.devshed.com/web-design-help-2/mouseover-effect-text-shows-image-321876.html
    Thank you in advance,
    Maggie

    It's just an image map. Play with the settings. Here's a shape layer making a hole in the water and adding a bit of color.

  • How to validate text fields in popup window

    Hi All,
    I need showing empty string validation  as tool tip for the text fields (RichInputText) on popup window when clicking submit button. kindly advice on this.

    Hi
    Below link me help u in implementing validation messages
    http://andrejusb.blogspot.in/2008/04/adf-faces-rich-client-complex.html
    Thanks
    Nitesh

  • How to print preview in a popup window?

    There are couple of websites that I use frequently and they open links up into popup windows that I would like to print using print preview so I don't waste paper. Is there a way to do print preview from a popup window or can I open popup windows in a new tab?
    Please Help,
    jpmtnman

    Thanck you for your answer.
    Unfortunatly, my plugin aim to help debug javascript code. So, it's not my code which directly open popup, it's the code I'm watching. I cannot give argument to window.open.
    Correct me if I did not understand something, but your second option consist in modifying the settings of the user browser. How could I do that from a plugin ?
    Also, I realized that when I open a popup without the plugin tester(cfx run), i.e. in opening firefox the usual way, popup windows have the menubar with plugin buttons. O.o
    Is anyone know why this difference ?

  • How to disable in java script - a popup window

    the below code works for enabledisable of the text box , but now the text box is a popup window, how do i refer to that, please help' Doug
    function enableDisable(pValue)
    if (pValue == '/')
    document.getElementById("P4_END_ITEM_DESC").disabled = false;
    else
    document.getElementById("P4_END_ITEM_DESC").disabled = true;
    footer
    <script language="JavaScript">
    enableDisable(document.getElementById('P4_END_ITEM_DESC').value);
    </script>
    onBlur="javascript:enableDisable(this.value); "

    Hi,
    The popups are constructed differently from normal page items so are a bit more complicated to disable.
    Try something like:
    function disablePOPUP()
    var r = html_CascadeUpTill('P1_ITEMNAME', 'FIELDSET');
    var img = r.getElementsByTagName('IMG');
    var i = r.getElementsByTagName('INPUT');
    i[0].disabled = true;
    img[0].style.visibility = 'hidden';
    }Note that this disables the input field but hides the icon
    Andy

  • Expanding text in an auto-sized popup window can cause the text to overflow

    First Topic includes a popup link. This includes rather long expanding text. When this is activated, the popup is too small to show everything, and has no scrolling possibility. Anyone know a workaround?
    I tried to report this as a bug through the Adobe Feature Request/Bug Report Form, but it vanished into thin air and I can't check whether it was recorded or not...

    Instead of an autosizing popup you could define a size that allows for the expansion or add some blank lines at the end of the popup topic, on opening there will be white space at the end but it provides expansion space. The latter will not work where the popup topics are long enough to invoke scroll bars.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Cursor Comes Into Text Field then open a window with Values.

    hi,
    i have to create a form with some items.there are two text field item :p1_item_group and :p1_item_name.
    i want to design these form like telly Form .eg in a telly form like if we want to enter state in text field and cursor come on State text field then open a window with all state name in right side and user select state from these window and state come in to text field.
    So i want to this type of action on p1_item_group when cursor come in to this item p1_item_group then quickly open a window with all item group name.
    MY table is
    CREATE TABLE "ITEM_GROUP_DETAILS"
    (     "S_NO" NUMBER,
         "ITEM_GROUP" VARCHAR2(500),
         CONSTRAINT "ITEM_GROUP_DETAILS_CON" PRIMARY KEY ("S_NO") ENABLE
    insert into ITEM_GROUP_DETAILS values(1,'A');
    insert into ITEM_GROUP_DETAILS values(2,'B');
    insert into ITEM_GROUP_DETAILS values(3,'C');
    insert into ITEM_GROUP_DETAILS values(4,'D');
    I want When Cursor Comes in to p1_item_group text Field Then Open a window with
    A
    B
    C
    D
    Item Group List.
    How can i do this.
    Thanks
    MANOJ KAUSHIK

    hi manoj,
    you can write onFocus event on your textbox from which you want to call a pop up window
    write a javascript function and call it onFocus event of textbox. In that function call a new popup page using window.open function.
    on that page you will have a values as you mentioned eg A,B,D etc.
    then user will select value from there and textbox will get that value.
    regards,
    Chetan

  • Making a text box expand as you type into it?

    I was wondering if it is possible to make a text box (or any kind of box) expand as you type into it.  Currently the box does not have a caption, I simply want to allow the value box to expand as i type into it.  It would also be great if it would expand to another page...does anyone know if this is possible and if so how can i do it?

    Any help would be greatly appreciated and, yes, that is a mess x about 17.   The good news is I didn't design it -- the bad news is I got tagged to try and fix it.
    I'll try to answer in order:
    You haven't used any subforms so it's not going to work as-is.
                        I don't think whoever did the initial form knew about the subform issue so no provisions made for them.
    I won't have time to look at it closely until tonight. Some questions/comments in the meantime:
    Do you really need 2 master pages - does that block need to be at the bottom of each page? Or is it just supposed to follow everything else.
                         the information is to be on the bottom of every page -- clients/workers need to sign each page to prove they have read the information
    You've used tables to do a lot of the layout - probably not a good idea.
                                  if we need to dump the tables, that's fine -  I looked at the 7_Questions_Flowing.pdf from another thread and I can make it work
                                  the way it needs to with the information in a header but they WANT it as a footer.
    You've made the Content Area the full size of the page, better to size it what you want your margins to be.
                                    ok, that should be the easy fix of the batch
    You have no master subform (or any at all for that matter...)
                                 my problem was I couldn't find a way to add a master subform that didn't give me that message.  If I couldn't get that
                                  one to work without the error message then none contained within would either ??

  • Hot to copy text from a Popup Windows in SAP CRM 7.0?

    Hi guys,
    we want to copy text from a POPUP Windows but you cannot highlighttext there.
    We've tried with "Popup to Decide List" and "Popup for Reuse components".
    Do you know if is possible to copy text from a POP-UP Windows in CRM WUI 7.0?
    We also have tried to export text to the clipboard using:
    CALL METHOD cl_gui_frontend_services=>clipboard_export
      IMPORTING
         data = lt_tab
      CHANGING
         rc = vl_rc
      EXCEPTIONS
         cntl_error = 1
         error_no_gui = 2
         not_supported_by_gui = 3
         no_authority = 4
      OTHERS = 5.
    It doesnu2019t work neither. It gets the exception CNTL_ERROR.
    Do you know any other Function/Class for this purpose?
    Thanks in advance.
    Fernando.-

    Solved.
    I've used a Text Area.

  • Why can't I save text I've entered into a PDF file?  When I hit "Save As", only the PDF document is saved, but not the text i typed into the document.  I'm using Windows 8.

    Why can't I save text I've entered into a PDF file?  When I hit "Save As", only the PDF document is saved, but not the text i typed into the document.  I'm using Windows 8.

    THANK YOU!
    Jan Whitfield
    The College Planning Center
    250 Palladio Parkway, Suite 1311
    Folsom, CA 95630
    (916) 985-0453
    www.TheCollegePlanningCenter.com

  • Unable to enter text in popup window

    Hi,
    I am new to OATS OpenScript. I am unable to enter text in the popup window.
    Here's my situation in detail:
    My application is in Oracle Siebel and the pop up is a webpage dialog.
    When I click on the Button in Siebel application, the webpage dialog pops up and there is a text box and a Submit button.
    When I was recording, I was unable to record the webpage dialog as it was not identified by Openscript recorder.
    Hence, I recorded the webpage seperately and the standalone scripts runs fine. It is able to navigate to the page and enter the text in textbox and click submit button.
    Now I am trying to integrate those Webpage XPath in my existing script but it fails to recognize the webpage or the textbox from the popup webpage dialog.
    Has anyone able to figure out how to record the popup windows using OATS OpenScript? Please help.
    Thanks,
    Sapna

    Hi Deepu,
    Thanks for replying.
    web:window[@index='0' or @title='Enter Card Number']/web:document[@index='0']/web:body[@index='0']
    web:window[@index='0' or @title='Enter Card Number']/web:document[@index='0']/web:input_text[@id='txt_name' or @name='name' or @index='0']
    web:window[@index='0' or @title='Enter Card Number']/web:document[@index='0']/web:input_submit[@name='submit' or @value='Submit' or @index='0']
    These are the XPaths I get when I record that webpage seperately.
    Also when I was recording the webpage alongwith the siebel app, I got these XPaths for the same objects:
    /web:dialog_unknown[@text='Enter Card Number -- Webpage Dialog' and @winClass='Internet Explorer_TridentDlgFrame' and @index='0']/web:accText[@index='2']
    Submit Button
    /web:dialog_unknown[@text='Enter Card Number -- Webpage Dialog' and @winClass='Internet Explorer_TridentDlgFrame' and @index='1']/web:accPushButton[@index='0' or @name='Submit']
    I also read in one of the forums that if the object is not added, I need to add it manually. How can i do that?:
    Popup wb window is not detected by openscript
    Thanks,
    Sapna

  • I am trying to use automator to open a safari popup window that will automatically log me into whatever account and I attempted to type up an applescript that utilized the "System Events" function with no avail, any ideas?

    I am trying to use automator to open a safari popup window that will automatically log me into whatever account and I attempted to type up an applescript that utilized the "System Events" function with no avail, any ideas?

    Hi
    In iMovie'11 (version 9.0.x)
    on top menu row - Apple/iMovie/File/Edit/Cut (Can vary dep. on language - in Swedish Apple/iMovie/Arkiv/Redigera/Klipp . . . )
    down Cut menu - Slow playback/Raspid Playback/Re-play in Slow Motion and onvards
    Here one can select the Pre-Set speeds
    Are you familiar with getting 'inspector' to run?
    No - but I guess that Double Click on clip/sequense or ctrl-Click on it might open it.
    Yours Bengt W

  • Help Needed. Creating popup windows when creating an app. And a text search button

    Hi, I'm new to indesign and am having trouble creating popup windows when creating an app. Also i would like to create a text search button so that people can search text within my app. Can these things be done?? im using cs6 at the moment.

    Questions on creating apps with the Adobe Digital Publishing Suite need to be asked in the DPS Forum, where I've moved your question.

  • Get values in a popup window into the livecycle forms

    Hi,
    Is it possible to get the values in a popup window in a livecycle form or assign the values in a poup window into livecycle form?
    Thanks

    Hi,
    There is a method in the Acrobat SDK called execDialog that can be called from within an XFA Form. You can pass values to and from a dialog using this method. It is a bit involved and therefore I strongly recommend AcroDialog, which is a plugin for Acrobat from Windjack Solutions (http://windjack.com/product/acrodialogs/).
    You can use this graphical interface to create dialogs and hten copy the script into your XFA Form.
    Hope that helps,
    Niall

Maybe you are looking for