Using character tag content (not format) in a variable?

Hi, all you Frame experts.
In Microsoft Word, you can create a header that includes the STYLEREF field and "call" any text defined by any style, including character styles. Therefore, you can have a glossary with the glossary term "defined" with a character style, and use this to present the term in the document header (re: dictionary-style page headers).The benefit of this is that you can have a very simple page layout for a glossary (no table, side heads, etc.) and still have dictionary-style headings.
In FrameMaker, it appears that you can only use a paragraph format in a variable that you use in the document header. Is this correct, or can you use a variable to "call" the content defined with a character format?
For example, let's say that I want a glossary that is formatted as follows:
Glossary term: A term that appears in the glossary... (where a character style, e.g. GlossTerm, is used to make the term bold, and the paragraph is a normal Body para.)
Can I get the glossary term into the page header using a variable (or via any other simple FrameMaker method)? If not, then I'll use a table w/para. format for glossary term, but that is not the client's first choice.
Please note that I don't want to get into any discussion of the merits of Word vs. FrameMaker. I'd just like to know if there is a simple solution to this in Frame.
Thanks very much,
  --Gloria Mc

The simple way to make a glossary with dictionary-style headers in FM is to
use a paragraph set as "Run-In Head" to hold the glossary term, followed by
a body paragraph to hold the glossary definition, for each glossary item.
It's easy to set up the dictionary style headers. From FM9 help:
Create a dictionary-style header or footer
You can use dictionary-style headers or footers to show the range of
information that appears on one body page or on two facing body pages.
Dictionary-style headers or footers appear frequently in documents such as
dictionaries, indexes, and glossaries.
Headers show first entry on left and last on right. Insert a different
running header/footer variable in the header or footer of each of two facing
master pages. Edit the definition of the variable on the left master page to
use the
<$paratext[paratag]> building block. Replace paratag with the paragraph tag
of dictionary terms. In the same way, edit the definition of the variable on
the right master page to use the <$paratext[+,paratag]> building block. The
plus sign tells FrameMaker to find the last paragraph on the page
matching the tag rather than the first paragraph.
1. Insert a different running header/footer variable in the header or footer
of each of two facing master pages.
2. Edit the definition of the variable on the left master page to use the
<$paratext[paratag]> building block. Replace paratag with the paragraph tag
of dictionary terms.
3. In the same way, edit the definition of the variable on the right master
page to use the <$paratext[,paratag]> building block. The plus sign ()
tells FrameMaker to find the last paragraph on the page matching the tag
rather than the first paragraph.

Similar Messages

  • Meta Tag contents not showing up in google and facebook

    I publish an online newspaper about animal news in nyc. I recently rebuilt my site in dreamweaver and have just added meta tags to my homepage and that of the most recent article. When I do a google search the homepage description comes up with a leadin from an old article. Also when I tried posting the newest article in facebook the meta tag content description did not appear. Can someone tell me how I should correctly write the meta tag in the html so that it appears in google searches and when I post articles on facebook? Below are links to my homepage and the article discussed above, as well as how I wrote the meta tags in the html. Thank you in advance for all your help!
    Best,
    Michael
    http://newyorkcompanion.com/
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>New York Companion</title>
    <meta name="Description" content="The New York Companion is a New York City-based newspaper that exclusively reports animal news. Our mission is to advance animal welfare through promoting adoption, increasing awareness and encouraging resident involvement in animal welfare initiatives." />
    <meta name="Keywords" content="Animal News" />
    http://newyorkcompanion.com/sbpgs/2012/April/High%20Rise%20Syndrome.html
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>New York Companion</title>
    <meta name="Keywords" content="Animal News" />
    <meta property="og:description" content="Every year, thousands of urban housecats fall from unprotected windows in a phenomenon known as High Rise Syndrome. So far this year the ASPCA has seen 26 cases, a nearly 45 percent increase compared with the same period last year. Mild weather could be to blame for the surge this spring. On average during the warm months, the ASPCA sees approximately three to five cases per week." />
    <meta property="og:image" content="http://www.newyorkcompanion.com/sbpgs/2012/April/High%20Rise%20Syndrome.html/<img src="../../../images/articles/2012/April/High Rise Syn_TS.jpg" />

    Michael,
    Breget is referring to the cache maintained by Google. You can't clear or update their cache - unfortunately, all you can do is wait for your site to get crawled (which can take a couple days), and once they have gathered your meta information, they will then update the description in their SERP (which can also take a couple days).
    Interestingly, I looked for your article by searching "new york companion high rise syndrome" and the first result was THIS page!!! This points to another factor which is the more popular your site, the more often it is updated. I would recommend you take a look at Google's Webmaster Tools and do a bit of research into SEO - this should help clarify things more...
    Good luck!
    Jason
    P.S. - It looks like your meta information was entered correctly.

  • Using Preloader But Content Not Loading

    Hi.
    Here's the Cliffs Notes version:
    I've a 2 frame movie: Frame 1 is the preloader; Frame 2 a movie clip (web site).
    Both work fine individualy, but the dynamic content I want pre-loaded is not loaded into the movie clip (web site) after the preloader animations.
    Verbose version:
    I'm have a preloader on frame 1 of the timeline. Here's the code:
    stop ();
    this.loaderInfo.addEventListener (ProgressEvent.PROGRESS, onLoading);
    this.loaderInfo.addEventListener (Event.COMPLETE, onComplete);
    function onLoading (evt:ProgressEvent):void
              var loaded:Number = evt.bytesLoaded / evt.bytesTotal;
              percent_txt.text = (loaded * 100).toFixed(0) + "%";
              var counter = (loaded * 100) * 3.6;
              masked_mc.mask = masking_mc;
              masked_mc.rotation = counter;
    //          trace (masked_mc.rotation);
              if (masked_mc.rotation < 0)
                        masked_mc.mask = null;
    function onComplete (event:Event):void
              this.loaderInfo.removeEventListener (ProgressEvent.PROGRESS, onLoading);
              this.loaderInfo.removeEventListener (Event.COMPLETE, onComplete);
              gotoAndStop (2);
    On frame 2 is only a movie clip (a web site).
    In this movie clip on frame 1, I have a dynamic text field into which gets loaded some external text, styled with HTML and CSS.
    At the moment, when a visitor comes to the site for the first time, he can actually see the text load, then see the CSS styles get applied. I would like to use my preloader so that this text loading and styling is completed before they get to see the home page.
    Trouble is the, while the preloader itself works, the HTML and CSS still does not get loaded until after the preloader. This makes sense as the code for calling and loading the HTML/CSS is in the movie clip.
    So I thought, put the code....
    //NEWS --------------------------
    // Load the external .swf "navidNews.swf".
    var navidNewsSWF:String = "assets/fla/navidNews.swf";
    var navidNewsURLRequest:URLRequest = new URLRequest(navidNewsSWF);
    var navidNewsLoader:Loader = new Loader();
    navidNewsLoader.load(navidNewsURLRequest);
    //Put "navidNews.swf" on the stage.;
    newsContainer_mc.addChild(navidNewsLoader);
    into frame 1, same as that for the code for the preloader. But because the empty movie clip into which navidNews.swf is loaded is not in the same frame as the preloader there are errors.
    Okay, move empty movie clip newsContainer_mc into frame 1 with preloader, which will hide the news container.
    What am I missing? Should I not put a movie clip of my web site on frame 2, but instead move the preloader into the web site movie clip, putting it on frame 1?
    I've been playing musical frames with this thing for two days now.......

    load the text and css in frame one (they need not be be used until frame 2) and incorporate those into your preloader.

  • How we will get parameters when we uses EMBED tags

    hi ,
    how we will get parameter from applet in netscape. When my swing applet using OBJECT tag, runs in IE it works fine.
    And im able to getting parameter. But in the case of Netscape (that means when i used EMBED tag) im not able to getting the parameter.
    How we will give <param tag in the case of EMBED tag. Im sending my snippet which is for only netscape.
    <EMBED type="application/x-java-applet;version=1.2.2"
    width="800" height="1200" code="myclass.class" codebase='mycodebase'
    pluginspage="http://java.sun.com/products/plugin/1.2/plugin-install.html">
    <NOEMBED>
    </COMMENT>
    No JDK 1.2 support for APPLET--please download the plugin.
    </NOEMBED>
    <param name='parameter' value='value'>
    </EMBED>
    If anybody helps, very much thankful to them
    thanks in advance

    Parameters should be inside the EMBED tag, like this :
    <EMBED type="application/x-java-applet;jpi-version=1.3.1" CODE = "Editor.class" WIDTH = 350 HEIGHT = 200 scriptable=false pluginspage="http://java.sun.com/products/plugin/1.3.1/plugin-install.html"
    TOOLBAR="true"
    TOOLBAR.FLOAT="true"
    TOOLBAR.ALIGN="east"
    >
    Matthieu

  • SharePoint 2010 Enterprise Search for User Profile tags and Notes

    Hi,
    Actually my requirement is, "Sharepoint Enterprise Search for User Profile tags and Notes".
    I would like to use the Tags and Notes in enterprise search.
    Is it possible?
    Thanks & Regards
    Poomani Sankaran

    Check if this helps
    http://blogs.msdn.com/b/spses/archive/2011/02/05/social-computing-part-3-activity-feeds-social-ratings-tags-and-notes.aspx
    If this helped you resolve your issue, please mark it Answered. You can reach me through http://itfreesupport.com/

  • How to find the selection character is xml tag or not?(CS2-js)

    I have a xml tagged indesign document, when i select a tag in paragraph i cant able to find it as xml tag, it only shows me the character contents as small box, is there any way to find the selected item is xml tag or not ?
    thanks
    subha

    I have a xml tagged indesign document, when i select a tag in paragraph i cant able to find it as xml tag, it only shows me the character contents as small box, is there any way to find the selected item is xml tag or not ?
    thanks
    subha

  • Bypass content-based format detection so I can use a custom iFilter in Sharepoint 2013 Search

    Can I get SharePoint 2013 Search to bypass the content-based format detection and use the file extension to determine the format (and therefore the format handler so that I can use a customer iFilter)?
    We have a proprietary file format which uses xml, and we use a specific filename extension to indicate the type of file.  We have a custom iFilter to parse the file, because we only want some of the content to be indexed.  The iFilter works with
    Windows Search.  I’m now trying to use our custom iFilter to search the same files with SharePoint 2013.  SharePoint 2013 Search appears to determine a file’s format from its content and not from its file extension (I have confirmed this by changing
    the extensions of .docx and .txt files).  SharePoint 2013 search appears to use the built-in XML format handler to index our proprietary files.  Can I get SharePoint 2013 Search to bypass the content-based format detection and use the file extension
    to determine the format (and therefore the format handler)?  I think SharePoint 2010 may allow this, but I can’t find out if/how it is done in SharePoint 2013.
    I understand that built-in format handlers can’t be replaced by custom iFilters, but I don’t want to replace the XML format handler for .xml files.  

    Hi jeh271,
    quite interesting, because as i know iPersistStream should be installed when you need to use ifilter when using windows search.
    just curious, if you also restart the spsearchhostcontroller?
    as i know the search should have the content-based format,we cant bypass it, if we bypass it, then it may broke.
    i saw some thread about this before:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/944e6878-a7f0-4c0e-98b7-a7fb9faeef1b/bcs-connector-and-mimetypefield
    ifilter example:
    http://msdn.microsoft.com/en-us/library/hh694268(v=office.14).aspx
    last time i did this, seems similar issue:
    • The custom iFilter is working in SP 2010 but when we followed the same process of registering the iFilter in SP 2013, it was not working.
    • So, we knew that we were some missing some extra step in registering the filter in SP 2013.
    • Finally, we involved the Product group and we found out that we need to run an extra PowerShell commandlet apart from following the steps to register it in SP 2010 (given in this link:- http://msdn.microsoft.com/en-us/library/hh694268(v=office.14).aspx )
    • We ran the commandlet described here in this article http://technet.microsoft.com/en-us/library/jj219556.aspx.
    • The New-SPEnterpriseSearchFileFormat cmdlet adds a new file format and a corresponding file name extension to the search parsing system. This binds the file format to a filter-based format handler in the search parsing system. Thus, the search parsing system can only parse the new file format if the user has installed a corresponding filter-based format handler, an IFilter, for the new file format. If the installed IFilter registers more than one file name extension, the user must use the New-SPEnterpriseSearchFileFormat cmdlet to add a new file format to the parsing system for each of these file name extensions. The user must also ensure that the file name extension of the new file format is a member of the file-type inclusion list. The file-type inclusion list specifies which files that are crawled, based on their file name extensions. The system will only consider the new file format after a restart of the content processing components
    • The example for our scenario would be something like this:-
    New-SPEnterpriseSearchFileFormat -SearchApplication $ssa -FormatId dwg -FormatName DWGFiles -MimeType application/dwg
    • Then, we restarted the SharePoint Search Host controller service on the machine where you have installed the iFilter and this resolved our issue and we were able to successfully search with .dwg files using the custom iFilter.
    i am not quite sure if search treating your file as an XML file, if it is true, perhaps you can check this xmlmapper:http://msdn.microsoft.com/en-us/library/ff795813(v=office.14).aspx
    Regards,
    Aries
    Microsoft Online Community Support
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Get Content Security Role using PCS tags in Presentation Template

    I'm trying to determine what content security access(role) a user has in Publisher using PCS tags in the Presentation Template. Basically I need to check whether a user has access or not to a content item in Publisher and before an action. I've looked through all documentation can't find anything related to this, I know I could do this using remote API but I'd rather use PCS tags if possible.
    thanks

    Vince,
    I don't think this is possible directly, however we have enabled this in publisher by checking if the user is in a specific group, or content manager and doing a check with the following code if it helps.
    <pt:standard.choose xmlns:pt='http://www.plumtree.com/xmlschemas/ptui/'>
    <pt:standard.when pt:test="stringToACLGroup('group=1,<pcs:value expr="groups"></pcs:value>;').isMember($currentuser)" xmlns:pt='http://www.plumtree.com/xmlschemas/ptui/'>
    </pt:standard.when>
    </pt:standard.choose>
    You could do the same with users. We added a select tree to choose the users and groups within publisher.
    Hope this helps.

  • Could not use getDownloadURL tag

    Hi
    i am trying to print getDownloadURL tag . as it takes only two parameters i am supplying the two values
    <%@ page language="java" contentType="text/html;charset=UTF-8"%>
    <%@ taglib uri="http://www.bea.com/servers/portal/tags/content" prefix="cm"%>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    <%@ taglib prefix="templates" uri="http://www.bea.com/servers/content/ui/jsp/templates" %>
    <cm:getNode id="pageNode" path="/CP_CM_REPO/WhatsNew/test1"/>
    <c:if test="${templates:isPDF(pageNode)}">
    It is the PDF page
    <br>
    <c:out value="${templates:getDownloadURL(pageContext.request, pageNode)}"/>
    </c:if>
    and i am this error
    javax.el.ELException: Function 'templates:getDownloadURL' specifies 3 params, but 2 were declared
    I could not get why it is happening

    Hi Steve
    Thanks for ur support.
    My development environment is
    IDE is workshop of weblogic portal 10.3.0
    opertaing system is windows xp
    portal software is oracle weblogic portal 1o.3.
    this is what i understood from your question?
    is any more details you needed.
    the problem is the pageContext.request values nt coming properly, some times it is coming with proper value , and some times with some garbage value.
    i could not in which senarios it is getting proper values and in which senarios it isgetting bad garbage values.
    All that my requirement is that retrieving the images/pdfs/wsword files from CM and display in my jsp.
    Is there any other approach available to show images in jsp other than using template tags?

  • Can i make own formatted textbox using custom tag

    Hai,
    Can i create own format textbox similar to vb activex control.for example i want make own formatted textbox for enter only numeric value if entry any alpha value it's show error.Is this possible using custom tag

    Hai,
    Can i create own format textbox similar to vb
    activex control.for example i want make own
    formatted textbox for enter only numeric value if
    entry any alpha value it's show error.Is this
    possible using custom tag
    If you mean a custom text box in a web page without an applet (in other words an html component), then Java has nothing to do with it. And by mentioning activex (even only in a 'like' comparison), and custom tag, you are once again hinting that you want an html component. I think you need to place your request to a JavaScript Forum, which, once again, has absolutely nothing to do with Java.
    A "custom tag" in JSP is not an HTML Tag. It may look a little like an html or xml tag, but it is evaluated on the server side. The control you need must be executed on the client side, which, once again, tells me you need to post to a JavaScript forum.

  • XI XML Parser: tag content with "'", single apostrophe: invalid character

    Hi all,
    we import XML-documents with the file adapter in a sender channel. everything works well.
    But if one of the XML-tag contents contains a single apostrophe ( ' ), then the XML parser stops with an error "An invalid character was found inside an entity reference. ". The message can not be processed. If I test the message content in the mapping -> no error.
    When the single apostrophe is dereferenced by an additional single apostrophe the XML-File can be processed.
    Question: does anybody know how this can be handled because it is not very nice of SAP XI to send single apostrophes in outgoing messages but cannot handle it in incoming messages from other systems? special adapter settings?
    Thank you very much
    regards
    Hans

    check bhavesh reply
    Suppress Special Character
    also check
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/9420 [original link is broken] [original link is broken] [original link is broken]
    Implementing a Java Mapping in SAP PI to remove Escape Sequences from a file

  • I've been using FCP 7 on my iMac for quite some time with great success.  Lately I created a new project and the browser window does not format properly (it's O.K. for previously created projects). The effects window is also not displaying properly.

    Help! My browser window is suddenly not formatting properly. (losing browser formatting, glitch, bug)  I'm using FCP 7 on an iMac with OS X 10.8.5 and have been successfully doing so for a couple of years.  I fear my Final Cut Pro is corrupt and I have to re-install. Anyone ever see this problem? Old projects display and behave fine in the browser, but any new project I create, totally loses the formatting in the browser and the browser also does not display the "effects" window properly anymore. (see below)

    YOU ARE A LIFE SAVER!  I reinstalled the program and everything. THANK YOU! THANK YOU! MY HERO!!!

  • How do I delete a character tag so it does not continue to show up in my designer.

    Hello.
    I have deleted a character tag from the catalog but it keeps showing up in the designer and stays associated with any new paragraph tag I try to create. How can I set the character designer to blank?
    Thanks

    >System Preferences>Mission Control>Show Desktop...should be F11:
    If not, change it.

  • Webservice Connection Error: Signed Content not in recognizable format

    Dear SAP experts,
    We're having a webservice connection error, when our trading partner is sending test messages to our server.
    They are getting this specific error,
    service: GIPPullAgent.Util:checkSignatureNoCache
    Error: [ISS.0086.9062] Signed Content not in recognizable format
    [ISS.0086.9062] Signed Content not in recognizable format
    Have you encountered this specific error?
    Kindly advise for any helpful tips.
    Thanks!
    Gerberto

    Hi,
    The issue was already resolved.
    We generated the correct Signature value which is needed in the WSDL.
    Thanks for your support!
    Gerberto

  • Pdf content not loading while printing using JavaScript

    In my web app, I am trying to print a doc using JavaScript, but content of the pdf is not getting loaded, this can be seen in the below link.
    https://drive.google.com/file/d/0B2nqjT-VxFWwVVhsQ1hLUnJ3MFU/view?usp=sharing
    Code:
    var printWin = window.open(this.lURL, '', 'top=100, left=500, width=900, height=800, titlebar=no');
    printWin.print();
    "this.lURL" is link which brings the pdf file/doc.
    Note: As soon as I click on cancel button of print, the content gets loaded.
    And if I click print blank page gets printed.

    ''guigs2 [[#answer-708101|said]]''
    <blockquote>
    I understand that the web app that your are developing has a function to print the contents of a pdf created with javascript, :
    Please first check these basic troubleshooting steps for printing:
    *[[Fix printing problems in Firefox]]
    Does this happen with the default pdf viewer or another?
    Next also check with stackoverflow.com:
    [https://support.mozilla.org/en-US/kb/where-go-developer-support Where to go for developer support]
    </blockquote>
    I want a solution which doesn't require to reset or change the settings of the browser.
    Once the app is available globally everyone should be able to use this functionality without altering the settings of the browser.

Maybe you are looking for

  • Restriction of GR & IR for PO with specific document type

    Hi, How we can restrict doing Goods Receipt & Invoice Receipt for a Purchase order, instead they do the payment directly for the Purchase order item in FI. We need to restrict GR & IR for PO with particular document type. Regards, Srinivas

  • Creating a zip file from the contents of a directory

    hi, I am having a problem as the title suggests with a zip fil creation... using the basic example zip.java i wished to edit it so it doesnt zip a file fro the current directory but rather a directory i inputted. It is able to read the first file the

  • How to find infoobject in a transport?

    Is there any transaction to find out specific infoobject /data element included in a transport, like in R3 we have transaction SE03 ? Thank you , Sam

  • Monitor or TV for laptop

    Hello,   I am looking to buy a bigger monitor for my work computer, its a laptop, compaq presario F700.  I am hoping to get something around 32" or bigger.  I saw a good deal on 32" TV's on the website but I'm not sure if they will work or not.  I us

  • Firefox does not load latest version of web site

    Guys, when updating a web site that I administer, Firefox absolutely refuses to load the latest version unless I reboot or, in most cases, wait well over an hour. I need this browser to update to the latest version of every web site I vist WITHOUT EX