Links to famous places in "media menu"

When I click the media button on my N78 and turn to the Maps page, there are som map links to famous places like Louvren, the Opera house in Sydney etc. How do I get rid of these links? From the help text in the phone I understand that the links shown here should be my last traveled positions. The only thing that happens when I use the GPS is that the first link to "Unter den Linden" (where that is) gets the address of my latest position. Anyone recognize?

Seems like a Maps application/firmware problem to me.
First of all, if you don't go to Berlin, the Unter den Liden link shouldn't update to list your last location, and if it indeed is supposed to be a list of last visited places, they should be replaced with the last visited places.
No other solution expect to wait for Nokia to fix that problem.
You can check for updates under menu > Tools > Utilities > Device mgr. > Options > Check for updates
Or by using Nokia Software Updater: http://www.nokia.com/softwareupdate
In the meanwhile, I suppose you just have to ignore Maps in the media menu.
You can, of course, also call Nokia suppor (see the "Contact us" link at the top of this page) and report this problem there.

Similar Messages

  • Links not working in Spry Accordian Menu

    When clicked the links in the left side accordian menu do not work. However, the child-links work great. Example: http://www.richartbuilders.com/remodel.php
    HEAD TAGS:
    <script src="SpryAssets/SpryAccordion.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal2.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryAccordion.css" rel="stylesheet" type="text/css" />
    <link href="content.css" rel="stylesheet" type="text/css" />
    HTML:
    <div id="navSide">
        <div id="sideWrapper">
          <div id="Accordion1" class="Accordion" tabindex="0">
            <div class="AccordionPanel">
              <div class="AccordionPanelTab"><a href="../remodel.php">Remodel</a></div>
              <div class="AccordionPanelContent"></div>
             </div>
            <div class="AccordionPanel">
              <div class="AccordionPanelTab"><a href="../windowsdoors.php">Windows &amp; Doors</a></div>
              <div class="AccordionPanelContent"></div>
              </div>
            <div class="AccordionPanel">
              <div class="AccordionPanelTab"><a href="../weatherization.php">Weatherization</a></div>
              <div class="AccordionPanelContent"></div>
             </div>
            <div class="AccordionPanel">
              <div class="AccordionPanelTab"><a href="#">Electrical...</a></div>
              <div class="AccordionPanelContent">
                <ul>
                  <li><a href="residential.php">Residential</a></li>
                  <li><a href="commercial.php">Commercial</a></li>
                </ul>
              </div>
            </div>
          </div>
        </div>
    </div>
    <script type="text/javascript">
    var Accordion1 = new Spry.Widget.Accordion("Accordion1" ,{ useFixedPanelHeights:false, defaultPanel:0});
    </script>
    external CSS:
    @charset "UTF-8";
    /* SpryAccordion.css - version 0.5 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    /* This is the selector for the main Accordion container. For our default style,
    * we draw borders on the left, right, and bottom. The top border of the Accordion
    * will be rendered by the first AccordionPanelTab which never moves.
    * If you want to constrain the width of the Accordion widget, set a width on
    * the Accordion container. By default, our accordion expands horizontally to fill
    * up available space.
    * The name of the class ("Accordion") used in this selector is not necessary
    * to make the widget function. You can use any class name you want to style the
    * Accordion container.
    .Accordion {
        overflow: hidden;
        border: 1px solid #CCC;
        width: 145px;
    /* This is the selector for the AccordionPanel container which houses the
    * panel tab and a panel content area. It doesn't render visually, but we
    * make sure that it has zero margin and padding.
    * The name of the class ("AccordionPanel") used in this selector is not necessary
    * to make the widget function. You can use any class name you want to style an
    * accordion panel container.
    .AccordionPanel {
        margin: 0px;
        padding: 0px;
    /* This is the selector for the AccordionPanelTab. This container houses
    * the title for the panel. This is also the container that the user clicks
    * on to open a specific panel.
    * The name of the class ("AccordionPanelTab") used in this selector is not necessary
    * to make the widget function. You can use any class name you want to style an
    * accordion panel tab container.
    * NOTE:
    * This rule uses -moz-user-select and -khtml-user-select properties to prevent the
    * user from selecting the text in the AccordionPanelTab. These are proprietary browser
    * properties that only work in Mozilla based browsers (like FireFox) and KHTML based
    * browsers (like Safari), so they will not pass W3C validation. If you want your documents to
    * validate, and don't care if the user can select the text within an AccordionPanelTab,
    * you can safely remove those properties without affecting the functionality of the widget.
    .AccordionPanelTab {
        background-color: #F2F2F2;
        margin: 0px;
        padding: 12px;
        cursor: pointer;
        font-family: "Myriad Pro", Verdana, Geneva, sans-serif;
        font-size: 14px;
        color: #0071BC;
        border-bottom: 1px solid #CCC;
        /* [disabled]text-transform: uppercase; */
    .AccordionPanelTab a {
        text-decoration:none;
        color: #0071BC;
    /* This is the selector for a Panel's Content area. It's important to note that
    * you should never put any padding on the panel's content area if you plan to
    * use the Accordions panel animations. Placing a non-zero padding on the content
    * area can cause the accordion to abruptly grow in height while the panels animate.
    * Anyone who styles an Accordion *MUST* specify a height on the Accordion Panel
    * Content container.
    * The name of the class ("AccordionPanelContent") used in this selector is not necessary
    * to make the widget function. You can use any class name you want to style an
    * accordion panel content container.
    .AccordionPanelContent {
        overflow: auto;
        margin: 0px;
        padding: 0px;
    .AccordionPanelContent ul {
        list-style-type:none;
        margin:0;
        line-height: 22px;
        font-family:"Myriad Pro", "Trebuchet MS", Arial, Helvetica, sans-serif;
        font-size:14px;
    .AccordionPanelContent ul li {
        color:#666;
    .AccordionPanelContent ul li a {
        display:block;
        padding-top: 5px;
        padding-right: 0px;
        padding-bottom: 5px;
        padding-left: 0px;
    .AccordionPanelContent ul li a:link, .AccordionPanelContent ul li a:visited {
        text-decoration:none;
        color:#0071BC;
    .AccordionPanelContent ul li a:hover, .AccordionPanelContent ul li a:active {
        color:#FF9900;
    .AccordionPanelTab a:link, .AccordionPanelTab a:visited {
        color:#0071BC;
    .AccordionPanelTabHover a:hover, .AccordionPanelTabHover a:active {
        color:#FF9900;
    /* This is an example of how to change the appearance of the panel tab that is
    * currently open. The class "AccordionPanelOpen" is programatically added and removed
    * from panels as the user clicks on the tabs within the Accordion.
    .AccordionPanelOpen .AccordionPanelTab {
        background-color: #FFFFFF;
    /* This is an example of how to change the appearance of the panel tab as the
    * mouse hovers over it. The class "AccordionPanelTabHover" is programatically added
    * and removed from panel tab containers as the mouse enters and exits the tab container.
    .AccordionPanelTabHover {
    .AccordionPanelOpen .AccordionPanelTabHover {
        color: #555555;
    /* This is an example of how to change the appearance of all the panel tabs when the
    * Accordion has focus. The "AccordionFocused" class is programatically added and removed
    * whenever the Accordion gains or loses keyboard focus.
    .AccordionFocused .AccordionPanelTab {
        /* [disabled]background-color: #3399FF; */
    /* This is an example of how to change the appearance of the panel tab that is
    * currently open when the Accordion has focus.
    .AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
        /* [disabled]background-color: #33CCFF; */
    /* Rules for Printing */
    @media print {
      .Accordion {
      overflow: visible !important;
      .AccordionPanelContent {
      display: block !important;
      overflow: visible !important;
      height: auto !important;

    When clicked the links in the left side accordian menu do not work. However, the child-links work great. Example: http://www.richartbuilders.com/remodel.php
    HEAD TAGS:
    <script src="SpryAssets/SpryAccordion.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal2.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryAccordion.css" rel="stylesheet" type="text/css" />
    <link href="content.css" rel="stylesheet" type="text/css" />
    HTML:
    <div id="navSide">
        <div id="sideWrapper">
          <div id="Accordion1" class="Accordion" tabindex="0">
            <div class="AccordionPanel">
              <div class="AccordionPanelTab"><a href="../remodel.php">Remodel</a></div>
              <div class="AccordionPanelContent"></div>
             </div>
            <div class="AccordionPanel">
              <div class="AccordionPanelTab"><a href="../windowsdoors.php">Windows &amp; Doors</a></div>
              <div class="AccordionPanelContent"></div>
              </div>
            <div class="AccordionPanel">
              <div class="AccordionPanelTab"><a href="../weatherization.php">Weatherization</a></div>
              <div class="AccordionPanelContent"></div>
             </div>
            <div class="AccordionPanel">
              <div class="AccordionPanelTab"><a href="#">Electrical...</a></div>
              <div class="AccordionPanelContent">
                <ul>
                  <li><a href="residential.php">Residential</a></li>
                  <li><a href="commercial.php">Commercial</a></li>
                </ul>
              </div>
            </div>
          </div>
        </div>
    </div>
    <script type="text/javascript">
    var Accordion1 = new Spry.Widget.Accordion("Accordion1" ,{ useFixedPanelHeights:false, defaultPanel:0});
    </script>
    external CSS:
    @charset "UTF-8";
    /* SpryAccordion.css - version 0.5 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    /* This is the selector for the main Accordion container. For our default style,
    * we draw borders on the left, right, and bottom. The top border of the Accordion
    * will be rendered by the first AccordionPanelTab which never moves.
    * If you want to constrain the width of the Accordion widget, set a width on
    * the Accordion container. By default, our accordion expands horizontally to fill
    * up available space.
    * The name of the class ("Accordion") used in this selector is not necessary
    * to make the widget function. You can use any class name you want to style the
    * Accordion container.
    .Accordion {
        overflow: hidden;
        border: 1px solid #CCC;
        width: 145px;
    /* This is the selector for the AccordionPanel container which houses the
    * panel tab and a panel content area. It doesn't render visually, but we
    * make sure that it has zero margin and padding.
    * The name of the class ("AccordionPanel") used in this selector is not necessary
    * to make the widget function. You can use any class name you want to style an
    * accordion panel container.
    .AccordionPanel {
        margin: 0px;
        padding: 0px;
    /* This is the selector for the AccordionPanelTab. This container houses
    * the title for the panel. This is also the container that the user clicks
    * on to open a specific panel.
    * The name of the class ("AccordionPanelTab") used in this selector is not necessary
    * to make the widget function. You can use any class name you want to style an
    * accordion panel tab container.
    * NOTE:
    * This rule uses -moz-user-select and -khtml-user-select properties to prevent the
    * user from selecting the text in the AccordionPanelTab. These are proprietary browser
    * properties that only work in Mozilla based browsers (like FireFox) and KHTML based
    * browsers (like Safari), so they will not pass W3C validation. If you want your documents to
    * validate, and don't care if the user can select the text within an AccordionPanelTab,
    * you can safely remove those properties without affecting the functionality of the widget.
    .AccordionPanelTab {
        background-color: #F2F2F2;
        margin: 0px;
        padding: 12px;
        cursor: pointer;
        font-family: "Myriad Pro", Verdana, Geneva, sans-serif;
        font-size: 14px;
        color: #0071BC;
        border-bottom: 1px solid #CCC;
        /* [disabled]text-transform: uppercase; */
    .AccordionPanelTab a {
        text-decoration:none;
        color: #0071BC;
    /* This is the selector for a Panel's Content area. It's important to note that
    * you should never put any padding on the panel's content area if you plan to
    * use the Accordions panel animations. Placing a non-zero padding on the content
    * area can cause the accordion to abruptly grow in height while the panels animate.
    * Anyone who styles an Accordion *MUST* specify a height on the Accordion Panel
    * Content container.
    * The name of the class ("AccordionPanelContent") used in this selector is not necessary
    * to make the widget function. You can use any class name you want to style an
    * accordion panel content container.
    .AccordionPanelContent {
        overflow: auto;
        margin: 0px;
        padding: 0px;
    .AccordionPanelContent ul {
        list-style-type:none;
        margin:0;
        line-height: 22px;
        font-family:"Myriad Pro", "Trebuchet MS", Arial, Helvetica, sans-serif;
        font-size:14px;
    .AccordionPanelContent ul li {
        color:#666;
    .AccordionPanelContent ul li a {
        display:block;
        padding-top: 5px;
        padding-right: 0px;
        padding-bottom: 5px;
        padding-left: 0px;
    .AccordionPanelContent ul li a:link, .AccordionPanelContent ul li a:visited {
        text-decoration:none;
        color:#0071BC;
    .AccordionPanelContent ul li a:hover, .AccordionPanelContent ul li a:active {
        color:#FF9900;
    .AccordionPanelTab a:link, .AccordionPanelTab a:visited {
        color:#0071BC;
    .AccordionPanelTabHover a:hover, .AccordionPanelTabHover a:active {
        color:#FF9900;
    /* This is an example of how to change the appearance of the panel tab that is
    * currently open. The class "AccordionPanelOpen" is programatically added and removed
    * from panels as the user clicks on the tabs within the Accordion.
    .AccordionPanelOpen .AccordionPanelTab {
        background-color: #FFFFFF;
    /* This is an example of how to change the appearance of the panel tab as the
    * mouse hovers over it. The class "AccordionPanelTabHover" is programatically added
    * and removed from panel tab containers as the mouse enters and exits the tab container.
    .AccordionPanelTabHover {
    .AccordionPanelOpen .AccordionPanelTabHover {
        color: #555555;
    /* This is an example of how to change the appearance of all the panel tabs when the
    * Accordion has focus. The "AccordionFocused" class is programatically added and removed
    * whenever the Accordion gains or loses keyboard focus.
    .AccordionFocused .AccordionPanelTab {
        /* [disabled]background-color: #3399FF; */
    /* This is an example of how to change the appearance of the panel tab that is
    * currently open when the Accordion has focus.
    .AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
        /* [disabled]background-color: #33CCFF; */
    /* Rules for Printing */
    @media print {
      .Accordion {
      overflow: visible !important;
      .AccordionPanelContent {
      display: block !important;
      overflow: visible !important;
      height: auto !important;

  • In SharePoint 2013 navigation, is it possible to add a custom link only to the left-hand menu without getting it in to the top menu dropdown?

    If I want to add a custom link to the left-hand navigation menu In a SharePoint 2013 sub-site, it can be done by visiting
    Site Settings à Navigation section and adding the link under
    Structural Navigation: Editing and Sorting section. However, this will automatically add a matching link to the top menu as a dropdown.
    (Note that Global Navigation is set to “Display the same navigation items as the parent site” where “Parent is using Structural Navigation.” and Current Navigation is set to “Structural Navigation:
    Display only the navigation items below the current site”)
    Is there a way to just add a custom link only to the left-hand menu without getting it in to the top menu dropdown?

    Hi Asanka,
     Please refer the below link which may help you to resolve your problem.
    http://blog.navantis.com/configuring-sharepoint-2013-navigation-to-span-site-collections/
    If its not helping you please let us know
    Sekar - Our life is short, so help others to grow
    Whenever you see a reply and if you think is helpful, click "Vote As Helpful"! And whenever
    you see a reply being an answer to the question of the thread, click "Mark As Answer

  • N^2 log(n) for Collections.sort() on a linked list in place?

    So, I was looking over the Java API regarding Collections.sort() on linked lists, and it says it dumps linked lists into an array so that it can call merge sort. Because, otherwise, sorting a linked list in place would lead to a complexity of O(n^2 log n) ... can someone explain how this happens?

    corlettk wrote:
    uj,
    ... there are other sorting methods for linked lists with an O(N*N) complexity.Please, what are those algorithms? I'm guesing they're variants off insertion sort, coz an insertion is O(1) in a linked list [and expensive in array]... Am I warm?You don't have to change the structure of a linked list to sort it. You can use an ordinary Bubblesort. (The list is repeatedly scanned. In each scan adjacent elements are compared and if they're in wrong order they're swapped. When one scan of the list passes without any swaps the list is sorted). This is an O(N*N) algoritm.
    What I mean is it's possible to sort a list with O(N*N) complexity. It doesn't have to be O(N*N*logN) as the Java documentation kind of suggests. In fact I wouldn't be surprised if there were special O(N*logN) algoritms available also for lists but I don't know really. In any case Java uses none of them.

  • Can I add a text link to another place in a Pages v5 file?

    Simple question:
    Can I add a text link to another place in a Pages v5 file?
    My client would like to include a visible, inline Table of Contents in his ePub. Apple Pages v5 deletes the visible Table of Contents. Can I manually create a Table of Contents with clickable links to the appropriate chapters?

    Pages 5's greatest claim to fame is its general inability to do anything much, aka "simplification".
    So the answer is No! and because this is also Apple, You don't want to do that!
    Luckily however, should you still have Pages '09 in your Applications/iWork folder, you can use that instead.
    Peter

  • Email Link... and Email Image menu items don't work.

    Suddenly, about a week ago, the Email Link... and Email Image menu items stopped working. Problem seems to be on only one login on one of my three machines. The rest seem to be OK.
    Using FF 19.0 and TB 17.0.3 under Windows 7.
    Any ideas?

    Thank you. Although I had already checked the MailTo: application and found it set to "Use Thunderbird (default)", clearing that association and setting it to "Always Ask" jarred things loose. When I set it back to T-Bird, it worked again.
    Again, thanks for the nudge.

  • Link to other place in form

    How can i link to other places in my form?
    I kwow i have to do it Javascript, but what code do i have to use?
    Thanks Josh

    I tried 3 different ways, but couldn't succeed. Can you have a look at the Pdf please, i tried the 3 upper buttons:
    http://www.mijnbestand.nl/Bestand-SD6TUJW3CGJO.pdf
    Thanks for your help, if i only have one button working, i can fix the rest
    Josh

  • Edge animate composition is not an option on insert media menu, and I subscribe to the cloud

    edge animate composition is not an option on insert>media menu, and I subscribe to the cloud

    If your product was installed via the Creative Cloud, you should be able to update it using the Creative Cloud.  If your product was installed via other media (like from the DVD), you will not be able to update it using the Creative Cloud.  Now that CC has launched, you might want to look at upgrading now and try it out now.
    Thanks,
    -Elaine

  • Is there a formula I can use to link a choice from pop-up menu to a $ amount in adjacent cell?  i.e. if Item 1 is chosen, adjacent cell populates $125.  if Item 2 is chosen, adjacent cell populates $250.

    is there a formula I can use to link a choice from pop-up menu to a $ amount in adjacent cell?  i.e. if Item 1 is chosen, adjacent cell populates $125.  if Item 2 is chosen, adjacent cell populates $250. it seems like this must be possible.  Help please!

    Hi Gabe,
    You could use an IF statement in the second cell.
    Popup in column B, two items: "This", That" (without the quotes)
    Formula in same row of column C
    Format the cell in column C as currency.
    If there are more than two items in the popup menu, it's better to use a lookup table containing the same list as the popup in column A, with the corresponding values in column B:
    C5: =LOOKUP(B,List :: $A,List :: $B)
    Regards,
    Barry

  • I want to set up the time capsule. I have a D-Link router for WiFi to laptops. Do I connect the time caps to the D-Link or in place of it? thanks

    I want to set up the time capsule. I have a D-Link router for WiFi to laptops. Do I connect the time caps to the D-Link or in place of it? thanks

    You've posted to the iPhone forum rather than the Time Capsule forum, but to save you some time, you can either replace your D-Link with it since it is a wireless N router, or you can set it up on your LAN as an additional wifi router with its own unique SSID.  If you do the latter, be sure to connect your mac to the Time Capsule rather than your D-Link so it will support your Time Machine backups.

  • N79; can't run " home media " menu

    I'm in Thailand . I just buy N79 , but I have found my phone can run " home media " menu. When I go to " home media " menu it's push back to "connectivity" menu .
    When I go to Nokia Care center . They said All N79 was bug as this. Wait to upgrade firmware as now it's already new as 10.046
    Please share information with me

    sawatdee krap,
    maybe because you havent set any connections for "home media". i think it needs to connect with your computer. you also need to install SimpleCenter's Home Media Server software on your PC
    maybe this will help you -
    http://europe.nokia.com/A41123203
    Message Edited by fring on 23-Nov-2008 03:20 PM
    Nokia N79 8GB
    SW Version: 11.049 RM-348

  • About Me link is not visible in Welcome Menu if placed on custom location in Custom Master Page

    Experts,
    I am facing a problem in my -ongoing SP 2013 project's branding. The problem is with Welcome Menu. I need to put the welcome menu at a custom place rather than in ribbon area. for this I added welcome menu snippet inside my Master Page HTML but there is
    a problem with it. On ribbon link "About Me" is visible while at the same time link "About me" is not visible on welcome menu which has been inserted on custom place. below images describe my problem more accurately.
    I need help in this regard if some one can help me. For your information My User Profiles are properly configured and working. 
    HBkhan

    Hi Haris,
    I tested the same scenario in my environment, and the link will display My Settings link instead of About Me link when there is more than one welcome menu in the page.
    If you want to put the welcome menu at a custom place rather than in ribbon area, I recommend you remove the welcome menu in the ribbon area(suitebar) after putting the other welcome menu at the custom place.
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • Dynamic link after effects and adobe media encoder

    Hello,
    I recently downloaded After Effects cc (yesterday). I am running a mac pro with OSX 10.9.3 2.3 ghz intel core i7 with 16 gb 1600 MHz DDR3.
    On previous versions of AE I was able to render straight out of AE, I know this is not the case with CC anymore. I am trying to use AME to export however I am having issues.
    When I try to send to AME from the Composition tab in AE it looks like it is doing something and then nothing happens. I then opened AME separately and tried to "add after effects comp" from the file menu in AME the error message displayed was "Could not connect to Adobe After effects. Please verify that Adobe After effects and Adobe Dynamic link components are installed".
    I have also tried to drag and drop my composition directly from AE to AME and the following message appears "Dynamic link error - Source is empty"
    I have read a multitude of threads on this issue and this is definitely not a firewall issue. Any advice would be GREATLY appreciated.

    > On previous versions of AE I was able to render straight out of AE, I know this is not the case with CC anymore.
    Why do you think that? You can still use the render queue in After Effects to render and export directly out of After Effects.
    That said, there are some formats that Adobe Media Encoder handles better.
    > and this is definitely not a firewall issue
    How have you determined that?
    Does exporting to QuickTime (.mov) format from After Effects work? How about the 3D Camera Tracker and Warp Stabilizer effects? The reason that I ask about these is that they use the same communication mechanism that Dynamic Link does, so if they also fail, then it tells us something about where the problem is.

  • Links to exe and back to menu builder not working

    I have read through all of the messages in the Forum and have
    seen similar questions on this topic but no actual answers for this
    precise situation. I apologize if I've just missed it. I'm fairly
    new to Captivate and am using version 2. I am building a project
    that will have 15 - 20 standalone .exe files.
    This client is one of of the very few that does not have
    Flash Player and will not due to security reasons. We will publish
    and play from a DVD/CD.
    The problem -
    I need to have a course menu to link to each exe and then
    link back from each exe to the main menu.
    I have built a sample menu builder and exported it as an exe.
    The links to the other files from this main menu work; however, I
    cannot get the links in the separate exe files to access the main
    menu exe (i.e. menu builder file). I either get a blank browser
    window or other url window, or nothing happens and the screen just
    stays there. The same thing will happen if I'm using the menu in
    the skins feature.
    I have ensured that all my files are in the same folder. I
    have variations on the link, such as "relative" links as suggested
    (i.e., removing path information and including only the file name).
    I'm not sure Captivate Player will help because it sounds
    like that is more for Web applications.
    Please help!
    Thanks
    lahkab

    Hi Don
    Sure thing. The weird part of this is that it will require
    using both MenuBuilder and Captivate to accomplish it. As you have
    seen, Captivate likes to open things by feeding into HTTP. So
    often, you wish to open a Word Document or a .PDF and you see a
    browser open. The bizarre part of all this, is that if you look at
    the address bar of the browser that opens, the path and filename
    are correct! You click there and press Enter and by golly it loads
    up. Go figure.
    So here goes.
    1. Note the exact file name you wish to open. Perhaps
    "Menu.EXE".
    2. Open MenuBuilder and create a new totally blank project.
    3. Set your width and height by clicking Options > Project
    Options. I think the smallest you can go is 320 wide and 200 high.
    4. Click Insert > Clickbox.
    5. For the link part, just type "Menu.EXE" (or whatever you
    noted in step 1) Note that you should not enter any path. JUST the
    file name. You might also click to place a check mark in the "Save
    file with project" check box, just to be on the safe side.
    6. Export the project as a Flash SWF.
    7. Close MenuBuilder and open your Captivate project.
    8. Edit the slide where your user will click to open the .EXE
    and click Insert > Animation...
    9. Insert the .SWF you created using MenuBuilder. Position it
    over where you wish your user to click.
    10. Publish your Captivate and test the link.
    In case it will help, I've got a zip containing all the files
    so you can see them in action (I included the source). No cloak and
    dagger with this next part, just conserving bandwidth, as I'm
    limited with this service and I don't wish everyone and their
    brother to use it all up just looking to see. Shoot me an E-Mail
    message to captiv8r (at) kc (dot) rr (dot) com and I'll send you a
    link to download the files for you to play with.
    Hopefully something here is helpful... Rick

  • How to link windows explorer into an Encore Menu?

    Can I link a document from microsoft word in a menu from encore?

    No.
    You can place a message on a menu that instructs a person using the DVD on a computer that they can access rom content on the DVD disk that allows them to open the file.
    You can place links in the Encore to flash versions.

Maybe you are looking for

  • Page Numbers Not Appearing in Data Merge Document?

    Hello, hopefully someone can help. I am pretty new to InDesign but learning a lot.  I am creating a member directory of about 200 pages (about 2800 records merged from .csv to InDesign 6). Everything is working fine with the merge, except generating

  • I have lost my 'music, mail, safari and phone' icons and i cant get them back alothough i can still find them when i search for them in the search bar.

    my 'music, mail, safari and phone' icons have gone from my home screen and the rest of my apps have spread out only show 16 on a page (instead of 20)  i have no idea how to get them back and have tried resetting home screen which did nothing.  i can

  • Can't send mail after latest firmware update

    My outgoing mail won't go out after the latest firmware update. I have 4 different accounts and none are working. Tried in various locations. Any ideas would be appreciated. Thanks

  • Need ADC extension cable

    I can't believe I am having so much trouble finding an extension cable!!! I have a 20" cinema display (2004) with permanently attached ADC cable and a G5 (2004) with an ADC input. It works great but I must move the CPU further from the monitor and th

  • Systemd not starting services

    Hi, after a mint install today (according to Wiki's "Beginners' Guide") and installation of bftpd, systemd is not able to start it (enabling it and restarting also doesn't help)... I'm pretty sure this still worked ~Wed this week on another installat