Page Navigation Button Functionality

Hi all,
I'm wondering if anyone knows of any other way to get "back" or "previous view" functionality through a button on the iOS app.
This is what my button does. It works flawlessly on the desktop version of Adobe Reader.
Clicking the button basically returns you to the last page you were looking at. Unfortunately, the button doesn't seem to work on the mobile app at this time.
So I have two questions for you!
1. Do you know of any way I could get this same functionality on the iPad app?
2. How do I submit a feature request for this?
Thank you guys!

Your request will be read here by the product manager and Adobe engineers.
Keep in mind that Adobe Reader for iOS is very new and not nearly as mature as PDF viewers for Mac and Windows.

Similar Messages

  • 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 'null pointer exception'. 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 to get the page navigation buttons back at the bottom of the page?

    After upgrading to Acrobat X I discovered that there is only one option for the page navigation buttons - at the upper left. I'm mystified as to why they put them there. Most users are right-handed. With the buttons at upper left it's awkward to reach up there, across the page, with the mouse cursor for every page turn (yeah, I know you can use the PgUp/PgDnkeyboard keys, but that requires taking your hand off the mouse every page turn).
    What I really want is to be able to put a copy of these buttons back down at the bottom center of the page, which was an option in previous versions. Is there some way to get those back at the bottom?

    Hi terpenoid,
    Have you tried Read Mode yet ( under the View menu)?  It displays a nivagation bar at the bottom of the PDF with next/previous page, zoom in/out, etc.
    Hope this helps,
    Dimitri
    WindJack Solutions
    www.windjack.com
    www.pdfscripting.com

  • Can't see the page navigation button in flash model?

    Can't see the page navigation button in flash model? how to do it?
    Thanks in advanced!

    Hello Wei Liu,
    For both WD and flash you have the following connectors: start, end, signal in, signal out, data store and user data.
    In WD you have in addition navigate.
    In flash you have popup signal and timer.
    See also SAP Note No. 936547.
    Best regards,
    Shay

  • Rendering differences when "go to last page" navigation button is clicked

    Hi All,
    Critical issue here, apparently a new rendering bug in the crystal report viewer:
    In a framework 3.5 sp1 application (vb.net) using the Crystal Report Viewer, ***. version 12.0.2000.0 , file version 12.3.2002.753 (i.e. 2008 with sp3 installed and fp3.2 installed over that), I have a report that will render differently depending on whether or not the user clicks the "go to last page" button, or whether they just print/export/use single page advance navigation.
    The difference in rendering is that "report footer a"  (there are "g" of these) is not displayed.  This footer contains essential summary information for the grouped data above. 
    Related, but subtly different, is that the last group header/detail/group footer is not displayed if the details section is empty, again, IFF the go to last page button is clicked.  It renders correctly if go to last page is not used.
    The unique thing about the reporting implemenation in this app is that the fields/headers are dynamically positioned at runtime (based on user settings).  Similarly, the fonts, heights and visibility (i.e. SectionFormat.EnableSuppress) of group sections are also dynamically set at run time.  The ReportDocument object manipulation is done entirely in memory and is not (at least by me) persisted to disk before rendering in the viewer. 
    Is there a work around, programmatic or otherwise, other than removing the navigation buttons?  What assumptions is the rendering engine making about section size as it (apparently) short circuits sequential rendering when the go to last page button is clicked?
    Any clues would be greatly appreciated.
    Best,
    _t

    Hi Don,
    Thanks for the response.
    It's a winforms app. 
    The data access is through typed datasets that are filled on the client using linq to objects (i.e. not a connection to a remote db).  There is one main ds (which has the report's detail data).  There are also 5 unrelated subreport ds's that are used to fill standard header/footer information.
    I can export the report to an rpt file through the app, but the data is never included.  Haven't found a way to get data to save with rpt file.  ReportOption save data with report is checked for the report, but the actual data never gets saved into the rpt file. 
    Formatting of report, post programattic manipulation, is as I expect and appears identical irrespective of clicking the "go to last page" nav button.
    I would hazard a guess that it's not a caching issue since the rendering bug occurs only if the go to last page (GTLP from now on)  button is clicked BEFORE the report has been navigated through sequentially or exported.  Once exported or single-page advanced through, the report renders correctly (i.e., the GTLP  appears to be reading from the cache, and not running it's own rendering scheme). 
    Is there a way to dump the cache manually?  At the very least I could dump the cache before printing/exporting to ensure that the export  function creates a fresh (and bug free) rendering.  It is the output to paper/pdf etc that is most critical.  If there's a bit of stupidity on screen, I can convince my clients to laugh this off as a bit of silly screen junk, but the externalization of the data (pdf or print) must be reliable.
    Cheers,
    T

  • Page navigation buttons not working properly

    Hi,
    I am having a multilingual Java Application (e.g. English, Japanese, French...).  In this application there are reports which display the data using locale parameter (like en_US, ja_JP etc.) to display the data in selected language.
    The problem comes up when I see Japanese reports on English operating system machine and vice versa.
    When I click any button of page navigation it changes the page number but does not load and display the page accordingly.
    It's like when I run the report it displays the first page, then clicking on Next button brings 2 in navigation field but the report  would still show first page, same happens for 3, 4.... all pages. 
    The other navigation buttons also do not work, they change the page number but display only the first page.
    This problem does not occur when I see Japanese reports on Japanese OS machine and English reports on English OS machine.
    However my clients need the first case, Japanese reports should work on English OS machine also.
    Please advise urgenly.

    Hi,
    I resolved the above issue by removing the call to method setProductLocale in jsp file (which was really unnecessary in code as product locale is meant to set languange for crystal report design environment ).
    Actually the problem was I had set locale at two place
                    1. using setLocale method of ReportClientDocument object) after the initialization of report client document object
                    2. using setProductLocale method of CrystalReportViewer object after the initialization of Crystal Report Viewer  object
    After commenting out code for setProductLocale, reports in all languages and all their functionalities started working 100% perfectly.
    Thanks.

  • On album pages, navigation buttons upload as ? marks. how to avoid?

    on uploaded album pages, enlarged photo feature has ? marks for navigation buttons. why?

    You need to check that everything has been uploaded to your server correctly - questions marks means that probably, your scripts folder has not been uploaded.
    You need to check at your host to see that all your files have actually been uploaded.

  • Navigation buttons are not visible and lost it´s functional

    I have an intercative document that i have exported from Indesign. On every page their should be an navigation buttons with functions like
    next , previous , last page etc. Everything works on a PC but on the Mac the buttons are only visible on the first two pages and on the 80 other
    pages they are not visible, but I get the hand with the index finger when i put the pen/mouse on the location where they should be but they have also
    lost their function? Can anyone help me here?

    What you're seeing may be related to a known bug with InDesign CS6: http://forums.adobe.com/message/4482056#4482056

  • Previous page navigation after on click of cancel button of a form in adf

    Hi,
    Can any one tell how previous page navigation works in adf?
    I am working on a portal page which is having a common footer for all jspx pages.This footer contains a golink for feedback form.
    so the problem is when I Navigate to any page (# page 1)and then Navigate to some other page (#page 2) and on click of Feedback link displayed on footer of page 2 Feedback form is displayed. and on Click of Cancel button of the form.
    Expected Result:
    User should be navigated to the page that they were on. (i.e., Page 2)
    Actual Result:
    User is navigated to page 1 instead of page 2
    i.e it is taking browser previous url.
    I am using the following code for the cancel button
    <af:commandLink text="Cancel" id="cl5">
    <af:clientListener method="goBack" type="click"/>
    </af:commandLink>
    java script....
    function goBack()
    window.history.back()
    Edited by: 993530 on Apr 23, 2013 3:35 AM

    Hi,
    Immediate = true is already been set for cancel button
    The problem is when i come back to the 1st page vo is getting executed again and is taking lot of time.. i need to see that vo does not get executed again
    in the vo for view criteria -- query execution mode , i have made as in memory and now it has become fast on click of cancel button. But i am getting the following error when i perform search in the first page
    Missing FROM in a SELECT statement
    An unexpected expression token is found.
    Thanks,
    .

  • Override "Email a Page link" in ribbon button functionality in SharePoint 2013

    Hi,
    I want to override "Email a Page link" ribbon button functionality on the ribbon control.
      <CustomAction Id="Ribbon.WikiPageTab.Share.EmailPageLink"
                    Location="CommandUI.Ribbon"                
                    Title="Custom Email this page">
        <CommandUIExtension>
          <CommandUIDefinitions>
            <CommandUIDefinition Location="Ribbon.WikiPageTab.Share.EmailPageLink">
              <Group
              Id="Ribbon.WikiPageTab.Share"
              Sequence="30"
              Command="ShareGroup"
              Description=""
              Title="$Resources:core,cui_GrpShare;"
              Image32by32Popup="/_layouts/15/$Resources:core,Language;/images/formatmap32x32.png?rev=23" Image32by32PopupTop="-137" Image32by32PopupLeft="-103"
              Template="Ribbon.Templates.Flexible2"
              >
                <Controls Id="Ribbon.WikiPageTab.Share.Controls">
                  <Button
                    Id="Ribbon.WikiPageTab.Share.EmailPageLink"
                    Sequence="10"
                    Command="CustomEmailPageUrl"
                    Image16by16="/_layouts/15/$Resources:core,Language;/images/formatmap16x16.png?rev=23" Image16by16Top="-115" Image16by16Left="-19"
                    Image32by32="/_layouts/15/$Resources:core,Language;/images/formatmap32x32.png?rev=23" Image32by32Top="-137" Image32by32Left="-511"
                    LabelText="$Resources:core,cui_ButEmailLink;"
                    ToolTipTitle="$Resources:core,cui_ButEmailLink;"
                    ToolTipDescription="$Resources:core,cui_STT_ButEmailLinkPage;"
                    TemplateAlias="o1"
                   />
                </Controls>
                  </Group>
            </CommandUIDefinition>
          </CommandUIDefinitions>
          <CommandUIHandlers>
            <CommandUIHandler Command="CustomEmailPageUrl" CommandAction="javascript:alert('Hello, world');" />
          </CommandUIHandlers>
        </CommandUIExtension>
      </CustomAction>
    Any help would be appreciated.
    Rajasekar A.C

    Hi,
    According to your post, my understanding is that you wanted to override the “E-mail a Link” button on the Ribbon.
    I had created a simple demo to override the “E-mail a Link” button on the Ribbon, you can have a look at it.
    <?xml version="1.0" encoding="utf-8"?>
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <CustomAction Id="Ribbon.Library.Actions.OverrideEmailLinkButton" Location="CommandUI.Ribbon" RegistrationId="101" RegistrationType="List" Title="Display the UniqueId for the list item.">
    <CommandUIExtension>
    <CommandUIDefinitions>
    <CommandUIDefinition Location="Ribbon.Library.Share.EmailLibraryLink">
    <Button Id="Ribbon.Library.Share.EmailLibraryLink.ReplacementButton" Command="ReplacementButtonCommand" Image16by16="http://s10.postimage.org/lhar0oijp/U16.png" Image32by32="http://s17.postimage.org/trf3y2ui3/U32.png" LabelText="Replaced Button" TemplateAlias="o2" />
    </CommandUIDefinition>
    </CommandUIDefinitions>
    <CommandUIHandlers>
    <CommandUIHandler Command="ReplacementButtonCommand" CommandAction="javascript:alert('This button has been replaced.');" />
    </CommandUIHandlers>
    </CommandUIExtension>
    </CustomAction>
    </Elements>
    More reference:http://msdn.microsoft.com/en-us/library/office/ff407619(v=office.14).aspx
    Thanks,
    Jason
    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]
    Jason Guo
    TechNet Community Support

  • Move button to the next page with his function.

    Hello, is the any way to move a button to the another page with his functions?
    I can't creat a new button, because I need all the function that contains the button original. I use it now, but it is not ok for to change te page because it has not the paramater location.... :
            var newAddRect=[addRect[0], addRect[1] + delta -1, addRect[2],addRect[3] + delta -1];
            btnAdd.rect = newAddRect;
    I saw the propierty: button.page, but is only for read.
    I know about the propierty Action of the button, and I know that I could assign the code... but I descarted because it's will generate a recursive code....
    Can I use in the button.Action the call a trusted function ?
    Thank you!
    Regards.

    Thank yoy try67 !
    I am trying this way, now I am creating a new button, and I am trying to put, all the code of the original button in one function.
    And, when I am creating de new button  btn:
    var btn = this.addField(name, type, page, newAddRect)
    btn.setAcion("MouseUp","myFunction()");
    this not works...
    the function is in one file in:
    C:\Documents and Settings\user\Datos de programa\Adobe\Acrobat\9.0\JavaScripts\myFile.js
    and the contains of the function is a simple alert.....
    Any idea...¿?
    Thank you!
    Regards,
    Xavi Marín.

  • Menu navigation buttons do not appear when viewing page on iPhone

    My webpage shows the menu navigation buttons on all browsers and platforms but when viewing on an iPhone they are not there. Hence you cannot view other pages. Is this a restriction of pages created in iWeb or am I doing something wrong?
    I have trawled through the discussion forum and tried tips such as the height of the menu bar from the top on the page, pixel width and making sure the menu box is at the front or brought forward.
    my website is www.sussexgolfcaptains.org

    This may or may not be of interest, but some site builders (such as weebly.com) are mobile friendly — click here:
    http://blog.weebly.com/2/post/2010/12/your-websites-are-now-mobile-friendly.html   http://blog.weebly.com/2/post/2010/12/your-websites-are-now-mobile-friendly.html
    Also, unlike sites made with iWeb, Weebly sites respond to desktop Safari's +View > Zoom In+ command — this is helpful for many who don't have perfect eyesight for reading small text. (iWeb's default font sizes are relatively small.)

  • 6110 navigator button - new function?

    Can any tell me how to reprogram the "navigator button" to activate another program ... example a different mapping program.
    Regards
    Craig

    As far as I know, you can´t assign new function to that button.

  • Re: [iPlanet-JATO] Back Button functionality

    Hi Mike,
    Our test environment does not include proxy server.
    regards,
    syam.
    Please respond to [email protected]
    cc:
    Subject: Re: [iPlanet-JATO] Back Button functionality
    Guys,
    Please clarify something for me, the JATO code is commented as follows
    protected void addResponseHeaders(RequestContext requestContext)
    // These values should make any proxy between the client and
    // server avoid caching, and ensure that pages from one user
    // can never be seen by another user (if they're cached anyway)
    requestContext.getResponse().addHeader("Pragma","no-cache");
    requestContext.getResponse().addHeader
    ("Cache-Control","private");Yet you make no mention of whether your test environment includes a Proxy
    Server, or does your browser
    go directly to the Application Server's web server?
    Can you clarify, please?
    ----- Original Message -----
    From: <syam_reddy@p...>
    Sent: Wednesday, April 25, 2001 2:59 PM
    Subject: [iPlanet-JATO] Back Button functionality
    >
    Hi,
    We observed the following difference in behaviour between JATO pages
    and NetD served pages.
    We have the following scenario. User will login to the
    site. After login he will get a frame set. This frame set has threeframes.
    Top and bottom frames are used for navigation (to switch between various
    sections on the site.) .The middle frame(main frame) shows the actual
    content. When the the frame set gets loaded main frame shows page1. User
    will click on a link on page1. Page 2 will be loaded in main frame. Atthis
    point if the user clicks on back button , with migrated application(JATO
    pages) the following message appears in the main frame.
    In Netscape Communicator 4.61 the following message appears in the main
    frame :
    Data Missing
    This document resulted from a POST operation and has expired fromcache.If
    you wish you can repost the form data to recreate the document by
    presenting the reload button.
    In IE 4.72/5.5 the following message appears in the main frame:
    Warning : Page has Expired
    The page you requested was created using information you submitted in a
    form.This page is no longer available.As a security precaution, Internet
    Explorer does not automatically resubmit your information for you. To
    resubmit your information and view the web page click teh refresh button.
    However, in the NetD site page1 will appear in main frame.
    How do we mimic the NetD behaviour with the migrated
    applications ?
    We think the above behaviour with migrated Apps, is due to the
    headers that are get set in Application ServletBase , see the following
    code snippet :
    protected void addResponseHeaders(RequestContext requestContext)
    // These values should make any proxy between the client and
    // server avoid caching, and ensure that pages from one user
    // can never be seen by another user (if they're cached anyway)
    requestContext.getResponse().addHeader("Pragma","no-cache");
    requestContext.getResponse().addHeader
    ("Cache-Control","private");
    If we comment the above code , we were able to mimic theNetD
    behaviour. Are there any alternatives/thoughts on how to mimic the NetD
    behaviour ?
    Thanks in Advance,
    syam&ravi.
    [email protected]
    [email protected]

    OK, here's what I'm trying to do: We have, like you said, a menu
    page. The pages that it goes to and the number of links are all
    variable and read from the database. In NetD we were able to create
    URLs in the form
    pgXYZ?SPIDERSESSION=abcd
    so this is what I'm trying to replicate here. So the URL that works
    is
    pgContactUs?GXHC_GX_jst=fc7b7e61662d6164&GXHC_gx_session_id_=cc9c6dfa5
    601afa7
    which I interpreted to be the equivalent of the old Netd way. Our
    javascript also loads other frames of the page in the same manner.
    And I believe the URL-rewritten frame sources of a frameset look like
    this too.
    This all worked except for the timeout problem. In theory we could
    rewrite all URLs to go to a handler, but that would be...
    inconvenient.

  • Cannot view HTML navigation buttons

    On my computer, Firefox (5.0) does not show the forward and back navigation buttons on one particular website. But on another computer with Firefox 5.0 the navigation buttons are visible and functional. I checked the "Websites look wrong" suggestions, but it isn't page styles, zoom level, font size, or script.
    The navigation links appear to be in a table. I see the other cells, but not the forward and back links. Here is an example:
    <title>Diario de Yucat&aacute;n - Ciudadanos rechazan la violencia</title>
    <div id="paging" align="center">
    <div id="notatitu">Ciudadanos rechazan la violencia</div>
    <table height="25" border="0" cellpadding="0" cellspacing="0" style="position:relative; margin-top:10px;">
    <tr>
    <td width="111" align="right" valign="top">
    <a href="funcion_subportada.php?galeria_slide=20110408&seccion=146460&id=90043&pag_=1"><img border="0" title="Foto anterior" alt="Foto anterior" src="http://www.yucatan.com.mx/images/bantenota.gif" style="padding-bottom:4px" /></a></td>
    <td valign="top"><div style=" color:#333; ">&nbsp;&nbsp;<strong>2 </strong> de <strong>22</strong>&nbsp;&nbsp;</div>
    </td>
    <td width="111" align="left" valign="top"> <a href="funcion_subportada.php?galeria_slide=20110408&seccion=146460&id=90043&pag_=3"><img title="Foto siguiente" alt="Foto siguiente" border="0" src="http://www.yucatan.com.mx/images/bsignota.gif" /></a>
    </td>
    </tr>
    </table>
    </div>
    <style>
    .principal{clear: both; display: block; height: 0;overflow: hidden;visibility: hidden;width: 0;}</style>

    Thanks so much for taking the time to address my question. Although your suggestion wasn't the fix, it led me to the solution. I had gotten a little carried away with AdBlock Plus. (Mexican websites can be extremely trashy with flashing graphics and ads.) In return for unubstructed reading, I had lost ability to see the navigation arrows, which are also .gif graphics! Thank you again!

Maybe you are looking for

  • How to configure CISCO ASA 5510 for internal remote desktop ?

    Helo,I have a client that want to install new ASA (5510) in their network. and then I did some experiment to implement it. the topology is like this : --------configuration--------- 2800 router : interface FastEthernet0/0 ip address 172.16.1.1 255.25

  • Changing the atributes of a field in VA01

    hi, In transaction VA01, i need to make the field 'WBS Element', in the tab 'Account Assignment' for the items, editable. In order to achieve this, i´ve used the exit USEREXIT_FIELD_MODIFICATION in MV45AFZZ, with the following code: CASE SCREEN-NAME.

  • Calendar not showing times?

    In Calendar, is there a way to see the time of the event when the app is in "Month" view? Right now, it just list the events, and you have to open the event or go into "week" view to see what time it starts.

  • Airport card is no longer detected

    Hi, This is my first time here, but I'm hoping to find some answers. I've owned my computer for a year with no problems (the airport worked perfectly). I recently was installing some system updates (think Itunes, Quicktime, and a Security one) and go

  • I have CS6 in Dutch, but I need it in English. How can I swap?

    I have CS6 in Dutch, but I need it in English. How can I swap?