Calling WebHelp from JS doesn't display content in frames

Hi,
We are using WebHelp on a UNIX server run from the cloud, to replace the original spartan-at-best, flat-HTML help content that was released with a web-based program, all of which was "context-sensitive" via mapping to #Name destinations within the old help  web page. To make it work, we have a JavaScript that maps the old #Name destinations to the new WebHelp MapIDs and redirects the old help web page to a subdirectory that has the WebHelp output files. But, it's not working correctly. If we invoke WebHelp via
HH_DISPLAY_TOC, the new WebHelp opens within the frameset, but the context-sensitive mapping doesn't work.
The programmer says we need a way to call help using a URL. So, I sent him what it says in the RH help system for programmers:
RH_ShowHelp(0, "IQ_Help/util_en.html", HH_HELP_CONTEXT, HelpTag)
I also sent him a PDF of the RH help topics for programmers about calling WebHelp.
From what I gather reading the JavaScript (and I am NOT a programmer), he has set HelpTag as the variable for the Map ID that is provided in a .properties file.
Tried unsuccessfully using the following ways of calling it (not as sequential lines of code, but as replacement methods of the same line of code):
RoboHelp_ShowHelp(http://[servername]/IQ_Help/util_en.html, 0)
RH_ShowHelp(0, "IQ_Help/util_en.html>UUGuide%20SPi",HH_HELP_CONTEXT, HelpTag)
RH_ShowHelp(0, "IQ_Help/util_en.html>UUGuide%20SPi",HH_DISPLAY_TOC, HelpTag)
http://[servername]/robohelp/rest/robowindow?wtype=ctx&context=HelpTag <-as a call to URL
I'm sorry, I'm looking like a real idiot around here -- I really don't know much at all about Java or JavaScript, and I have never had to direct a programmer through how to get the help call to work, and I'm at the end of his patience with me... I don't know where else to turn...I need some insight from YOU.
I thought about providing the text of the JavaScript here, but I don't know for sure whether it would show up as text, or how to make it an attachment that's safe. Please tell me...?
Thanks in advance,
Rene

Hi there
If all they want is to use URLs, see if this helps...
Click here to view
Cheers... Rick
Helpful and Handy Links
RoboHelp Wish Form/Bug Reporting Form
Begin learning RoboHelp HTML 7, 8 or 9 within the day!
Adobe Certified RoboHelp HTML Training
SorcerStone Blog
RoboHelp eBooks

Similar Messages

  • How to call webhelp from C#

    I don't want to seem too simplistic, but I've spent at least
    2 hours trying to call webelp files from c#, without any luck at
    all. All I ever get is three little beeps from my computer, and the
    IE browser never shows up at all. Here is some background
    information:
    I read all the documentation, beginning to end.
    (On WinHelp_4) I compiled up the CSH_CS (csharp version)
    project, and am able to call my simple RH WinHelp file (Dummy.chm)
    just fine, using a primary url of "c:\\Docs and
    Settings\\etc\\RoboHelp 6.0\\Dummy\\!SSL!\\WinHelp_4\\Dummy.hlp". A
    MapID = 1 is required in the CSH test dialog in order for my help
    file to load. This loads my help from the little CSH test dialog
    fine.
    (On WebHelp) After getting the WinHelp_4 version to work, I
    switched the primary output to WebHelp in the SingleSource Layout
    section, and specified that RH should create a subdirectory
    (HTMLHelp) to store the WebHelp files. I regenerated the project,
    and successfully viewed the resulting web output using the View
    Results or the View Primary Layout on the RH toolbar. So I'm
    thinking my help files are ok. But..... I can't get the WebHelp to
    display from the CSH test dialog, no matter what I try.
    Currently I am using roughly the same primary URL in the CSH
    c# project: "c:\\Docs and Settings\\etc\\RoboHelp
    6.0\\Dummy\\HTMLHelp\\!SSL!\\WebHelp\\Dummy.htm". I do not append a
    window >main to end of the primary URL. It doesn't matter if I
    use a MapID of 1 or blank. It doesn't matter if I choose Context,
    Index, Search, etc. No matter what combination of things, the help
    file will not show. The file exists---if I double click the
    Dummy.htm file, the help file loads immediately in IE.
    So my help files seem ok, and the CSH_CS code seems ok (at
    least it works with WinHelp_4). All I have changed is the path to
    my help file. (Oh, and I tried to point at an existing example
    *.htm in the RH Samples directory, with the same results---just a
    couple of little clicks from IE (presumably to say "There's an
    error somewhere").
    Could anyone give me specific instructions on what I might
    try to solve the problem? I'd like to know the specific syntaxes
    for using windows, and MapIDs in my URL string too, if you know
    that. Here is what I think they are:
    url = "Startpage.htm" - to load the whole help system
    url = "Startpage.htm>main" - to display in a particular
    window
    url = "Startpage.htm<id=2" - to display mapid 2
    Thanks for your help

    Well, another hour and a little more progress. Now I can
    display WebHelp from C# through the RoboHelpAPI (although it seems
    pointless, because of the bugs and problems in the CSH_CS example
    program and IE web browser popup window problems). First, here is
    the code that displays the WebHelp system (from the top level, in a
    standalone IE browser instance)
    // try 2
    int cmd = CRoboHelpAPI.CSH_DISPLAY_CONTEXT;
    CRoboHelpAPI cHelp = new CRoboHelpAPI ();
    int ID = 1; // context id; the number doesn't matter at all
    string foobar;
    foobar = "C:\\my pathname\\RoboHelp 6.0";
    foobar += "\\Dummy\\HTMLHelp\\!SSL!\\WebHelp\\Dummy.htm";
    string second = foobar;
    cHelp.RH_AssociateOfflineHelp (foobar, second);
    cHelp.RH_ShowHelp ((int) this.Handle, foobar, cmd, ID);
    return;
    From RoboHelp_CSH_CS.cs:
    // reset the command
    switch (nCommand) {
    case CSH_DISPLAY_CONTEXT:
    // notice that I commented this line out -- this is what
    allows it to "work"
    // This is also why the ContextID number above doesn't
    matter--we ignore it.
    //strHelpURL += "#<id=" + nData.ToString();
    break;
    From RoboHelp_CSH_CS.cs:
    public static IWebBrowserApp
    GetBrowser () {
    for (int nIdx = 0; nIdx < 2; nIdx++) {
    try {
    if (m_cExplorer == null)
    m_cExplorer = new InternetExplorer ();
    if (m_cBrowser == null)
    m_cBrowser = (IWebBrowserApp)m_cExplorer;
    // I had to add this code myself, because the browser is not
    made
    // visible by the Adobe CSH_CS.cs example program. A defect,
    // in the example program, for sure.
    ==> m_cBrowser.Visible = true;
    So to summarize, if you fix the CSH_CS example code (1) to
    make the browser visible, and (2) to ignore the contextID number,
    the code in this posting will show your WebHelp system in a new IE
    window, with the usual TOC frame on the left, and the topic window
    on the right, in a main window. But wait... there's more...
    IE POPUP WINDOWS
    The example above commented out some code under the case
    branch for CSH_DISPLAY_CONTEXT. The code appended some extra
    characters to the URL to tell the browser to display a specific
    page, rather than just the start page. Similarly, the code for
    CSH_DISPLAY_TOC/INDEX/SEARCH branches also appends characters to
    the URL, to tell the browser to display a specific page in the help
    system.
    The problem with all of this is that IE treats all these
    single page displays as pop-up windows, and blocks them. So that's
    why in my original case at the top of this posting I only heard a
    couple of clicks (and saw nothing) when I tried to display my
    WebHelp. I saw nothing because the browser was not made visible by
    the code. I heard the two double clicks (click-click, click-click)
    because IE "plays a sound when a pop-up window is blocked".
    So there will probably be a big policy collision on user
    desktops if your C# app tries to display specific web pages in
    WebHelp. If users want to block popups for general web surfing,
    they can't see specific WebHelp pages, and vice versa. Ugh.
    One possible workaround is to tell IE to "Always display
    popups in separate tabs" (in Options/General/Tabs/Settings). I
    tried this setting, and then uncommented my CSH_DISPLAY_CONTEXT/etc
    code blocks. As expected, all the appended characters on the URLs
    forced the display of specific pages, which meant that IE treated
    them as popups, and forced them into new tabs.
    So what you actually see is
    (1) a new instance of IE becomes visible,
    (2) the pathname to the help system (plus appended control
    characters) is shown on the first tab (in my case,
    file:///C:/Documents%20and%20Settings/kkkwj/My%20Documents/RoboHelp%206.0/Dummy/HTMLHelp/ !SSL!/WebHelp/whcsh_home.htm#id=2).
    This is odd, because the primary URL I fed in to the API in the
    code above was "C:\\...path\\Dummy.htm" (with a ContextID = 2
    parameter). I have no idea how my Dummy.htm was changed to
    whcsh_home.htm by the API. Go figure. I suppose the switch takes
    place if appended characters are found on the end of the URL, and
    the switch is done to support context IDs somehow.
    (3) the desired page is displayed in a separate tab in IE.
    My conclusions are that:
    (1) Adobe should fix their examples to save people all this
    headache. They should fix the code, make the browser visible, and
    provide some nice documentation on what the secret syntaxes are for
    the appended characters (<id=, cmd=idx, cmd=fts, cmd=toc,
    <windowname), how and when you should use the secret syntaxes in
    the URLs you feed into the RH API, how the whcsh_home.htm switch
    works to support appended characters, what will happen on the user
    end with popups if you use appended characters, and the policy
    collisions that will result, and a recommended course of action for
    developers.
    (2) The hassle with the popups just isn't worth it. So I will
    be calling my help system from the top level all the time, and will
    forego the utility of context sensitive help. It's WAY too much of
    a problem with WebHelp. (Of course, context sensitive help works
    great with the old WinHelp_4, but WinHelp_4 has other limitations.)
    What a long process to debug all this stuff. Adobe fell way
    short on this one. But hopefully others can use my postings here in
    a time of need. (Thanks to Adobe for the forums, and for Peter's
    fast response.)

  • Chrome doesn't display content?

    I'm using the TCS 3.5 version of RoboHelp, a.k.a. RoboHelp 9. Chrome looks like it's version 16? There are other versions being used, though.
    We almost went crazy yesterday, because my boss followed my instructions for turning her project into WebHelp, and it came up empty. Literally. No left nav table of contents, no search, no text, nada. Just the skin. And the skin was a slightly different color, and the spacing was funky. After a few hours of hair-pulling, having others walk through the process and generate RoboHelp just fine, we found out her default browser was Chrome. So I pulled her output off our fileshare, and opened it in Chrome, Firefox, and Explorer. The last two were fine. But Chrome was empty, and the skin didn't look right. It looked fine on the other two browsers.
    So, what do we do? Is there some way to make RH Chrome-friendly, the way you can add Mark of the Web? Or are we just SOL, and Chrome and RH don't play well together?

    Hi there
    Does Chrome display it correctly from a Web Server? For example, does the link below work in your boss' Chrome browser?
    Click here to view
    I seem to recall that Chrome has issues with WebHelp from any HAT because of the framesets. But only when you attempt to view locally. It's a security thing. So is Mark of the Web. But that's only applicable to Microsoft Internet Explorer.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Firefox doesn't display content, especially links.

    This is my problem in a screenshot: http://d.pr/i/DjkB
    The content isn't displayed and especially links. Links are always not there and sometimes text is displayed but all websites are disfunctional because of this.
    Here's a link to a screenshot displaying how the same website should look like: http://d.pr/i/ZRvN

    Did you manage to find out which font Firefox is using in the case when text doesn't display?
    You will have to remove or update that font.<br />
    You can also check that font in Fontforge.
    *http://fontforge.sourceforge.net/

  • My 4s - 'Died' today - screen black, wont turn on/off.  Battery is full. Tried restore advice - nothing.  When I call it, 4s does nothing but phone I'm calling it from rings doesn't go to v/mail. Can't locate on 'find iphone' or itunes Plse HELP!

    Phone blank, no signs of life!  It's fully charged, I haven't dropped or split anything over it. I cant turn it on/off anything!  Tried all the restore advice on 'support' - nothing.  Tried find my iphone - apparently it's off line? Itunes doesn't pick it up either.  If I call it nothing happends but the phone I'm calling from rings, doesn't go to v/mail.  Please has anyone got any suggestions - I'd really appreciate it. x

    Take it to the Apple Store and ask them to check it out

  • Finder doesn't display contents of shared NAS

    I recently upgraded my NAS to the latest version and since then I cannot access the NAS in the usual way from any Mac. The Macs are Macbook Pro 2.4 duel core OSX 10.7.5 and iMac 3.2 i3 10.6.8. The NAS is a STORA 2110.
    I can connect using the Stora application or using Go - Connect to server - smb://STORA then choose the partitions to mount and I can see the files on MyStora.
    If I select Stora from the left hand side of the Finder window under SHARED, I says status is connected but it doesn''t show any files. It spins and spins.
    I think this is something to do with how apple speaks to linux/windows...
    You may wonder what the problem is as I can see it, well I have 27,000 songs on the Stora that have been added to iTunes from the old way, the shared connection, and iTunes cant see them when I connect using the Go - Connect to server... connection. I think because the path to the Stora is different for each connection.
    I'm happy to have a work around if it is the path?
    HELP!

    As it turns out, spotlight indexing for some strange reason has been turned off for my HD.
    Is it really possible, that "sudo mdutil -avE" only deletes the file, and that a new one isn't automatically created? Anyways using Spotless revealed that indexing was actually turned off for my HD, and enabling was just a click. The throbbing dot and all that came to life after e few seconds.
    Actually I think it may have been turned off every since i upgraded to 10.6 - and I've just lived with it, and concluded, that Spotlight had become slow in 10.6 and instead I just used Quicksilver. No wonder it was slow when it didn't have an index!

  • Calling WebHelp From Web Page

    Greetings,
    First off, yes I did check the forums and went to pages
    authored and linked by Daigle [1], Grainge [2] and others. Those
    are great pages, yet for me a problem remains.
    When help is called:
    (1) A *small* window opens in the bottom right-hand corner of
    the screen.
    (2) The window seems to ignore the context-sensitive call. No
    matter which numeric value I specify for the call, the web page
    always opens to first page of the project.
    (3) This behavior is also observed when using John Daigle's
    sample:
    http://download.macromedia.com/pub/developer/context_help_pt2.zip
    ~~~ Gory Detail ~~~
    I have this lin in the HEAD section of the page.
    <script type="text/javascript" language=JavaScript1.2
    src="RoboHelp_CSH.js"></script>
    <p>Click for <a href='javascript:RH_ShowHelp(0,
    "./path/FileName_csh.htm>webhelp", HH_HELP_CONTEXT, 10)'>Help
    10</a></p>
    I am using FireFox on Xp.
    Any advice you could provide on this subject would be
    helpful. Thank You!
    [1]
    http://www.adobe.com/devnet/robohelp/articles/context_help.html#
    [2]
    http://www.grainge.org/pages/authoring/calling_webhelp/calling_webhelp.htm
    http://www.grainge.org/pages/authoring/calling_webhelp/using_map_ids_merged.htm

    I set something up for someone else so click this link and
    see it work.
    http://www.grainge.org/test/cshcall/startpage.htm#csh.htm
    For help on your local drive, the call would then be
    something like
    file:///C:/rh7_test/!SSL!/WebHelp/startpage.htm#csh.htm
    With this method you are not using the RoboHelp_CSH.js file.
    Is that something you have added to the source or to the output.
    Create a simple project that has a default topic and a topic
    that you want to call when opening the help, call that Context
    topic as I have in the example. When you generate the help locally,
    change the start page name in the wizard to startpage.htm. That way
    you have startpage.htm, default.htm and csh.htm. Makes it simple to
    see what is going on.

  • My iphone 5 calendar, synched from Outlook, doesn't display location

    I have recently made the transition from Android to an iPhone 5.  My iPhone calendar events are synching from Outlook, except that the location is not being shown.  This is a serious shortcoming since this is the field that not only is used to show physical meeting/activity locations, but also in my world, the call-in information for teleconferences.  I have actually had to pull off the road and do Internet searches for an address or ask someone else in a meeting with an Android or Blackberry to look up this information for me. 
    Am I missing a setting somewhere?  If this is not an available feature, then can anyone recommend a suitable app that I can use that will provide this basic piece of information.
    As much as I like the physical look and feel of my iPhone and the glass screen, I miss Android's standard back and menu buttons.  Even as a geek and having used my phone for 2-3 months, I still find myself lost and frustrated about not having more control and easy navigational cues. 
    Thank you in advance,
    Paulette

    Are you syncing with Outlook, or with Exchange? I sync with Exchange and the location appears immediately under the name of the scheduled event.

  • NASA widget doesn't display content

    Does anyone know anything about this: I went to the widget download site and downloaded the NASA widget. It needed the realplayer plug-in, so I downloaded that. That needed stuffit expander, so I downloaded that. Now I find out that none of this will work on an intel based iMac:
    http://real.custhelp.com/cgi-bin/real.cfg/php/enduser/stdadp.php?pfaqid=5659
    So I can't get a NASA widget, created for Mac, on my Mac????
    Please help me with real information.

    Please, which version do you use? If it is 6, exact version number.

  • Calling javascript from swf (which is source file of frame) - problems with OPERA

    hey,
    right now i have the swf-file as the source file for a frame,
    because i want the swf-width depend on the browser-size.
    it looks kinda like this:
    <frameset cols="10,*,10">
    <frame src="border.htm" name="leftFrame">
    <frame src="file.swf" name="mainFrame">
    <frame src="border.htm" name="rightFrame">
    </frameset>
    from the swf i call a javascript-code that is located in the
    'border.htm'
    file.
    the javascript simply opens a popup window.
    function open_popup() {
    MM_openBrWindow('popup.htm','pop','toolbar=no,location=no,status=no,menubar=no,scrollbars =no,resizable=no,width=400,height=500');}everything
    works fine ine firefox, ie, netscape (at least in another tab),but
    when it comes to the opera browser (and apparently also safari)i
    don't get any reaction at all ...i told opera to allow
    popup-windows, so that shouldnt be the reason.now i am thinking
    maybe some browsers have a problem with callingjavascripts from
    within swfs that are not located in that specifichtml-file?maybe
    some of you encountered the same problem ...would be grateful for
    any advices ...thanx,eva

    hey,
    right now i have the swf-file as the source file for a frame,
    because i want the swf-width depend on the browser-size.
    it looks kinda like this:
    <frameset cols="10,*,10">
    <frame src="border.htm" name="leftFrame">
    <frame src="file.swf" name="mainFrame">
    <frame src="border.htm" name="rightFrame">
    </frameset>
    from the swf i call a javascript-code that is located in the
    'border.htm'
    file.
    the javascript simply opens a popup window.
    function open_popup() {
    MM_openBrWindow('popup.htm','pop','toolbar=no,location=no,status=no,menubar=no,scrollbars =no,resizable=no,width=400,height=500');}everything
    works fine ine firefox, ie, netscape (at least in another tab),but
    when it comes to the opera browser (and apparently also safari)i
    don't get any reaction at all ...i told opera to allow
    popup-windows, so that shouldnt be the reason.now i am thinking
    maybe some browsers have a problem with callingjavascripts from
    within swfs that are not located in that specifichtml-file?maybe
    some of you encountered the same problem ...would be grateful for
    any advices ...thanx,eva

  • Call function from action panel in second frame

    I am starting to learn Adobe Flash. I'm using Flash CS6.
    I have a file called test.fla and another called bikertest.as
    Bikertest has this code:
    package as3.grey{
    import com.grey.utils.Console;
    //import com.grey.utils.ClickTag;
    import flash.display.MovieClip;
    import com.greensock.TweenNano;
    import com.greensock.easing.*;
    import flash.events.*;
    public class bikertest extends MovieClip {
    private var mc:MC;
    private var console:Console; 
    public function ray():void{
    init();
    trace("hi from here");
    mc=new MC 
    ; addChild(mc);
    I tried:
    import as3.grey.bikertest.as; 
    var t = new bikertest(); 
    t.ray();
    I want to be able to call ray() from the Action Panel in the second frame in test.fla . I hope this is clear. How can I do that? /Thanks!

    assuming your fla is in a super directory of as/grey and everything in bikertest is defined, use:
    import as3.grey.bikertest;
    var t:bikertest=new bikertest();
    t.ray();

  • WebHelp not displaying content in left nav pane

    Any suggestions for why WebHelp is not displaying contents in
    the left navigation pane? When Help is called, it displays the
    frame (including buttons such as glossary, search, contents, etc)
    and the work area, but does not show the TOC in the left navigation
    pane.
    I have also tried generating FlashHelp, with the same
    results. This time, only the work area displays. Any suggestions to
    fix this?
    This is a new project, where RoboHelp is being deployed for
    the first time. Any suggestions for making this a simpler
    transition would be much appreciated. I have used RoboHelp for many
    years with a different company and do not recall ever running into
    this many problems.
    Help!

    Sorry, I haven't used the CSH method which, by the way, was
    designed to show only the topic at first, I think.
    I give my developers a list of path/filenames for topics, and
    they use this form:
    .../helpdirectory/myproject.htm#targettopic.htm
    There are some shortcomings to this method, which leaves the
    window open and, when you call another topic, another new window
    opens. In other words, you have to close the help window manually
    to avoid windowmania.
    A solution is a little js that checks to see if a window is
    already open, closes it and opens a new one. (If no help window is
    open, it's a harmless js error.) It's fast enough that you wouldn't
    notice.
    The downside here is losing the browser history. Forward and
    back buttons work only so long as the help window stays open.
    In my opinion, this is not a major concern, since many Web
    based applications these days tell users not to use the back
    button. Production users won't mind so much.
    For ordinary people doing e-shopping and online banking, the
    browser back button is anathema.
    The bottom line is, if you have a decent set of navigating
    options built into the design -- TOCs, left or right rail lists,
    useful links at top and/or bottom of the topic page, the back
    button can become superfluous.
    Browe sequences work fine from any point in the lineup (I
    know, it's not the same as browser history -- unless you give them
    a really useful set of sequences).
    The forever-loading left pane is gone in RH 7.
    Hope this is useful.
    Harvey

  • SAPUI5 Application doesn't display in Portal Content Area

    Hallo Guys
    We are developing a SAPUI5 application that needs to be displayed inside the portal.
    The problem is that the SAPUI5 app doesn't display in in the content area, no erors, just a blank page, you have to set the iview to open in a seperate headerless window, then it works. But it needs to work in the content area.
    Our findings: a possible cause is that the IE mode when inside the Portal content area is IE5 Quirks, and when it displays in a new window, the mode changes to a more recent and acceptable mode for SAPUI5, IE9.
    Is there any solution to this? We get the same result with both URL iView and using the SAPUI5 iView in content provided by SAP. We are on NW 7.4
    Regards
    Antonette

    Hi Antonette,
    As Lawrence explained the reason is indeed that quirks and standards mode can't run together on the same page (not only in portal but it's a limitation by MS).
    Since your framework page is in IE5 quirks mode the UI5 application doesn't run in the content area, you can run it by selecting in the iView properties "Launch in a new headerless window (strandards)", that will open the UI5 application in a new window and will work.
    If you wish to run UI5 applications in the content area you can get latest SP of 7.4 and there you will have a new framework page: standards AFP, basically an AFP framework page that works in standards mode.
    In that framework page you can run UI5 applications in the content area, however trying to run old applications (HTMLB, not WD) may fail, for WD you have a paramater you need to pass called sap-ie, passing it with the value of "Edge" will make sure WD applications run in standards mode as well.
    When running the AFP in standards mode you will need to open your HTMLB and other old applications in a new headerless window or new window so you can see the content.
    Hope this helped,
    BR,
    Saar

  • JSF pages to display content from external URLs

    Hi,
    Is it possible for a JSF page that uses ADF controls, and the PanelPage component to provide menuing, etc. to actually allow a HTML page (accessed via a URL to an external site/application) to be displayed in an area within the JSF page?
    For example, clicking a menu item to an external HTML page results in the page being displayed in a Frame or similar within the JSF page?
    I've tried the FrameBorderLayout control and Frame control to try to embed a Frame to display such a page via the target setting for a menu item, but that doesn't seem to work. At least not when within a PanelPage. It works within a basic JSP page.
    I would have thought it would be possible for a JSF application to incorporate HTML content from other sites/servers as if part of the application. Even if this meant defining "wrapper" pages of some sort to effectively link these into the JSF application as part of it's navigation rules.
    Or am I missing something?
    Gene

    Thanks,
    Yes, using an iFrame tag within a verbatim tag worked, allowing me to specify an external URL to a page which is then displayed at the location where I placed the verbatim tag. I need to investigate sizing/border settings, but at least I now seem to be able to embed such pages.
    This works.
    I tried jsp:include as well, but that only seems to allow relative URLs to pages that a part of the application. And using the c:import JSTL tag would import a page at an external URL, but didn't seem to position it where I wanted it.
    Gene

  • Contact Doesn't Display During Messages Or Calls

    Hi there, recently my friend got a new phone. I added him as a new contact to my phone and the contact remains there ok but the only problem is that when he sends me a txt or rings me, his contact name doesn't display, just his phone number. Why is the phone doing this? and is there any way i can resolve the problem?
    thanks!

    This problem really really annoys me. It's been there for years in S60 phones. I've just got an N95 8G to replace my E65 and before that I had a 6680. They all do the same stupid thing.
    There are loads of reason why you might have someone's number in the contacts more than once.
    Perhaps all Nokia developers only know single people, but when you know couples they tend to have separate mobile numbers but the same landline. So the landline is down under both of them. So when they call you from there you don't know who's on the phone. Duh!
    Now I understand it can't sensibly show you all the matching names but to show none is dumber that dumb. Show any of the names would be fine. Show the first one entered. Better still when you enter a duplicate show a warning and ask which one to match incoming calls to.
    Other reasons to want to have the same number is more than once.
    The brain dead voice tag system. I mean, what's the point of being able to add loads of phone numbers for someone but only one of them getting a voice tag. Duh! So if you occasionally have to use a phone in the car you have to enter people in more than once.
    Bill Home
    Bill Mobile
    Bill Work
    Bill WhatEver...
    Numbers I text a lot I tend to end up giving a short dial like name too as well so they are at the top of the contacts list when you're sending a sms.
    I do wish they'd rewrite this damn contacts system else next time I'm likely to look at a different type of phone.

Maybe you are looking for