Linking Directly from a Keyword to a Specific place in a topic?

I have a topic called 'test'. Within that topic I have the
following letters...
A
B
C
...etc, all the way thru z, each letter on their own line.
I do a search on the letter M.
I get the results that the letter M is in Test.
Is there a way I can go directly to the letter M instead of
going to the beginning of
the topic?
Thanks
Doug

Hi all
Just in case, I'll also toss in the following. Some users and
even RoboHelp authors may confuse "Search" with the actual "Index".
If you are actually talking about the Index here, there is
absolutely a way. You insert a bookmark before each of the letters
and link your Index term to the bookmark.
There is more at the page you will find by
clicking
here.
Cheers... Rick

Similar Messages

  • Can't open CUP link directly from email notification ( GRC 5.3 )

    Hi Everybody,
    I am working for a client where GRC 5.3 is installed.
    When we submit a user request in CUP , a link is automatically generated in a mail and send to the manager/ approver based on the workflow. But the problem is that client is not able to open the link directly from the mail. They need to open it everytime manually through browser. This happens in Dev system only. Where as in Prd system they do not face any issue. They can directly open link from mail automatically send from CUP.
    Can someone guide where is the problem in terms of setting because Dev and Prd is behaving different way.We are unable to find exact location where we need to make change in Dev grc. Please help.
    Regards,
    Kakali

    Hi Kakali,
       You must have different configuration Dev and Prd. Can you check the application and redirection URL link under SMTP server link? I think the problem resides there as CUP uses those links in the email.
    Regards,
    Alpesh

  • Linking directly from a RH document to a relevant Page in the associatred App

    Hello
    I wonder if anyone has any experience of inserting links from
    a help doc, using the RH Hyperlink dialog, to take the user to the
    associated part of the app, using a Windows API call? This is
    something Windows application help does quite a lot, and it's a
    neat trick.
    Thanks
    Robin Valk

    Hi Robin. It is a neat trick. CSH in reverse. I fear though
    that it is beyond the reach of most companies to achieve. Microsoft
    have the resources and money to develop solutions such as this.
    Maybe someone out there does know how to do it in which case I'll
    eat humble pie.

  • Bank's Server HTTPS link - directed from e-shop - cannot be loaded in Firefox. It works fine in IE & Chrome.

    Whenever I place my order in Pet4U.gr e-shop at 'http://www.pet4u.gr/" and - afterwards - get directed at "https://ep.eurocommerce.gr/proxypay/apacs" to pay with my credit card, this https link which directs me to the bank's server - in order to fill in my credit card information and complete the transaction - in Firefox just keeps on loading, but never is loaded. It just remains a blank white page loading for ever.
    On the contrary, with Internet Explorer and Google Chrome everything works just fine!!!
    What is going wrong with Firefox in this case?
    Best regards,
    Dimitris Zadelis

    Many site issues can be caused by corrupt cookies or cache.
    * Clear the Cache
    '''[https://support.mozilla.org/en-US/kb/how-clear-firefox-cache How to clear the Firefox cache]''' {web link}
    and
    * Remove Cookies
    '''''This will log you out of all sites you're logged in to.'''''
    Press the '''<Alt>''' or '''<F10>''' key to bring up the tool bar.
    Followed by;
    Windows; '''Tools > Options'''
    Linux; '''Edit > Preferences'''
    Mac; ''application name'' '''> Preferences'''
    Then '''Privacy.'''
    Under '''History''', select Firefox will '''Use Custom Settings'''.
    There is a button on the right side called '''Show Cookies'''.
    If there is still a problem,
    '''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Start Firefox in Safe Mode]''' {web link}
    While you are in safe mode;
    Press the '''<Alt>''' or '''<F10>''' key to bring up the tool bar.
    Followed by;
    Windows; '''Tools > Options'''
    Linux; '''Edit > Preferences'''
    Mac; ''application name'' '''> Preferences'''
    Then '''Advanced > General.'''
    Look for and turn off '''Use Hardware Acceleration'''.
    Poke around safe web sites and see if there is still a problem. Then restart.

  • Response.TransmitFile is not opening the links directly from SharePoint Library c#

    Hi,
     I want to open a pdf file from a sharepoint library. I am using Response.TransmitFile to do that. But it throws me the error "'url' is not a valid virtual path". Is there anyway otherway to do this.
                Response.Clear();
                Response.ClearHeaders();            
                Response.ContentType = "application/pdf";
                Response.TransmitFile("URL to the library" + fileName);
                Response.Flush();
                Response.End();

    try using this method. In a standard .NET application what your doing may work but SharePoint works different as all the files are stored in the database.
    private void OpenDocument(SPListItem listItem)
    SPFile file = listItem.File;
    using (MemoryStream ms = new MemoryStream(file.OpenBinary()))
    Response.Clear();
    // Clear the content of the response
    Response.ClearContent();
    Response.ClearHeaders();
    // Buffer response so that page is sent after processing is complete.
    Response.BufferOutput = true;
    // Add the file name and attachment, which will force the open/cance/save dialog to show, to the header
    Response.AddHeader("Content-Disposition", "attachment; filename=" + file.Name);
    // Add the file size into the response header
    Response.AddHeader("Content-Length", file.Length.ToString());
    // Set the ContentType - octet stream helps handle all content types generically
    Response.ContentType = "application/octet-stream";
    ms.WriteTo(Response.OutputStream);
    Response.Flush();
    Response.Close();
    Microsoft Certified Technical Specialist
    EmpowerCS (Australia) for all your CRM/SharePoint needs.
    SharePointBlogger.Net
    Hi, Thanks for the reply. I didn't tested this, but when I do I will let you know the feedback.
    For me "Response.Redirect" worked for now as a I am saving the document into library and then opening it.

  • How can i read all the lines from a text file in specific places and use the data ?

    string[] lines = File.ReadAllLines(@"c:\wmiclasses\wmiclasses1.txt");
    for (int i = 0; i < lines.Length; i++)
    if (lines[i].StartsWith("ComboBox"))
    And this is how the text file content look like:
    ComboBox Name cmbxOption
    Classes Win32_1394Controller
    Classes Win32_1394ControllerDevice
    ComboBox Name cmbxStorage
    Classes Win32_LogicalFileSecuritySetting
    Classes Win32_TapeDrive
    What i need to do is some things:
    1. Each time the line start with ComboBox then to get only the ComboBox name from the line for example cmbxOption.
       Since i have already this ComboBoxes in my form1 designer i need to identify where the cmbxOption start and end and when the next ComboBox start cmbxStorage.
    2. To get all the lines of the current ComboBox for example this lines belong to cmbxOption:
    Classes Win32_1394Controller
    Classes Win32_1394ControllerDevice
    3. To create from each line a Key and Value for example from the line:
    Classes Win32_1394Controller
    Then the key will be Win32_1394Controller and the value will be only 1394Controller
    Then the second line key Win32_1394ControllerDevice and value only 1394ControllerDevice
    4. To add to the correct belonging ComboBox only the value 1394Controller.
    5. To make that when i select in the ComboBox for example in cmbxOption the item 1394Controller it will act like i selected Win32_1394Controller.
    For example in this event:
    private void cmbxOption_SelectedIndexChanged(object sender, EventArgs e)
    InsertInfo(cmbxOption.SelectedItem.ToString(), ref lstDisplayHardware, chkHardware.Checked);
    In need that the SelectedItem will be Win32_1394Controller but the user will see in the cmbxOption only 1394Controller without the Win32_
    This is the start of the method InsertInfo
    private void InsertInfo(string Key, ref ListView lst, bool DontInsertNull)
    That's why i need that the Key will be Win32_1394Controller but i want that the user will see in the ComboBox only 1394Controller without the Win32_

    Hello,
    Here is a running start on getting specific lines in the case lines starting with ComboBox. I took your data and placed it into a text file named TextFile1.txt in the bin\debug folder. Code below was done in
    a console app.
    using System;
    using System.IO;
    using System.Linq;
    namespace ConsoleApplication1
    internal class Program
    private static void Main(string[] args)
    var result =
    from T in File.ReadAllLines(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "TextFile1.txt"))
    .Select((line, index) => new { Line = line, Index = index })
    .Where((s) => s.Line.StartsWith("ComboBox"))
    select T
    ).ToList();
    if (result.Count > 0)
    foreach (var item in result)
    Console.WriteLine("Line: {0} Data: {1}", item.Index, item.Line);
    Console.ReadLine();
    Please remember to mark the replies as answers if they help and unmark them if they provide no help, this will help others who are looking for solutions to the same or similar problem. Contact via my webpage under my profile but do not reply to forum questions.

  • Move categories/directory from the keyword tag to the event/place/people tags

    I just upgraded to PSE 12. So now all my organisation folders are under the "keyword" tag. And I have a lot of them. Of course they are organized in folder/subfolders. And the main ones are "places" "events". The same as the default ones in pse.
    So is it possible to move categories/directories from the keyword tag to event/place/people tags (drag and drop doesn't work).
    Thanks.

    I have the same problem. I have had it since PSE 11 but didn't understand why I had two places for persons. I have the same problem with PSE 12 too and now I understand that the problem is there because I upgraded an english PSE 10 to a swedish PSE 11 (and later PSE12).
    Could this be solved in any other way than moving the tags by hand ( I have a lot of people taged)?
    Thanks / Gorbav

  • Can I link directly to a specific spry data choice from an html link

    http://www.nmprc.state.nm.us/als.htm
    my pages are set up around an xml source, but is there any
    way to link directly to one of the xml choices? Say "Forms and
    Apllications" so that I can set a helpful link on another html page
    and that choice will be open on page load.
    can you point me in the right direction If there are any
    samples of this?

    Check out these samples:
    http://labs.adobe.com/technologies/spry/samples/data_region/DataWithURLParams.html
    http://labs.adobe.com/technologies/spry/samples/utils/URLUtilsSample.html
    These samples all happen on one page, but the links can be
    anywhere. It is mostly the matter of passing the URL param to the
    function correctly.
    Hope this helps.
    Don

  • Viewing a Report as pdf/rtf directly from a link, using repository - how?

    I'm looking to link directly to a report from an application on another system, with the report being stored in the BO repository.  The reports should be available in both pdf and html/rtf format, with a separate link to each format, and should be displayed alone within the browser (IE - should not be presented within a BO frame). 
    The person maintaining the report(s) should be able to tweak as needed (font, labels, whatever), and then just save the changed report within BO (or CR - we have both) to have the changes display in the published (pdf/html/rtf) reports.  The developer on the other system should be able to link directly to the report via a simple <a href= > link.
    I specifically do NOT want to deploy using the J2EE components, since they are saved to a server directory/folder rather than the repository. 
    I've looked at web services, but that appears to need to be published with each save, appears to require access to the directories/folders on the BO server (not an option), and puts load on the calling application (not what I want - all the load is to be on the BO server).
    I'm not seeing any documentation that indicates (how) this can be done.  Could someone point me in the right direction for this?
    thanks!

    There is a Consulting Solution called BOInterface that Business Objects Global Services sells and that helps you to achieve what you describe very easily.
    A description is <a href="http://www.mnsoft.org/bointerface0.0.html">here</a>.
    Particularly, see the <a href="http://www.mnsoft.org/pmiv.0.html">Poor Man's InfoView</a> web application which does exactly what you describe.
    Contact me via direct email for more information if this is interesting for you.
    HTH,
    M
    Matthias Nott -  Business Objects
    Service Line Leader Products EMEA
    [email protected]

  • Navigating directly from ECC(ABAP) to CRM UI Work Center/Link

    Hi gurus,
    I tried searching and couldn't find a relevant answer so I hope someone can help. We'd like to go directly from an ECC custom transaction we use to view our inventory and navigate directly to a specific work center/logical link within the WebUI that will display some custom development we've done to streamline the quote entry process. Parameters are passed from the inventory transaction and then pre-populated into a custom screen we developed.
    I've seen tons of documentation on launching R/3 transactions from within WebUI and I know how to go directly to a specific object using a formatted URL but I can't find any info on going directly to a specific work center menu entry and/or a direct logical link from within ABAP.
    Can anyone shed some light on this? Thanks in advance.

    Hi James,
    I am working on some navigation issue myself and posted [this|Direct URL access to a component usage; in the forums today. It might just help you:
    SAP has at least some documentation on this one. It is freely available form the [Service Market Place|https://websmp203.sap-ag.de/crm-inst]. [DirectLink|https://websmp203.sap-ag.de/~sapdownload/011000358700001715762008E/Cookbook_Ex_Comp_CRM2007.pdf]
    In the document mentioned above is a way to create a URL to the WebClient directly opening a specifc UI Component in the UI Frame.
    You could even open this one in an HTML control inside your transaction.
    cheers Carsten

  • Can't access adobe from my smart phone to use my form created in formscentral I receive an error message that says "unsupported browser". There is a link to download a supported browser but the link directs me to another page that says "browser no

    When I try to access adobe from my smart phone to use my form created in formscentral I receive an error message that says "unsupported browser". There is a link to download a supported browser but the link directs me to another page that says "browser not supported at this time". This happened to me while using my IPhone 5, a friend that uses an IPhone 6, and another friend that uses a Samsung Galaxy S5. I just need for my employees to be able to access, complete and submit work orders created in formscentral from their phones. I would like to use the data collection feature in formscentral but at this point any suggestions on how to accomplish this are welcomed. Thank you

    Further info - I changed my security settings to allow apps from anywhere, and again tried to install.  I again got an error message
    that the update failed to install, and to contact Customer Support.

  • Safari opening linked .zip files directly from DVD instead of downloading

    Dear all,
    Safari opening linked .zip files directly from DVD (via Windows explorer) instead of downloading it tru browser click - it's working just fine in FF, Chrome IE. Is this a known issue? or something can be done by modifying browser setting/pref.
    Expecting more advise on this.
    Configurations: Windows XP
    Safari: 5.1.7
    Note: ensured there is no space in the file path, just linked the .zip file using href attribute!
    Also tried with .xls, .doc insted of .zip same issue appearing.
    Thanks in advance,
    Thirilog

    Hi
    appzapper & such are pretty flaky at removing things usefully, imo.
    Use the uninstaller for speed download - http://www.yazsoft.com/products/speed-download/faqs/?how-to-un-install-speed-dow nload-properly
    or get a hold of FindAnyFile or easyfind & search for Growl & Speeddownload & yazsoft - but from all I hear, the uninstaller works fine.
    Failing that, Safari's settings plist file isn't in caches
    Home/Library/Preferences/com.apple.safari.plist
    is the place
    & if you're still stuck, test & maybe download another browser using a New User Account.

  • I want to link to a specific place within a document from Captivate4

    Hi all,
    I want to link to a specific place within a document from Captivate4.
    I have no trouble linking to the beginning of a document; however I want to be able to link to a specific chapter/area of a document I am creating. My plan is that as people progress through the e-learning they can link back to the electronic manual I am creating from where they left off.
    I have a workaround of creating separate documents and linking to them, but this is time consuming and messy.
    Does anyone have any ideas of what I can do; I have looked around the forums and, unless I am blind, can't find anything like I am looking for.
    Cheers
    thedarf

    Hi there
    What type of document are you trying to link to? PDF? Word Doc?
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • HT201413 I purchased an album online with my ipad2 directly from the artists website.  I received an email containing the link to allow me to download it.  I tapped on the link and the MSG came up saying Safari is unable to download file.  Any ideas?

    I purchased an album online with my ipad2 directly from the artists website.  I received an email containing the link to allow me to download it.  I tapped on the link and the MSG came up saying Safari is unable to download file.  I have downloaded apps before with no problems.  This is the first music download I have purchased on my ipad2.  Maybe it has something to do with the security on the email I received from the artist containing the download.  I have the latest iTunes OS and apple iPad 2. O.S.  Any ideas on what to do?

    You can't download music via Safari on the iPad - you will need to download it on your computer, add it to your computer's iTunes, and then sync it to the iPad.

  • I would like to download mp3 content directly from a specific website to my iphone or ipad

    I am trying to download mp3 content directly from a website, jw.org, to my ipad and iphone.  I used to be able to this with my android phone, i had to download a "filemanager" app to unzip if I selected complete "albums" but it would then automatically make them available in my music app.  There has got to be a way to this on the iphone.

    I think it recognises *some* non-Apple Bluetooth devices, but the number of devices, and the functionality supported, is very limited, and extremely poor and inflexible when compared to other manufacturers' devices.

Maybe you are looking for

  • Error loading *.bin file

    i have a certain requirement like if plugin1 is down plugin2 has to be called, both plugin1 and plugin2 uses same 3rd party api for plugin implementation.But when my plugin1 is down i am getting error with plugin2 like      "Error loading resource fi

  • Problem with Nokia 5530

    When I start the phone my "Contacts bar" on Home screen work, but when I enter menu and than turn back on Home screen my "Contact bar" freeze. Please help me. I reinstall phone's sofware from Nokia software updater but problem is still here. I am sor

  • Adding "Explicit" labels

    Is it possible to add an "explicit content" label to music you've ripped from a CD? It's great the the iTMS tunes have this label, but I'd like to organize my library so that I can filter content according to those labels (which also brings up the qu

  • File numbering when extracting

    Hello, I have large numbers of documents that need to have all of their pages extracted as separate files. Unfortunately when I do this the numbering is very inconvenient. My next process is loading them through a client, and since the numbering does

  • Opening Old Version of website causes crash

    I open an old version and I get a warning about changes made and asked to Ignore or Review. Neither button works. Have to force quit. I need to see and grab some older content.