Hide playbar – problem

Hi,
I have a project where I don’t want the playbar on the first slide where is the title of the course and the Company logo.
I  use the Variables feature of Cp to show/hide playbar.
But when I launch the preview or the output file .exe the playbar appears just for an instant like a flash on the first slide.
No transition on the first slide  and  “fade in on the first slide”in Preference is unchecked.
The same occurs if the output is swf.
I notice that if I click on “rewind”button of the playbar during the project or at the end, the project starts again and the playbar is not visible on the first slide!
It's annoying the flash of the playbar 
How can I solve the problem
I’ve Elearning suite 6 with Cp 6.0.1.240 – Windows 7 home premium 64 bit
Anyone has an idea ?
thanks in advance
Elena57

Hi Elena,
I don't think that there is any way to avoid this "flash" unfortunately. The first slide must load completely before any events or actions are executed and therefore the playbar will load and display before the command to hide it is executed.
Perhaps try to experiment with "Fade in" on your first slide to see if you can minimize the flashing.
www.cpguru.com - Adobe Captivate Widgets, Tutorials, Tips and Tricks and much more..

Similar Messages

  • Javascript to print slide AND hide playbar

    Hi all,
    I know I can use the simple javascript window.print() to print a slide, but when I do that it also prints the print button and playbar. Is there a way - I'm sure there is, I just don't know how.... to hide the playbar, hide the print button, print the page and then show the playbar or a continue button again? I want my users to be able to print just the slide content.
    Oh, running CP7 64 but on a windows 8 machine.
    Thanks for the help!!
      Lori

    Very unusual, Here are some more questions to help nail down the issue.
    Are both date text lines in form fields? What are the form field names? i.e. is this an exact copy of the existing form field? What are the settings that differentiate the two fields, i.e. Rotation, etc.?
    Could the script be somehow getting run twice?
    On another note, why are you naming all of the fields differently. It looks like they all get the same info. If this is true then you could simplify the script by making them all the same name. You would not need the loop to apply the date text.
    Thom Parker
    The source for PDF Scripting Info
    www.pdfScripting.com
    The Acrobat JavaScript Reference, Use it Early and Often
    http://www.adobe.com/devnet/acrobat/

  • Hide playbar

    Sorry, I'm sure this has been asked and possibly answered before, but... Is there a way to hide the playbar navigation controls on selected slides?

    THANK YOU (and Lilybiri)! That was remarkably simple, especially when you consider I searched every possible, conceivable way through Captivate's Help and found absolutely nothing by way of a solution.
    For any others who would like to have this secret revealed:
    "But if you only want to hide the playbar on a slide, you do not really  need an advanced action. You can change the action 'On enter slide',  choose Assign and as variable cpCmndShowPlaybar. If you assign the value  1 the playbar will be visible, if you assing the value 0 it will be  invisibel. On the first slide where you want to hide you set it to 0,  and on the slide where you want to show it again you set it to 1."

  • Hide Playbar In Quiz Works -- until you go back

    I have a tutorial with a few knowledge checks (quiz questions). In order to make sure the user does not just skip by the quiz question, I checked the disable playbar in quiz box. This worked like a charm, until I clicked the Back button to go back and look at the quiz question after it had been submitted.
    This quite effectively stopped both forward and backward navigation, as I cannot re-submit any responses, and the playbar is disabled, so I cannot move forward or backward.
    Any suggestions?
    Thank you!
    Jennifer
    Manager, Instructional Design

    Hi Jennifer,
    I suppose you deleted the Next button on the Question slides? Have a look at this blog post about the question slide design:
    http://forums.adobe.com/message/6024141#6024141
    If you have multiple attempts on Question level, those attempts are 'closed' when you leave the question slide. Going back to that question slide will never allow you to re-submit a question, only retaking a new attempt on Quiz level will clear all answers and allow then a new attempt when getting back to a question.
    The Next button, that doubles as a Skip button during question attempt can be confusing to the user, tempted to click on that button instead of the Submit button. Perhaps that is the reason why I recommend in the post to hide the Next button under the Clear button, but of course going back to a question will not show that Next button, only during Review the Clear button will disappear to let the Next button visible that was hidden under Clear.
    Good practice if you are hiding the Playbar is either:
    to uncheck the option 'Allow Backward movement' in the Quiz settings
    to leave the Next button on the Question slides visible (and explain the user that he has to click Submit to enter an answer)
    Lilybiri

  • Hide window problem

    hi there!
    i am learning java and have come across a problem i need help with.
    i want a button called backButton to hide a JFrame called dateMenuFrame
    here is a little bit of the script to explain whats going on... its the "dateMenuFrame.setVisible(false);" bit thats causing problems!
    HELP!
    public Component createDateMenu() {
    JFrame dateMenuFrame = new JFrame("Browse by date");
    Super appDate = new Super();
    Component contentsDate = appDate.createDateMenuComponents();
    dateMenuFrame.getContentPane().add(contentsDate, BorderLayout.CENTER);
    // Finish setting up the frame
    dateMenuFrame.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
    dateMenuFrame.setSize(1024,768);
    dateMenuFrame.setVisible(true);
    return dateMenuFrame;
    // Adds components to dateMenu JFrame
    public Component createDateMenuComponents() {
    JLabel leftLabel = new JLabel("Please select a day below...");
    leftLabel.setFont(font);
    JLabel gapLabel = new JLabel(" ");
    final JTextArea dateTArea= new JTextArea("Select a date on the left to display its information here.",20,1);
    dateTArea.setLineWrap(true);
    dateTArea.setWrapStyleWord(true);
    dateTArea.setFont(font);
    JButton backButton = new JButton("Back to main menu");
    backButton.setFont(bFont);
    backButton.setToolTipText("Click here to go back to the Main Menu");
    backButton.setMnemonic('B');
    backButton.setSize(20,20);
    backButton.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
         dateMenuFrame.setVisible(false);
    });

    What is the error you are getting when you compile?
    The first thing I notice is that try to instantiate an ActionListener ("new ActionListener()") but ActionListener is an interface, not a class, and thus cannot be instantiated.
    You could let your main class implement ActionListener (and add an actionPerformed method to that class). Or, even better, you could do something like this:
    JButton backButton = new JButton(new HideDateMenuFrameAction());
    private class HideDateMenuFrameAction extends AbstractAction {
    public HideDateMenuFrameAction() {  
    super("Back to main menu");
    public void actionPerformed(ActionEvent e) {
    dateMenuFrame.setVisible(false);

  • Show Hide Element Problem

    i am are trying to do something that can be achieved with
    Javascript.
    <script language="javascript">
    function showHideComment(onOff){
    if (onOff == 1){
    document.getElementById('commentArea').style.display = "";
    } else {
    document.getElementById('commentArea').style.display =
    "none";
    </script>
    <input type="radio" name="comment1" value="1"
    onClick="showHideComment(this.value);"> On <br/>
    <input type="radio" name="comment1" value="0"
    onClick="showHideComment(this.value);"> Off
    <cfoutput query="showcomment">
    <table width="100%" border="0" align="center"
    id="commentArea">
    <tr>
    <td>Subject:</td>
    <td><b
    class="sidebar">#subject#</b></td>
    </tr>
    </table>
    </cfoutput>
    but problem lies here when it:
    hides only one Section of Comments, What about if i had more
    than 10 comments.
    i tried changes the variables but no luck
    plz help

    Hi,
    Just put your <cfoutput query> statement below the
    <table> tag (that is before the start of <tr> tag and
    it will do that..
    <cfquery name="showcomment" datasource="dav">
    select * from ttest;
    </cfquery>
    <script language="javascript">
    function showHideComment(onOff){
    if (onOff == 1){
    document.getElementById('commentArea').style.display = "";
    } else {
    document.getElementById('commentArea').style.display =
    "none";
    </script>
    <input type="radio" name="comment1" value="1"
    onClick="showHideComment(this.value);"> On <br/>
    <input type="radio" name="comment1" value="0"
    onClick="showHideComment(this.value);"> Off
    <table width="100%" border="0" align="center"
    id="commentArea">
    <cfoutput query="showcomment">
    <tr>
    <td>Subject:</td>
    <td><b
    class="sidebar">#firstname#</b></td>
    </tr>
    </cfoutput>
    </table>

  • Auto-hide playbar

    Hi,
    Is there a way to autohide the playbar in the published files? I would like the playbar to appear only when the mouse is over the area where the playbar should be, something similar to 'auto-hide the taskbar' on the desktop.

    Some confusion with Vish, he did not see I was answering and also preparing a blog post. Here is the work flow in short, will post the link to the blog post where I will have an example and screenshots, when it is published.
    First, grab a copy of Chris Dorna's widget to hide the close button on the slidelet, it is free:
    HideSlideletClosebox
    Configure the playbar and the borders so that the playbar is in overlay mode (will be on top of the slide instead of below the slide) and that no borders are showing.
    for the first slide, on Enter Side attach the action  Assign cpCmndShowPlaybar with 0 to hide the playbar
    insert two rollover slidelets: make sure that the stroke is set to 0 and that the color is set to the color of the background or configure its style in the Object style manage so that no border, nor runtime border is shown
    size the first rollover slidelet to approximate the size of the playbar, the second you put little bit higher and attach the rollover actions to change the variable to 1 for the first, to 0 for the second
    insert Chris' widget and configure it to hide the close button for both slidelets
    You have to repeat the last 3 actions for all the slides, easy with copy/paste but you'll have to edit the HideSlideletClosebox properties to adapt to the new ID of the slidelets.
    Lilybiri

  • Show/Hide Divs Problem in IE6

    Hello, and thanks for taking a look at this.
    I have inherited a web site which isn't performing very well in IE6, more details later. The setup is as follows:
    The website delivers training content. The design is such that there are no scrollbars, all Lesson content is laid out carefully within a 'page' area and the user clicks a Next or Previous button to page through the content.
    Each Lesson is a single HTML file which is designed and edited in Dreamweaver CS5. All the Lesson pages are based upon a single Template file which defines the common functionality. The Lesson content is basically a series of Divs, a Div for each 'page' of content and each have a unique id (for example 'page2'). Each Div has a CSS Class which defines the 'display' property. The CSS Classes are as follows:
    .hideDiv{
         display:none;
    .showDiv{
         display: inline;
    Initially the first Div in the Lesson is set to .showDiv and all of the following Divs are set to .hideDiv.
    The navigation is designed in Flash and the Next and Previous buttons are situated below the content area. When clicked a Javascript function is called, from a Javascript file referenced by the Lesson HTML page. The javascript function is as follows:
    function hideShow(hideDiv, showDiv){
         if(document.getElementById(hideDiv)!=null){
              document.getElementById(hideDiv).className = "hideDiv clear";
         if(document.getElementById(showDiv)!=null){
         document.getElementById(showDiv).className = "showDiv clear";
    It has to be said that everything works. There is further code which accounts for reaching the last page or trying to click previous on the first page etc, but this is the core principal.
    Our problem is that our users have to use IE6 and when viewing the website in IE6 it is much slower than in say IE8 or Safari etc. We have noticed that as the number of pages (Divs) in a Lesson increases so the performance decreases. Crucially we notice that as you click Next, or previous, the browser Status Bar indicates that all of the images in the Lesson are being downloaded. Every time you click Next or Previous!
    If anyone can either assist in preventing all of the images constantly downloading, or suggest an alternative approach to paging through the content I would be extremely grateful.
    Regards
    Chris

    Hello Murray
    Thanks for going to the trouble of creating the little test site.
    Other browsers appear to load the pages much quicker. This may be because they are able to more inteligently handle our code, I don't know. Safari on our Macs zooms through it.
    In IE6 if I open a large Lesson and click next I see, at the bottom of the screen in the Status Bar, "(21 items remaining)" and then "(20 items remaining)" etc. which counts down and then disappears. Interestingly if the next screen happens to display the same image this does not happen, just the message "Done". If the next screen has a different image then the count down from "(21 items remaining)" again as all the linked resources (I presume) are downloaded.
    I have opened your site in IE6 (Windows XP Pro) and I don't see the message. However the image is so small that I may not because it is so fast to load.
    It may be related to how IE6 handles Temporary Internet Files, I'm not sure.

  • App store hide/unhide problems: (1) can't "unhide" (2) "hidden" apps don't remain hidden

    I've searched hither and yon online for a way to “unhide” apps I’ve hidden in the App Store. The procedures I’ve been able to find, involve choosing “View Account”, logging in, and selecting an item called “Unhide Hidden Apps”. This would seem straightforward enough except that, I find nothing for “Unhide Hidden Apps”. I’ve tried on both my iPad and my iPhone, both running the latest iOS.
    Then, to add to the frustration, this. I select an app in the App Store. I slide and select “Hide”. (Say I’m viewing the set “All”.) Then I select “Not on This iPad”. The supposedly “hidden” app is still visible. Okay, what the heck? I slide and select “Hide”. Then I select “All”. Guess what? The app is still visible. I select “Not on This iPad”. The app is still visible. Not fair. :-(

    You are right. They do not all show up there - I'm thinking only those that are actually downloaded to the Mac maybe?
    If you go to the Quick Links section in the iTunes Store, and click on Apps and All, you should see both the downloaded and the iCloud ones on that list. (make sure you have also click on "All" and not on "Not in My Library".
    And if you hover over an app on that list, you will see a little "x" in the top left-hand corner. Clicking on that hides the app. You can hide both apps that are downloaded as well as those still in the cloud. However, it does not remove it from your device. If you did hide it in iTunes, and then also deleted it from your device, it would then be fully "hidden".
    Does that make sense? (I still can't figure out how to do the Hide thing on my iPhone.... )
    GB

  • Dreamweaver CS3 & Show/Hide Layers Problem

    I'm trying to use Dreamweaver CS3 and the Show/Hide Layers
    behaviour to show or hide another layer on a click. However, when I
    go to the behaviours window and click on the plus to get the drop
    down list of behaviours to choose from, 'Show/Hide Layers' isn't
    there - can anybody help me?! I need this to get an assignment done
    due in really soon.
    Thanks

    It goes well beyond DW's Show/hide, however....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "twocans" <[email protected]> wrote in message
    news:fna57u$51a$[email protected]..
    >
    http://www.projectseven.com/extensions/info/autoshowhide/index.htm
    >
    > its a great free extension and simple to use.
    >
    > regards
    >
    > k
    >
    >
    >
    >
    > "xxtotallycrazy" <[email protected]>
    wrote in message
    > news:fna51o$4so$[email protected]..
    >> What I mean by needing help is, does anybody know
    where the option for
    >> 'Show/Hide Layers' actually is? Please help!
    >
    >

  • Playbar hidden, but appears for 1/2 a second, then hides

    Captivate 7, Win 7
    Hi,
    I want the playbar on during my project, except for the first slide.
    I have turned off the playbar on my first slide via the Action-->On Enter-->Assign-->cpCmnsShowPlaybar, With 0.
    However, when the project is played, the playbar shows for the first half second of the first slide, then disappears for the remainder of the slide.
    It looked like it took the first slide a moment to 'realize' it needed to shut off the playbar.
    Any ideas?
    thanks!

    Do you want the playbar to be hidden for all slides, or just for some slides? If you are on CP7.0.1 there is a dedicated command 'Hide Playbar as well'. But it is possible, because the project has to load, that you'd see the playbar for a small fracton of time.
    If it is for the whole project, turn it off in Project, Skin Editor. Eventually turn off also the bottom border (or all borders) in that case.

  • Can I set columns to automatically hide in Print View?

    I'm making a reusable invoice / quote system for my sales division. I would save this as a template, and it needs to be idiot-proof.
    My boss wants this to work the way our Filemaker Pro quote system works. In that system, we have a table where each row has the following: a description of the item being sold, the quantity being sold, our cost, a percentage that we want to mark up, the customer's price (cost*percentage), and extended price (customer price*quantity).
    That's how I want the table to look to us, but when we enter print view, can I set it so two columns (our cost, percentage markup) are hidden automatically? We're not allowed to divulge our cost to customers, and I'd prefer it if those two columns disappeared automatically when we entered print view - my boss is a seriously technically-challenged individual, and if I told him he'd have to manually hide columns before printing (no matter how easy), I'm sure he'd balk at that.
    The other idea I had is a separate sheet; we would work on the first sheet with the full table, and I'd have a second sheet in print view that had the abridged table. I'd have functions that just replicated the values in certain cells from the first table. This works great, but when I add a row to the first table, the second table doesn't add a row.
    Does anyone know how to make either of these ideas work? Or does anybody have a better idea on how to do this?

    Hi, we're mixing two different ideas I had. The first idea was to hide certain columns automatically in the same table when I entered print view. The second idea was to create a second table on a separate sheet that automatically replicated the values in the columns from the first table, I just wouldn't make columns for the things I wanted to hide.
    Problem was, with the second idea, I only want to use as many rows as is needed for each quote. I'd like to start each table with just one row, and each time I add a row in the first table, I'd like the second table to automatically add a row.
    This isn't really a crisis (I could just make the second table with 100 rows and delete the unused ones), but my technically-challenged boss is using it, and it would be nice if it worked exactly the way our FileMaker system works.

  • Flash9B.ocx error problem

    I run Norton System Doctor regularly as well as
    RegistryBooster2.
    Just recently (this week) WinDoctor gives me the unfixable
    message:
    "CLSID\{1171A62F-05D2-11D1-83FC-00A0C9089C5A}\InprocServer32,"
    refers to a missing file,
    "C:\WINDOWS\system32\Macromed\Flash\Flash9b.ocx.".
    RegistryBooster2 says it's fixed all errors, but it hasn't
    fixed this problem.
    I have deleted Flash, run WinDoctor and RegistryBooster2,
    then reinstalled Flash, but nothing seems to work. Obviously the
    file Flash9b.ocx is not there and my Flash floder contains another
    edition of that file (Flash9e.ocx), but my registry will not adapt.
    I continue to get this error message. How do I fix this
    problem? I have never delved into the Registry so please relate any
    suggested fix in simple, step-by-step instructions.

    Hi guys,
    I would maintain that this is NOT a proper solution. I
    thought of this right off and sure it works but it does NOT change
    the fact that there is still an improper and no longer used
    registry entry referring to a file which NO LONGER EXISTS. Making a
    copy of the file may HIDE the problem but it does NOT fix it.
    I am a software developer myself and it is inexcusable that
    Adobe is not fixing this problem. They have an absolute
    responsibility to clean up their own registry entries folks!
    I have seen registry problems creep up over time because it
    is so common for software vendors to leave obsolete STUBS in OUR
    system registry when you uninstall or upgrade an application! Over
    time the registry can get so many of these OBSOLETE entries that
    your system can start to run slower over time and possibly cause
    other problems.
    This is exactly why I use Norton Systemworks Premier to
    monitor my registry as I'm sure many others do as well. The problem
    here is that Adobe's BUG is so nasty that even Norton Systemworks
    cannot remove the offending registry entry! I also CANNOT remove it
    manually even though of course I have full Admin rights.
    ADOBE MUST FIX THIS PROBLEM. I have reported this BUG to them
    but am still waiting for a response - maybe they want to ignore it
    but I for one will NOT let this go.
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Being a software developer myself and understanding how this
    works I still maintain there is no excuse for this kind of problem
    to exist.
    I for one maintain that MICROSOFT should make this a
    condition of getting official Windows CERTIFICATION - e.g., they
    should test UPGRADE, UNINSTALL, etc and REFUSE to grant
    certification until the software vendor cleans up all their
    registry entries appropriately.
    Trust me, if MS did this we would not have problems like this
    because who does not want to have MS certification for their
    software products??
    Folks, sorry if I sound negative but it's just not right for
    us to have to deal with this kind of issue.
    My suggestion: If EVERYONE would send in a bug report on this
    issue, the "noise" would get so loud that Adobe would have no
    choice but to fix this issue once and for all.
    Ok, I'll get off my soap-box now. :)
    Allen

  • Playbar blinks on iPhone in Captivate 8 responsive project

    In Captivate 8, when I publish a responsive project, the Captivate playbar keeps blinking when I view the published project on an iPhone. Does anyone know how to make the playbar stop blinking?
    I notice in the Gestures section that it says to slide up or down to view/hide the playbar. However, that doesn't work for me. When I do that, my presentation just gets locked into a zoomed-in view and there is apparently no way to get out of it except to close the presentation and start over.
    Does anyone have any advice about what I'm doing wrong with the playbar or with gestures?

    Turning off gestures helped ... mostly. What I mean by mostly is that it still blinks on my quiz slide when I have Hide Playbar in Quiz unchecked in the Skin Editor. However, if I check the Hide Playbar in Quiz option, the playbar blinks throughout the rest of the presentation, just not on the quiz slides.
    Here are the stats you asked for:
    Model Number: iPhone 5C (Model ME555LL/A)
    iOS Version: iOS 7.1 (11D167)
    Playbar: I'm using the cpPlaybarMobile with these options:
    When I published a version with Hide Playbar in Quiz checked, then tested the quiz page on the iPhone, the playbar was gone as expected, but the action of selecting multiple choice options was exceedingly sluggish, then Safari crashed.
    As far as I'm concerned, this is a bug that prevents me from using any Captivate playbar if the destination device is an iPhone, because it produces an unfavorable result no matter which combination of options that I choose.

  • Grrr! Smooth Animation problem -  AE7

    Hi. I'm trying to get a PNG image to travel L to R across the screen, starting and finishing off-screen. This is a white/grey image layer against a plain black background.
    The image when travelling looks slighty jittery (almost vibrating), and when rendered and burnt onto DVD a lot of shaking is evident.
    My PC is dual core XP 4GB ram and plenty of drive space. I'm rendering at 30fps (no noticable difference at 40 or 50 either) progressive to uncompressed AVI.
    I've tried adding and removing keyframes, changing the motion blur options, changing the keyframe interpolation options, but nothing seems to get rid of the jitter. All my other compositions on this project work ok, just this one causing a problem!
    Any ideas? Thanks

    You've most likely experiencing a stroboscopic effect caused by the relationship between the frame rate, the distance the image moves across the frame and what is called
    persistence of vision which is why movies work in the first place. There are only two options to fix this problem. You must either change the speed of the movement or mask the effect with motion blur. The higher the contrast in the image, especially the higher the contrast between the edge and the background, the harder it is to hide this problem.
    This problem is not unique to motion graphics or animation. Cinematographers also face the same problem. Any DP worth his day rate will know about critical panning speeds. They are referenced in cinematography manuals so that you can avoid the judders. Interlaced video (normal video cameras) are not as subject to this problem because they shoot 50 or 60 fields per second.
    One suggestion you might try is to feather the edges a bit by creating a mask that's the same width but taller than the image, then feathering the edge edge a bit. Removing the juddering in the detail of the image requires additional motion blur.
    You can use the following expression to the layer's position property to move the image from left to right. Change the + to a - to move from right to left. This will keep the movement in whole pixel values. You change the speed value to any whole number.
    spd = 2; //speed setting
    move = time/thisComp.frameDuration * spd;
    x = value[0];
    y = value[1];
    [x + move, y]
    This expression will work for any frame rate. If you want to roll instead of pan add
    move to
    X. This works great for credit rolls. You can find a sample project
    http://www.hottek.net/samples/perfectMove.zip%3Ehere%3C/a%3E.

Maybe you are looking for

  • Transfering Library from PC to Laptop not working..help

    I received a new laptop for Christmas. It is running Windows 7. My old PC is running XP. I downloaded Itunes9 on laptop and upgraded to itunes 9 on PC. I enabled ipod as disk. Copied Itunes folder onto ipod. Pasted folder in "My Music" on new compute

  • Elements are not displaying in webdynpro view's layout area

    Hi All Webdynpro Experts, Im new to abap.  Im working in webdynpro. Im facing a issue now. By Default, I need to disable a button (u201CCreate Responseu201D) in FPM_OIF_COMPONENT WebDynpro component in CNR_VIEW. But the thing is I cannot see the any

  • Outlook 2013 does not send / receive mails but connected to Exchange server

    HI All,  Outlook 2013 displays connected message but when compose and send a mail, the message hangs for more than an hour. Yes if I restart the outlook, the message is sent.  Otherwise the message will lag for hours. Even I am not able to receive it

  • Hooking G5 to flat screen

    how do i hook my G5 to my flat screen tv? will i get a very good picture with that hook up and what might i be able to watch? any advice would be appreciated!

  • HELP!!! Accelerometer is dead... :(

    Today I turned my iphone horizontal to view a webpage in landscape view... it doesn't work any more! Anyone know if this is a known issue? I did a full software restore and that didn't fix it I take care of this thing like it's my laptop, so it hasn'