Disappearing Navigation buttons

Hi,
I added some custom arrow buttons to my skin to replace the current previous and next buttons in the arrow bar. For some reason, they will not display. They're the same size as all of my other buttons, and they all show up without incident.
When I generate, I selected "Manually" in the "Syncronize Table of Contents"  section of the properties, hoping that would help, but no luck. Those arrows just won't show up. Any ideas?
I'm using RH8.
Thanks!

Hi there
Seems this is the week for the nav buttons!
Check the post linked below and see if it helps.
Click here to view
Cheers... Rick
Helpful and Handy Links
RoboHelp Wish Form/Bug Reporting Form
Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
Adobe Certified RoboHelp HTML Training
SorcerStone Blog
RoboHelp eBooks

Similar Messages

  • Add navigation buttons on top of every scene

    Hello,
    I've got a Flash movie with quite a few scenes and I'd like to add navigation buttons (prev\next) with AS3 to move from scene to scene.
    Sounds easy but...
    If I write this on first frame of first scene :
    this.addChild(play_btn);
    buttons will appear OK on this first scene but will disappear under objects of the second scene
    If I change to
    stage.addChild(play_btn);
    button will appear OK over every scene but, as my SWF is loaded in an e-learning software that produces SWF, the buttons will remain on the "stage" of every slide of the final module ! I can't remove them when the user changes slide because I can't run AS3 when changing slide...
    Is there way of adding the buttons "inside" my movie but on top of everything that might appear afterwards ? No more depth or Z order in AS3 ?
    Thanks.
    Please don't tell me using scenes is bad because I've been using them for years and I've always read that all scenes become a long timeline at runtime. They're just very handy to me.

      I believe in AS1/2 you can set a depth at any value.
    Yes ! And that would have been handy here... not clean, but handy !
    Here's what I did so far :
    I added the buttons to the root and found a function that did the trick, called with a timer :
    var play_btn:mcBtnPlay = new mcBtnPlay();
    Object(root).addChild(play_btn);
    function moveToTop(child:DisplayObject):void {
      (child.parent != null) ? child.parent.setChildIndex(child, child.parent.numChildren-1) : null;
    function timerListener(e:TimerEvent):void {
      moveToTop(play_btn);
    The only problem is that the buttons will flash on screen at scene change because the of the timer interval, but you can think it's on purpose (visual clue) .
    Don't know if there's a more clever way to detect scene change apart from some code on each first frame of scenes ?

  • How to hide navigation button in xml config file

    I have a photo gallery with a navigation button that allows for additional photo categories that I don't want to appear. Unfortunately, I can't open the .fla as it appears to have been created with a newer version of Flash. The code in the config.xml file is basically:
    <navigation>
      <menu 1> <content>
    </menu 1>
    <menu 2> <content>
    </menu 2>
    etc.
    </navigation>
    Is there a tag I can add to make the navigation link disappear?

    Deleting the navigation tags will make the xml malformed.  You need to keep those, but the parts in between can go.

  • What is the earliest version of Acrobat that supports navigation buttons?

    My navigation button disappears in pdf. 
    (this happened when I enabled comments in an interactive PDF.
    What is the earliest version of Acrobat that supports navigation buttons?
    I can set the export of InDesign to match this version?
    For example, if I am on InDesign CS5 or 6, what export do your recommend.

    Ask in the Acro/ ID forums. Navigation requires PDF level 1.6 or 1.7, if I'm not mistaken, but beyond that I have no idea.
    Mylenium

  • Navigation Button and Apps World

    For some months now the navigation button has not worked and I find myself using the touch-screen and enter-button.
    Also my Blackberry Apps world has disappeared? I am unable to download firther apps?

    Hi stephen789uk and welcome to the BlackBerry Support Community Forums!
    Do you receive any response from your trackpad at all when using it? Have you done a battery pull to see if the trackpad works upon reboot?
    I would also recommend making sure you have the latest version of BlackBerry Device Software avaiable. Plug your device into your PC then go to www.blackberry.com/update to install any updates available.
    Thanks.
    -CptS
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • Print, Export and Page Navigation Buttons in the Report

    When I view a report through CR4E, the generated report has 3 buttons namely Print, Export and Page Navigation buttons. But when I click on either of the buttons I get a &#39;null pointer exception&#39;. This is a critical error as I am unable to navigate past the first page. Do I have to add code to these buttons? If not, why am I getting an error? Kindly solve my problem as soon as possible.

    <p>Looking at your code it appears that you are storing the ReportSource in session prior to passing in the ResultSet. This will create a problem when a postback is made on  the viewer page (which all of the viewer actions do). If you look at the sample code which is generated when you use the JSP Page Wizard you will notice that the ResultSet is passed to the ReportClientDocument object prior to it being stored in session. Then, when the page is called again this object is retrieved and the ReportSource is used by the viewer. You can quickly run the test using one of our sample reports to see what I am talking about. The code below was generated using the Consolidated Balance Sheet.rpt and did not experience any problems doing any of the viewer actions.</p><%@page import="com.businessobjects.samples.JRCHelperSample,<br />com.crystaldecisions.report.web.viewer.CrystalReportViewer,<br />com.crystaldecisions.reports.sdk.ReportClientDocument,<br />com.crystaldecisions.sdk.occa.report.application.OpenReportOptions,<br />com.crystaldecisions.sdk.occa.report.lib.ReportSDKExceptionBase,<br />com.crystaldecisions.sdk.occa.report.reportsource.IReportSource,<br />java.sql.Connection,<br />java.sql.DriverManager,<br />java.sql.ResultSet,<br />java.sql.SQLException,<br />java.sql.Statement"%><%<br /><br /><br />    try {<br /><br />        String reportName = "Sample Reports/Consolidated Balance Sheet.rpt";<br />        ReportClientDocument clientDoc = (ReportClientDocument) session.getAttribute(reportName);<br /><br />        if (clientDoc == null) {<br /><br />            clientDoc = new ReportClientDocument();<br />            <br />            // Open report<br />            clientDoc.open(reportName, OpenReportOptions._openAsReadOnly);<br /><br />  <br />            {<br />                // **** POPULATE MAIN REPORT ****<br />                {<br />                     // Connection Info for fetching the resultSet<br />                    String connectStr = "jdbc:derby:classpath:/Xtreme";<br />                    String driverName = "org.apache.derby.jdbc.EmbeddedDriver";<br />                    String userName = "dbuser";        // TODO: Fill in database user<br />                    String password = "dbpassword";    // TODO: Fill in valid password<br /><br />                    String query = "SELECT CUSTOMER_NAME FROM APP.CUSTOMER WHERE COUNTRY = &#39;Australia&#39;";<br /><br />                    <br />                    String tableAlias = "FINANCIALS";        // TODO: Change to correct table alias<br /><br />                     <br />                    JRCHelperSample.passResultSet(clientDoc, fetchResultSet(driverName, connectStr, userName, password, query),<br />                        tableAlias, "");<br />                }<br /><br /><br />            }<br />        <br />            // Store the report document in session<br />            session.setAttribute(reportName, clientDoc);<br /><br />        }<br /><br /><br />            {<br />                // Create the CrystalReportViewer object<br />                CrystalReportViewer crystalReportPageViewer = new CrystalReportViewer();<br /><br />                //    set the reportsource property of the viewer<br />                IReportSource reportSource = clientDoc.getReportSource();                <br />                crystalReportPageViewer.setReportSource(reportSource);<br /><br />                // set viewer attributes<br />                crystalReportPageViewer.setOwnPage(true);<br />                crystalReportPageViewer.setOwnForm(true);<br /><br />                // Process the report<br />                crystalReportPageViewer.processHttpRequest(request, response, application, null); <br /><br />            }<br />            <br /><br />    } catch (ReportSDKExceptionBase e) {<br />        out.println(e);<br />    } <br />    <br />%><%!<br />// Simple utility function for obtaining result sets that will be pushed into the report.  <br />// This is just standard querying of a Java result set and does NOT involve any <br />// Crystal JRC SDK functions. <br /><br />    private static ResultSet fetchResultSet(String driverName,<br />            String connectStr, String userName, String password, String query) throws SQLException, ClassNotFoundException {<br /><br />        //Load JDBC driver for the database that will be queried    <br />        Class.forName(driverName);<br /><br />        Connection connection = DriverManager.getConnection(connectStr, userName, password);<br />        Statement statement = connection.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY);<br /><br />        //Execute query and return result sets<br />        return statement.executeQuery(query);<br /><br />}%><p>Try using the code generated from the wizard to see if it works for you as well. </p><p>Regards,<br />Sean Johnson (CR4E Product Manager) </p>

  • How do I create more than one navigation button in Adobe Fireworks CS6?

    Hi guys, 
    Apologies if this comes across as very stupid question. I am a complete beginner with Adobe Fireworks and I'm in the process of creating my first website and I have got to the stage where I want to create navigation buttons and the book I have recommends using Adobe Fireworks so I have downloaded. My problem I have encountered is after I have created my first two state button what is the next step to create another two state button which has the identical size and colour of the previous two state button?
    Here is a brief rundown of the steps I have done to do the first two state button:
    1) Edit-Insert-New Button
    2) Chose the rectangle and then specified the width and height of the button and chose my stroke and fill colour
    3) Centred the button and used the text tool to put the button as a 'Home' button for my website. I then went on Window and Align in order to centre the text on the button
    4) I went on Select-Select All and then went on Windows-States to open the states panel. I right clicked on state 1 which is Up and clicked on copy to states. I then selected the next state radio button and clicked OK.
    5) I selected State 2 and slightly modified it by changing the colour of the text.
    6) I then clicked the back button to return to the main window.
    After this what step should I take to create my another button which has the same size, colour and text style as I have created for the first button? I tried just repeating these steps again but when I do step 1 it creates a new fireworks document which means I have to create the buttons size, colour, text style from scratch.
    Your help would be greatly appreciated guys and once again I do apologise if this comes across as a silly question.
    PS Please could you let me know if the steps I have taken to create the 1st two state button are correct

    Initially you need to configure via the provider's own web based control panel multiple e-mail accounts. If they don't have one, work it out with their customer support to have three distinct mail accounts. Then you can setup multiple logins by adding new accounts to mail. Since mail checks all accounts per Mac OS X user account simultaneously, it probably is best to use different usernames on the same internet provider. If you don't want mail to show all the information from all three mail accounts simultaneously, configure Apple menu -> System Preferences -> Accounts to have multiple users on your computer, and configure each of the internet service provider accounts for each separaet user on Mac OS X.
    Message was edited by: a brody

  • Adding Navigation Buttons for Users of PDF Documents

    The default for Acrobat Reader (and even the Pro version)
    seems to leave the Forward and Back navigation buttons OFF the
    Acrobat Reader tool bar. You have to deliberately go into the Tools
    - Customize Tools menu and turn on these two buttons in order for
    them to appear in the tool bar. This creates problems for readers
    of your PDF documents if the readers of your documents aren't very
    computer savy. If you have links in your PDF document so readers
    can navigate around, not having the Forward and Back buttons up on
    the tool bar as a default makes these links almost useless. The
    reader has to know how to turn these two buttons on and some
    readers may not have a clue how to do that.
    My question: Is there a way to put 2 navigation buttons on a
    reader's toolbar AUTOMATICALLY when they open your document--ie,
    something embedded in the PDF doc that automatically turns these
    buttons on for the reader so they don't have to do it
    themselves?

    Thank you for your post. These forums are specific to the
    Acrobat.com website and its set of hosted services, and do not
    cover the Acrobat family of desktop products. Please visit the
    following forums for any questions related to the Acrobat family of
    desktop products:
    http://www.adobeforums.com/cgi-bin/webx/.3bbeda8b/

  • How can I replace navigation buttons with obvious ones?

    Here's the web page:  http://josephskibell.com/. I've just taken over this website for a friend and opened it in Dreamweaver but the code is such that the existing four little square navigation buttons at the top of the page don't show up in design view (these change the book images).  The client wanted some more "obvious" buttons there because people are not understanding that those little squares are buttons.  Arrows may work better.  Can anyone advise?
    thanks

    Open scroll_buttons.css.
    The image sprite used is here:
    http://josephskibell.com/images/navigator.png
    My advice is to make a bigger sprite and change height and width sizes in your CSS code.
    More on CSS Sprites.
    http://alt-web.com/DEMOS/CSS-Sprites.shtml
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • Document Numbering Series and navigation buttons in SBO

    Hi there,
    A new set of document numbering is created for new financial year.
    e.g. SO11-100001 is for financial year 2011 and SO12-100001 is for financial year 2012.
    Due to this setup, we have encountered a problem to use SAP navigation button to search between documents such as when I continue to click u201CNEXTu201D button, the documents would be popup in following sequence:
                    SO11-100001  SO12-100001  SO11-100002  SO12-100002  u2026u2026
    Is there a way to just navigte through SO12 series documents only?
    If I use series grouping under "Authorizations", this will totally block the previous year's documents. There may still be open docuemnts from last year and therefore, using "Authorizations" is not a wise option.
    If there is a workaround, kindly share with me.
    Thanks,
    Yadana

    hi Yadana
    in that case u can create a user query displaying the fields u want on the basis on the period indicator i.e. 2011 & 2012
    hope this would suffice your concern
    Regards,
    Manish

  • How do I get pop-up windows to show the navigation buttons (not just the address box)?

    When I click on a link that opens a new firefox window, the new window shows a navigation toolbar that does not include the back, forward, stop, and home buttons (it only shows the internet address box). However, the original firefox window that I navigated away from shows all of the navigation buttons AND the address bar. How do I get these new firefox windows to show the navigation buttons in addition to the address box that automatically appears?

    See:
    http://kb.mozillazine.org/Prevent_websites_from_disabling_new_window_features
    http://kb.mozillazine.org/JavaScript#Advanced_JavaScript_settings

  • When trying to sign out of Hotmail the "back navigation button" remains green and I have to click sign out again and the same thing happens over and over and the only way to close Hotmail is to go to File and Close Frame, so what's my problem?

    When I attempt to sign out of Hot Mail by clicking "Sign Out," I get the "Sign In" instruction as I always have, however, the green Firefox navigation button remains on bright green (not going to gray) and my MSN home page will not close automatically as usual. I click on the green arrow and I get an instruction to "Sign Out" again. I click on that and get the "Sign In" again but the arrow stays green. I can repeat this countless times and never get signed out and always remaining on the MSN home page. The only way I can close is to go to File and click on Close Window and then my homepage will close and go back to desktop. I've been using Firefox for a couple of years now (IE prior to that for ten years) and have never had this problem. After using "Close Window" I go back onto my home page, from the desktop, and the navigation button is grayed out normally until I sign in again and we start the cycle over again. Have I been hacked?
    == This happened ==
    Every time Firefox opened
    == Approximately a month ago.

    I was doing a side-by-side comparison of the new and old server (we backed up the server before the reformat) and I can see that, evidently, CR XI was installed.  We have the directory C:\Program Files\Common Files\Business Objects\3.0 and all the versions match what is located in the project's bin directory.  Does this confirm that I did have XI installed and licensed at one time?
    If I purchase a more recent version, couldn't I update the reports to use the newer version?  I have all the source code.
    Thanks for your help, it is a nice sanity check for me after hours of reading forums and documentation.
    Also, just a shot in the dark, but I'm assuming it wouldn't do me any good to simply restore the aforementioned folder to my C drive?  Would that work if I registered all the dll's?
    Edited by: Eric Hollering on Dec 2, 2009 6:40 PM
    To be clear, I do have VS 2003 & 2005, and I have the source code.  I just have never used Crystal Reports in any of my .NET apps because the need wasn't there, so recompiling is not out of the question.
    Edited by: Eric Hollering on Dec 2, 2009 6:49 PM
    Also, I looked at the CrystalDecisions.CrystalReports.Engine.dll that was in the C:\Program Files\Common Files\Business Objects\3.0\Managed folder and when I right-click and view the properties, then the Version tab, in addition to the 11.0.9500.2 version number, there is a property called Product Version that has the value .NET.  Does that mean that this dll was bundled with Visual Studio?
    I also found this directory on the old server...does this tell you anything?
    C:\Program Files\Business Objects\BusinessObjects Enterprise 11
    I did see that you can still buy XI from CDW.  I have a call into them currently to check with Business Objects for any registrations from my company.
    Edited by: Eric Hollering on Dec 2, 2009 8:27 PM

  • Navigation buttons not working in iPad Adobe Content Viewer

    I am reposting this as a separate discussion from this thread (http://forums.adobe.com/message/5551618#5551618), since Bob B. said this is a separate bug from the nav button problems in Single Edition apps that people were encountering.
    Here is my problem:
    I have several folios that are a presentation of work (a slideshow per page, on most pages). Navigation buttons are needed since vertical swiping doesn't work on the pages where my images are full-width.
    Five times in the past week, the buttons have quit working (tapping a button jumps you back to the first page of the folio, instead of to Next or Prev). The only way to get them working again is to delete Content Viewer and all the content off the iPad, reinstall Content Viewer, and download the folios again. So far, I can use the folio maybe once or twice, and then the problem happens again.
    As you can imagine, this is very frustrating.
    It would be great if someone can look into this, since it does not seem to be a freak occurrence - it happens to me all the time since I got the latest version of Content Viewer.
    Thank you,
    Camille

    A tester was finally able to reproduce this bug. I'll let you know when I find more information. Thanks for reporting it.

  • Help with Re-Linking Navigation Buttons

    I have Adobe Flash CS3 Pro.
    I have a navigation header flash file that came with my website template and I am having difficulty making sense of the actionscript. It has a logo section with effects, 5 main nav buttons that move, and two extra link buttons above the navigation bar. Let’s focus on just the Navigation buttons for now. Here is what I have gathered. I have multiple text buttons on one movieclip, and I have successfully edited the text for each button. If I look at the actionscript in the top layer of this movieclip I see:
    “gotoAndStop(parent._parent.num);”
    I also have a separate movieclip symbol (with effects) with 5 buttons layers listed in the actionscript with the following actionscript tied to each button from numbers 1 through 5:
    onClipEvent (load) {
                num=1;
    onClipEvent (load) {
                num=2;
    onClipEvent (load) {
                num=3;
    onClipEvent (load) {
                num=4;
    onClipEvent (load) {
                num=5;
    On the top layer of these 5 buttons I have the following actionscript:
    stop();
    this["item"+_root.button].gotoAndPlay("s1");
    _root.link = _root.button;
    I also have a separate button symbol with the following actionscript:
    on (rollOver) {
                if (_root.link<>1) {
                            menu.item1.gotoAndPlay("s1");
    on (releaseOutside, rollOut) {
                if (_root.link<>1) {
                            menu.item1.gotoAndPlay("s2");
    on (release) {
                if (_root.link<>1) {
                            _root.menu["item"+_root.link].gotoAndPlay("s2");
                            _root.link = 1;
                            getURL("index.html");
    Now my website template came with 5 html pages that my flash navigation buttons correspond to: (index.html, index-1.html, index-2.html, index-3.html, index-4.html, index-5.html). My problem is that I have created new pages (index.html, about.html, featured.html, projects.html, contact.html). I would like each of the 5 buttons to correspond to these pages, not the existing standard “index-n.html” pages. 
    Also, this is probably not relevant, but each html page has something to this affect so I can see how they correspond to each button.
    <script type="text/javascript">
              var fo = new FlashObject("flash/menu_vf8.swf?button=2", "head", "100%", "144", "7", "");
              fo.addParam("quality", "high");
                        fo.addParam("wmode", "transparent");
                            fo.addParam("scale", "noscale");
              fo.write("head");
            </script>
    I guess my real question is: What actionscript do I need to update or remove for the nav button LINKS to work with my new html pages rather than the standard 5 index-n.html pages that it automatically wants to link to?
    When I try and add a “getURL” command to each of the 5 buttons and test preview the movie, the links work, but it messes up the effects of the movieclip. In other words, the buttons don’t move, they are motionless, however the links work. If I added this command to each button in some way, what actionscript would I need to remove so there weren’t any complications? I need some expert help here for it would be much appreciated. I am a novice with Flash script and its killing me that I can’t figure it out. I asked for help from the template support and all they came back with was the following message and it wasn’t helpful:
    You need to duplicate each button you are editing - it is very important.
    2) Update the scripting to look similar way:
    on (release) {
    if (_root.link<>num) {
    _parent["item"+_root.link].gotoAndPlay("s2");
    _root.link = num;
    if (num == 1) {
    getURL("index.html");
    } else {
    getURL("index-"+Number(num-1)+".html");
    Update it to:
    on (release) {
    getURL("http://www.google.com");
    Also, I read through the following discussion, which was helpful to a degree, but it still didn’t answer my questions about getting the links to work.
    http://forums.adobe.com/message/3614092#3614092

    First of all, thank you for showing interest and helping out in my dilemma here. I wish I understood your meaning behind “on” because with my luck there is probably some hidden way of placing script on an object that I don’t understand or haven’t discovered yet.
    This is what I know:
    I have multiple text buttons on one movieclip entitled “textbutton1” (see previous picture), and I have successfully edited the text for each button and created two extra frames/buttons to make 7 total. If I look at the actionscript in the top layer of this movieclip I see:
    “gotoAndStop(parent._parent.num);”
    But there is no action on each individual frame (all 7 of them) on that layer.
    Like I mentioned before I have a separate movieclip symbol (entitled “menu effect”) with 7 button movieclip layers listed in the actionscript with the following actionscript on each layer.
    onClipEvent (load) {
                num=1;
    onClipEvent (load) {
                num=2;
    onClipEvent (load) {
                num=3;
    onClipEvent (load) {
                num=4;
    onClipEvent (load) {
                num=5;
    onClipEvent (load) {
                num=6;
    onClipEvent (load) {
                num=7;
    On the top layer (layer 4 frame 25) of these 5 buttons I have the following actionscript:
    stop();
    this["item"+_root.button].gotoAndPlay("s1");
    _root.link = _root.button;
    I can upload another particular image of the movieclip/actionscript if it would be helpful. Let me know.

  • Navigation buttons are not working in Jdev 11.1.2.2

    Hi All,
    I am new to ADF and I am trying to create navigation buttons but it is not working.
    I created the taskflow and the pages and I set the actions to the buttons but it only refresh the page
    Best Regards

    Sorry for disturbance it is working now :)

Maybe you are looking for

  • Authorization for material type and material views

    Hello all, I would need to restrict a user group, in creation (MM01) and modification of material master, based of type material and material views. The authorization, for each user should be: - view, modify and create of all views, except accounting

  • IPOD TOUCH KEEPS COMING UP WITH CONNECT USB HAVNT GOT IT GOING YET?

    Just got ipod touch am setting it up through windows vista all i get is picture of usb to itunes. have register with itunes but it say ipod is in recovery mode restore click on restore button. can't restore error 1603. how do i get it going?

  • Bug in SQL*Plus 9.2.0.1.0 with 8.1.6 instance.

    WARNING !!!! I just installed the client 9.2.0.1.0 but we are still using 8.1.6.3.8 databases on NT. There is a major BUG in SQL*Plus 9.2.0.1.0. If you do a select on a sys table that have a LONG column, SQL*Plus exits immediately !!! For example if

  • Convert Large Binary File to Large ASCI File

    Hello, I need some suggestions on how to convert a large binary file > 200MB to an ASCI File. I have a program that streams data to disk in binary format and now I would like to either add to my application or create a new app if necessary. Here is w

  • SIA in the cluster shows it is stoped but the servises are runnig

    After clustering 2 nodes strange behavior of SIA's observed. SIA is stopped but the services are still running. SIA can not be restarted from the node. BOE 3.1 SP3 Java with Tomcat installed on  (32bit) Window 2008 standard server. It is virtual serv