How to call our 'Welcome' WebHelp Pro page

RH9, HR Server 9, WebHelp Pro

I am the content developer, and I need to give the correct address to distribute to the start page to our network administrators. Should this page named "Index.htm" or can it be something else which indicate us as the default page?

I understand that this works differently for WebHelp Pro for WebHelp.

Can someone clarify for me the "best practices" to name the start page when the generation of the WebHelp Pro and when you distribute the URL to the users, create hyperlinks in Help and so on.

In addition, how to create URLS that open specific pages with the table of contents frame already open.

Thank you

Mike

Index.htm is not the default page, this is the start page. The difference being that the start page is the three executives who take the toolbar, the navigation pane and the topic pane. The topic pane, that's what shows the default theme.

If follows that the content is not a topic the the file name index.htm that RoboHelp will have to rename them.

If you were referring to the start page, then blog Colum will tell you more. http://www.cmcandrew.com/robocolumn/archives/2693

I know that Colum used without problems, but the Adobe line is that it is not supported. I think that the reason is simply that it has not been tested, but I don't know that for some. Your call.

Is there a reason to oppose index.htm?

See www.grainge.org for creating tips and RoboHelp

@petergrainge

Tags: Adobe

Similar Questions

  • How to call "j_security_check" in the jsf page

    Hello

    with ADF security set up in Jdeveloper11.1.1.2, it automatically generates login.html and error.html for forms authentication.

    I found in login.html, the form action is "j_security_check" and I try to customize the page of connection with the jsf page, but do not know how to call "j_security_check" in the jsf page, there is no action attribute more within the af: form and I can't find the "j_security_check" in the action of Expression commandButton control build.

    Thanks in advance.

    Best regards
    Bill

    Hello

    you will need to add the login form to the JSf page wrapped in f: verbatim to show as part of the JSF page. JSF 1.2 using f: verbatim shoucl be no need, but in my experience, is best.

    If you develop and deploy on WLS, then Chapter 30 of the Fusion Developer Guide has a solution of God for you to build a form of connection in JSF completely

    http://download.Oracle.com/docs/CD/E15523_01/Web.1111/b31974/adding_security.htm#BABDEICH

    This requires any of j_security_check

    Frank

  • How to call oracle Standard form of page style and element OFA should be 'Link '.

    Hi friends,

    I am new to OFA, I want to know how to call oracle OAF page Standard form and style of element must be "link."

    If I click on the element, it should put me in oracle Standard form.

    No button style of the element must be point "link."

    Please help me.

    Thank you

    Thiru.

    Trapani,

    It seems that your link triggers the Action, or you capture does not correctly.

    Add a debug message in your code and see what is printed.

    String eventParam = pageContext.getParameter(EVENT_PARAM);
    System.out.println("eventParam : "+ eventParam);
    if("openForm".equalsIgnoreCase(eventParam))
    {
      System.out.println("Inside If"");
      String destination ="form:SQLAP:PAYABLES_OPERATIONS:STANDARD:AP_APXSUMPS";
      pageContext.forwardImmediatelyToForm(destination);
    }
    

    Also check the settings:

    In your first post is the name of the function: AP_APXSUMPS, but the recent told FND_APXSUMPS.

    The resp_key was also PAYABLES_OPERATIONS and now PAYABLES_PS_FR

    As a test for the link, use the one that works, and then change appropirately.

    See you soon

    AJ

  • How to call from c# webhelp

    I don't want to seem too simplistic, but I spent at least 2 hours, try calling webelp c# files, without a bit of luck to all. All I ever get is three beeps my computer soon, and the Internet Explorer browser never show at all. Here is some basic information:

    I read all the documentation, from beginning to end.

    (On WinHelp_4) I've compiled the project CSH_CS (csharp version) and am able to call my simple file WinHelp RH (Dummy.chm) very well, using the main url "c:\\Docs and Settings\\etc\\RoboHelp 6.0\\Dummy\\! SSL!\\WinHelp_4\\Dummy.hlp ". A = 1 MapID is required in the CSH test dialog box so that my help file load. This support my help since the little thin CSH test window.

    (On WebHelp) After obtaining the WinHelp_4 version to work, I went from the main exit to WebHelp in the section layout SingleSource and specified that HR must create a subdirectory (HTMLHelp) to store the WebHelp files. I regenerated the project and read the resulting output to web successfully using the view results or the main layout view toolbar HR. So I think my help files are ok. But... I can't get the WebHelp to display in the CSH test dialog box, no matter what I try.

    Currently I use roughly the same main URL in the c# CSH project: "c:\\Docs and Settings\\etc\\RoboHelp 6.0\\Dummy\\HTMLHelp\\! SSL!\\WebHelp\\Dummy.htm ". I do not add a window > main at the end of the main URL. No matter if I use a 1 MapID or is empty. It doesn't matter if I choose to Index, search, etc. Any combination of things, the help file does not appear. The file exists - if I double click on the file Dummy.htm, file charges help immediately in Internet Explorer.

    If 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 a *.htm example existing in the directory examples of HR, with the same results - just a few clicks little IE (probably to say "There is a mistake somewhere").)

    Could someone give me exact instructions on what I could try to solve the problem? I would like to know the specific syntaxes for the use of windows and MapIDs in my URL string too, if you know. Here's what I think they are:

    URL = "Startpage.htm" - to load the complete 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 well, another hour and a bit further. Now I can view WebHelp to c# through the RoboHelpAPI (although it seems unnecessary, because of the bugs and problems in the CSH_CS example program and web IE browser window popup). First, here's the code that displays the system WebHelp (high-level, in a stand-alone instance of IE browser)

    Try 2
    int cmd = CRoboHelpAPI.CSH_DISPLAY_CONTEXT;
    CRoboHelpAPI cHelp = new CRoboHelpAPI ();
    int ID = 1; context ID; the number is not serious at all
    foobar string;
    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:
    the reset command
    Switch (NCommande) {}
    case CSH_DISPLAY_CONTEXT:
    Note that I commented this line--it is allowing it to "work".
    It is also why the number of the ContextID above is not serious - we ignore it.
    strHelpURL += ' # '.
    break;

    From RoboHelp_CSH_CS.cs:

    public static IWebBrowserApp
    GetBrowser () {}
    for (int nIdx = 0; nIdx)< 2;="" nidx++)="">
    try {}
    If (m_cExplorer is nothing)
    m_cExplorer = new InternetExplorer ();
    If (m_cBrowser is nothing)
    m_cBrowser = m_cExplorer (IWebBrowserApp);
    I had to add this code myself, because the browser does not
    visible by the example of program Adobe CSH_CS.cs. A defect,
    in the example program, for sure.
    ==> m_cBrowser.Visible = true;

    So to summarize, if you set the example CSH_CS code (1) to make the visible browser and (2) ignore the number the contextID, the code in this ad will display your WebHelp system in a new IE window, with the usual framework of TOC on the left and the topic on the right window, in a main window. But wait... There's more...

    IE POPUP WINDOWS

    The example above in the code under the direction of the case for CSH_DISPLAY_CONTEXT. The code added a few extra characters to the URL to tell the browser to display a specific page, rather than just the start page. Similarly, branches CSH_DISPLAY_TOC/INDEX/SEARCH code also adds characters to the URL, to tell the browser to display a specific page in the help system.

    The problem with all this is that IE treats all these single page displayed as a pop-up windows and blocking them. That is why in my original case at the top of this announcement I only heard a few clicks (and did not) 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 "emits a sound when a window is blocked.

    So there is probably a collision of major policy on user workstations if your c# application tries to display web pages specific to WebHelp. If users want to block the popups for web surfing in general, they are unable to see specific pages for WebHelp and vice versa. Ugh.

    A possible workaround is to say 'Always show popups in separate tabs' (in Options/general/Tabs/settings). I tried this setting and then uncommented my code blocks CSH_DISPLAY_CONTEXT/etc. As expected, all of the characters added on the forced URL pages display, which meant that IE the treated as pop up windows and pressed new tabs.

    So what you're actually seeing is

    (1) a new instance of Internet Explorer has become visible,

    (2) the path to the help system (more control characters listed in the appendix) 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). It's weird, because the main URL I fed in to the API in the above code was "C:\\...path\\Dummy.htm" (with a the ContextID parameter 2 =). I have no idea how my Dummy.htm was changed to whcsh_home.htm by the API. Go figure. I guess the switch takes place if characters appearing in the annex are found on the end of the URL, and the switch is made to support the context somehow ID.

    (3) the desired page is displayed in a separate tab in Internet Explorer.

    My conclusions are:

    (1) adobe should solve their examples to save the people all this headache. They must fix the code, making the visible browser and provide a nice documentation about what the secret syntaxes are for characters added)

    (2) the argument with the pop-up windows is not worth. So I will call my higher level help system all the time and give up the usefulness of context-sensitive help. It's too much problem with WebHelp. (Of course, context-sensitive help works very well with the old WinHelp_4, but WinHelp_4 has other limits.)

    A long process to debug this. Adobe fell from short on this one. But I hope others can use my ads here in a time of need. (Thanks to Adobe for the forums and for a quick response Peter.)

  • How to call function of a process Page PL\SQL Javasrcipt

    Hello

    I have a javascript function say - function1 () defined in the Page header.
    I have a page PL\SQL process after the header.

    How can I call the javascript function - function1 () - of PL\SQL Page process.

    Thank you
    Deepak

    Hi Michael,

    I have a page PL\SQL process after the header.

    Since it's after the header (in the rendering phase) process, I think that this will call the JS? Please correct me if I'm wrong :-)

    See you soon,.
    Hari

  • How to call the procedure on the page of the ofa

    Hi all

    I have a button.when I click this button need to call the procedure and should return the values.i tried with below code.am is error.i am passing two parameters to the procedure.please suggest me where I made a mistake in the code.

    error while calling procedure.PNG

    code in am

    -------------

    public String calprorate (String laseid, String billingid)

    {

    OADBTransaction oadbtransaction = (OADBTransaction) getTransaction ();

    OADBTransactionImpl oadbtransactionimpl = (OADBTransactionImpl) getTransaction ();

    String retValues;

    System.out.println ("number:" + laseid);

    StringBuffer str = new StringBuffer();

    Str.Append ("BEGIN");

    Str.Append (LEASE_PRORATE_PKG ".") LEASE_PRORATE_PROC1 (»);

    Str.Append ("p_lease_id = >: 1");

    Str.Append ("p_billing_id = >: 2");

    Str.Append ("P_PRORATE = >: 3");

    System.out.println ("params");

    Str.Append (»); «) ;

    Str.Append ("END");

    System.out.println ("End");

    OracleCallableStatement oraclecallablestatement =

    (OracleCallableStatement) oadbtransaction.createCallableStatement (str.toString (), 1);

    System.out.println ("Oracle");

    try {}

    oraclecallablestatement.setString(1,laseid);

    oraclecallablestatement.setString(2,billingid);

    oraclecallablestatement.setInt (1, Integer.parseInt (laseid));

    oraclecallablestatement.setInt (2, Integer.parseInt (billingid));

    System.out.println ("param");

    oraclecallablestatement.registerOutParameter (3, Types.VARCHAR);

    System.out.println("3");

    oraclecallablestatement. Execute();

    System.out.println ("exe");

    retValues = oraclecallablestatement.getString (3);

    }

    catch (System.Exception e)

    {

    System.out.println ("delivery");

    throw OAException.wrapperException (e);

    }

    Return retValues;

    System.out.println ("End");

    }

    code co:

    -------------

    If (pageContext.getParameter ("Calc")! = null) {}

    Vo1 OAViewObject = (OAViewObject) am.findViewObject ("AddonBillingVO");

    System.out.println ("VO");

    {if(VO1!=null)}

    CNT int = vo1.getRowCount ();

    System.out.println ("count:" + cnt);

    If (cnt > 0)

    {

    RowSetIterator rs = vo1.createRowSetIterator("empIterator");

    System.out.println ("EMP");

    If (rs! = null)

    {

    While (rs.hasNext ())

    {

    AddonBillingVORowImpl line = rs.next ((AddonBillingVORowImpl));

    System.out.println ("impl");

    If (line! = null)

    {

    String laseid = row.getAttribute("LeaseId").toString ();

    System.out.println (laseid);

    String billingid = row.getAttribute("AddonBillingId").toString ();

    [Serializable] param = {}

    laseid, billingid

    };

    String newupc = (String) am.invokeMethod ("calprorate", param);

    }

    }

    Khalil.

    You can paste your spec procedure here?

    Also see: Oracle tips of Johny: OAF: sample code to call the PL/SQL of OA Framework procedure

  • We just synchronized all of our iPad Air information to our new iPad pro... How are we going to stop future synchronization of two ipads

    We just sync all our information our IPad air on our new IPad Pro... now... How do we stop the synchronization of the iPad 2?

    IF you use the same ID accounts iCloud on both devices and Apple, they will remain synchronized unless you disable features in iCloud you do not want to keep in sync, like iCloud Drive, iCloud, library, photos, Safari, Notes flow, etc.

    Why would you not keep devices in sync? If you plan on selling iPad 2 Air, want to give it or set it up as a new device of nrand, take a look at this.

    What to do before you sell or give away your iPhone, iPad or iPod touch - Apple Support

  • I want to reinstall our Adobe Acrobat Pro XI because we started to get the error messages. I followed the original instructions, but when I logged in I couldn't find 'My orders' page that is required to install my order.  Any ideas?

    I want to reinstall our Adobe Acrobat Pro XI because we started to get the error messages. I followed the original instructions, but when I logged in I couldn't find 'My orders' page that is required to install my order.  Any ideas?

    Barbara,

    If you are looking for your serial number, sign in to your account Adobe. On the page for managing accounts that appears, all of your registered products and their serial numbers are listed in the section Plans & products. For more information about the location of the serial numbers, please see find a serial number

    Here is the link to download and install the software:

    Acrobat X, XI

    Guinot

  • Can someone tell me how to resize the Index / TOC on Webhelp Pro component generated the project?

    The pane on the left side of the screen is too small and must be increased manually. I wish she were wide enough when the page is displayed that all entries can be read.

    8-27-2014 8-24-51 PM.jpg

    Thank you

    Dave

    Peter:

    Thank you very much!

    I hope it works on Webhelp Pro.

    Dave

    >

  • How to call the parameter of the 101 on page 1 page

    Greetings,

    I wanted to call the parameter on the page "P101_USERNAME" to connect to page 1.
    Cust_user is a table where I m authticating my username and password, Authtication is doing well, but I want the client code in the table cust_user of the specific client to display after the connection on page 1. that i wrote query on page 1 "cust_id SELECT FROM cust_user WHERE UPPER (USER name) = UPPER(:P101_USERNAME), but it shows nothing, if I'm harcore specific username instead of: p101_username it works very well for example"cust_id SELECT FROM cust_user WHERE (USERNAME) = UPPER ('test'), '

    Please drivers me how to get the value of the text field (p101_username-login page) to page 1, it is the first page after login.

    Like I said earlier, use APP_USER.
    Go Page 1 now.

    See you soon,.

  • How to call the program simultaneous form OPS page

    hi ................

    How to call a page ofa simultaneous program...
    There is no package for the concurrentprogram package in jdeveloper 9.0...
    That is to say... cp.concurrentprogram...

    You can suggest a solution for this...

    Hello

    Check this class 'RequestSubmissionException' exists in the path, and then import the vector class.

    Kind regards
    Out Sharma

  • How to call a jsp forms of oracle10g page.

    Hello
    I use forms.can oracle10g I call a jsp to oracle10g form? If it is possible how to call a jsp page? How to call back form of jsp? Thank you.

    Published by: Jean Elo diakite 27 April 2010 20:21

    Published by: Jean Elo diakite 27 April 2010 20:22

    What is argument _blank? How to pass this value?

    Its already the correct value of _blank as arguments Mithraeum opens a new browser window.

    where to put jsp (web page)?

    in the url

    How to maintain session of form in jsp?

    You can not. What you could do, it's pass the username to the jsp.

    So a call to a jsp page looks like this

    WEB.SHOW_DOCUMENT('http://server:port/path/the_name_of_the_jsp.jsp', '_blank');
    
  • How to change &amp; quot; New window &amp; quot; something else to WebHelp Pro?

    Hi all

    I know, there was thread on this a while ago. I use RoboHelp x 5 and the skin is WebHelp Pro (XP_Blue_Glass). Our project published, I noticed it says 'New window' in the upper left corner of the title bar in IE 6. I don't remember the name of the file to open and edit it.

    Another question, once I find the file, it is in the project folder that needs to be changed or is it in the published folder that needs to be changed? Any help would be greatly appreciated.

    Thank you

    Quote:
    Posted by: RoboWizard
    Hi all

    ODoyle, have you tried to change the caption for your defined window box? In my view, that outputs pro use this. Just the nickname file Windws, then double-click on the window to change its properties.

    Well done to all... Rick

    Thank you Rick sponsor!

    It DID solve my problem! Thanks again

  • How to call the function (function Build-in user) in Pro * C program

    We have developed the application Pro * C program.
    TimesTen version is "TimesTen release 11.2.1.5.0 (64-bit, Linux/x86_64) (tt112150:53308) 2010-03 - 04 T 20: 39:30Z.

    We would like to develop Pro * C program you are using PL/SQL.

    We have a few questions.
    How to call the function (function Build-in user) in Pro * C program?

    #########
    TEST
    #########

    ttisql:
    Command > create or replace FUNCTION F_SAMPLE (i_str IN VARCHAR2)
    > BACK NUMBER
    > o_number NUMBER;
    > START
    > select i_str
    > in o_number
    > double;
    >
    > O_number RETURN;
    >
    > EXCEPTION
    > Others THEN
    > RETURN 0;
    > END;
    > /.
    display errors
    The function is created.
    Order > show errors
    No errors.
    Command >
    Command > set serveroutput on;
    Command > declare
    > number of num1;
    > start
    > num1: = F_SAMPLE ('A');
    > DBMS_OUTPUT. PUT_LINE ("F_SAMPLE" |) ' ' || NUM1);
    > end;
    > /.
    F_SAMPLE 0

    PL/SQL procedure successfully completed.

    Command >


    Pro * C case:

    EXEC SQL BEGIN DECLARE SECTION;
    number of num1;
    EXEC SQL END DECLARE SECTION;

    EXEC SQL EXECUTE
    Start
    : num1: = F_SAMPLE ('A');
    end;
    END-EXEC;

    Make sure to install:
    Error on line 146, column 3, file plsqlPROC.pc:
    Error on line 146, column 3 in file plsqlPROC.pc
    number of num1;
    .. 1
    PCC-S-02201, encountered the symbol "num1" when expecting one of the following conditions:


    Thank you.

    GooGyum

    There are two problems with your variable declaration:

    1. the name of the variable and type are thew misplacement autour.

    2. you may not use a host variable type.

    If you change this to:

    EXEC SQL BEGIN DECLARE SECTION;
    int num1;
    EXEC SQL END DECLARE SECTION;

    Then it will work very well.

    Chris

  • How to call ofa page concurrent programs

    Hi all

    I need call concurrent programs of OPS page.user will select the out put the type of lookup and a button more must be RUN it if he select type and run the report.

    can someone suggest me how should I call from ofa simultaneous program page



    Thanks in advance
    Anthony

    Hello

    He comes to work for the same code:

    The controller code:

    Am3 ForumAMImpl = (ForumAMImpl) pageContext.getApplicationModule (webBean);
    RequestId int = (int) am3.submitrequest ();
    String url = "OA.jsp? akRegionCode = FNDCPREQDETAILSTOPREGION & akRegionApplicationId = 0 & REQUESTID ="+ requestid +"& retainAM = Y & addBreadCrumb = Y;

    pageContext.setForwardURL (url,
    NULL,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    NULL,
    NULL,
    true,
    OAWebBeanConstants.ADD_BREAD_CRUMB_YES,
    OAWebBeanConstants.IGNORE_MESSAGES);

    Code of the AOS

    public int submitrequest()
    {

    Try
    {
    OADBTransaction tx = (OADBTransaction) getOADBTransaction ();
    java.sql.Connection pConncection = tx.getJdbcConnection ();
    ConcurrentRequest cr = new ConcurrentRequest (pConncection);
    String applnName = "PA." Application that contains the concurrent program
    String cpName = "SAPE_WITHDRAW_NOMINATION"; The simultaneous program name
    String cpDesc = "auto remove appointments with expired Nomination period; simultaneous description of the program

    Pass Arguments using the vector

    Vector cpArgs = new Vector();

    Call the simultaneous program
    requestId int = cr.submitRequest (applnName, cpName, cpDesc, "", false, cpArgs);
    TX.Commit ();
    System.out.println ("Request ID is" + requestId);
    return requestId;
    }
    catch (RequestSubmissionException e)
    {
    OAException oe = new OAException (e.getMessage ());
    oe.setApplicationModule (this);
    throw oe;
    }
    }

    Thank you
    Gerard

    Published by: Gauravv on November 9, 2009 20:16

Maybe you are looking for

  • Battery not present

    Hello! I have a HP elitebook 8440p. The battery meter indicates that my #2 battery is not present and when I unplug my computer is shut off.  I tried to take out the battery and replacing but that has not worked.  I read that re-installation of compa

  • Netflix freezes at 97% on Windows 8

    * Original title: Windows * and Netflix Just installed upgrading Windows 8 on my laptop Dell XPS 1640 of windows 7 and noticed some problems on applications... is a particular problem with the Pluzz.fr, initially, it worked, now it of stuck on 97% an

  • Extend or renew a student permit?

    I bought CS6 Design and Web Premium in 2012. At this point, I was enrolled as a student in art with a graduation date of 2015. Well, my husband received military orders in an area where I could not go to school, so I stopped. He recently received the

  • ERPI to ch - code fundraising

    HelloWe strive to integrate ERPI 11.1.2.2 with PS for loading data. We want to be able to filter by Fund code. Fund codes is not a dimension in Hyperion and don't know if I can do that in the load map data.Kind regardsBrig.

  • I can't download my pictures in the new update of lightroom - Help I need a solution!

    I have just download the last update of lightroom and Lightroom chase when I tried to download the photos form my card. He need a solution in a hurry.