How to get rid of the little page window at the top right of an acrobat page

In the last 6 months or so, a little window image of the Acrobat page has started to appear in the top right corner of the page
This is a total menace as it can cover part of the text as per pic, and also covers the find tab. OK, you can x it off but I want to find a way to totally kill it. I cannot see any circumstance where the mini-window will be useful. Maybe it does have some useful functions, but I cannot think what they could be. I cannot imagine why Adobe would force this on us. Or maybe I have accidentally clicked something. HELP PLEASE

Thanks Sara - I have thought this might have something to do with it. But actually neither is selected (see below). Whatever is selected, it is difficult to see that the thumbnail can achieve any useful purpose! Any other ideas? It seems quite unpredictable in my system - the file I took a screenshot of to post above now has no thumbnail. While a file I opened this morning does. In my view it represents a bug in X as it only appeared after I had been using X for about 3 years, making me suspect it came in with an update. And there is no way to turn it off that I can find.

Similar Messages

  • HOW DO GET RID of US flag CHARECTER on TASK bar, top RIGHT?

    I don;t know, somehow I was messing around with Charecters, now there is a US flag that boots up on the top right, right beside the monitor symbol...wonder how to remove items from that docking area (2 over from the clock/spotlight).
    Thanks

    An even easier way to get rid of it (or to get rid of any menu bar item) is to hold down the command key and drag the item off the menu bar.
    POOF!

  • I'm using movie program how do get rid of background noise and put music over top of video

    I'm using movie program how do get rid of background noise and put music over top of video

    Niel,
    Thanks for your suggestion about using RCDefaultApp. I am hesitating to do this because it seems like I'd be installing still another piece of software to fix the original mistake---downloading Reader.
    About 20 years ago I maintained---with considerable handholding---UNIX systems of various sorts. Can you suggest how I might find the plist that seems to require changing?
    BTW, Preview is called whenever I open some random .pdf file. The problem appears when I want to get a file from the web. If the site permits a "download" I can get the file, but if I want to "view and print" the file, the evil dark-grey Adobe screen appears with the whirling black ball. Then Safari quits. I'm wondering if the reference to Reader is in a "cookie" sent from the website, when I first was installing Reader. Is this possible?

  • How To Get rid of Exponential format in datagridview when the number is very large

    When the number is very large like :290754232, I got 2.907542E +08. in datagridview cell
    I using vb.net , framework 2.0.
    how can I get rid of this format?
    Thanks in advance

    should I change the type of this column to integer or long ?
    The datagridview is binded to binding source and a list ( Of).
    Mike,
    I'll show you an example that shows the correct way to do this and a another way if you're stuck using strings in exponential format. The latter being the "hack way" I spoke about Friday. I don't like it, it's dangerous, but I'll show both anyway.
    In this example, I'm using Int64 because I don't know the range of yours. If your never exceeds Int32 then use that one instead.
    First, I have a DataGridView with three columns. I've populated the data just by creating longs starting with the maximum value in reverse order for 100 rows:
    The way that I created the data is itself not a great way (there's no encapsulation), but for this example "it'll do".
    Notice though that the third column (right-most column) isn't formatted at all. I commented out the part that does that so that I could then explain what I'm doing. If it works, it should look like the first column.
    The first column represents an actual Int64 and when I show the code, you can see how I'm formatting that using the DGV's DefaultCellStyle.Format property. That's how it SHOULD be done.
    The third column though is just a string and because that string contains a letter in it, Long.TryParse will NOT work. This is where the "hack" part comes in - and it's dangerous, but if you have no other option then ...
    You can see that now the third column matches the first column. Now the code:
    Option Strict On
    Option Explicit On
    Option Infer Off
    Public Class Form1
    Private Sub Form1_Load(ByVal sender As System.Object, _
    ByVal e As System.EventArgs) _
    Handles MyBase.Load
    With DataGridView1
    .AllowUserToAddRows = False
    .AllowUserToDeleteRows = False
    .AllowUserToOrderColumns = False
    .AllowUserToResizeRows = False
    .AlternatingRowsDefaultCellStyle.BackColor = Color.Aquamarine
    .ReadOnly = True
    .SelectionMode = DataGridViewSelectionMode.FullRowSelect
    .MultiSelect = False
    .RowHeadersVisible = False
    .RowTemplate.Height = 30
    .EnableHeadersVisualStyles = False
    With .ColumnHeadersDefaultCellStyle
    .Font = New Font("Tahoma", 9, FontStyle.Bold)
    .BackColor = Color.LightGreen
    .WrapMode = DataGridViewTriState.True
    .Alignment = DataGridViewContentAlignment.MiddleCenter
    End With
    .ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.DisableResizing
    .ColumnHeadersHeight = 50
    .DataSource = Nothing
    .Enabled = False
    End With
    CreateData()
    End Sub
    Private Sub CreateData()
    Dim longList As New List(Of Long)
    For l As Long = Long.MaxValue To 0 Step -1
    longList.Add(l)
    If longList.Count = 100 Then
    Exit For
    End If
    Next
    Dim stringList As New List(Of String)
    For Each l As Long In longList
    stringList.Add(l.ToString("e18"))
    Next
    Dim dt As New DataTable
    Dim column As New DataColumn
    With column
    .DataType = System.Type.GetType("System.Int64")
    .ColumnName = "Actual Long Value (Shown Formated)"
    dt.Columns.Add(column)
    End With
    column = New DataColumn
    With column
    .DataType = System.Type.GetType("System.String")
    .ColumnName = "String Equivalent"
    dt.Columns.Add(column)
    End With
    column = New DataColumn
    With column
    .DataType = System.Type.GetType("System.String")
    .ColumnName = "Formated String Equivalent"
    dt.Columns.Add(column)
    End With
    Dim row As DataRow
    For i As Integer = 0 To longList.Count - 1
    row = dt.NewRow
    row("Actual Long Value (Shown Formated)") = longList(i)
    row("String Equivalent") = stringList(i)
    row("Formated String Equivalent") = stringList(i)
    dt.Rows.Add(row)
    Next
    Dim bs As New BindingSource
    bs.DataSource = dt
    BindingNavigator1.BindingSource = bs
    DataGridView1.DataSource = bs
    With DataGridView1
    With .Columns(0)
    .DefaultCellStyle.Format = "n0"
    .Width = 150
    End With
    .Columns(1).Width = 170
    .Columns(2).AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill
    .Enabled = True
    End With
    End Sub
    ' The following is what I commented
    ' out for the first screenshot. ONLY
    ' do this if there is absolutely no
    ' other way though - the following
    ' casting operation is NOT ADVISABLE!
    Private Sub DataGridView1_CellFormatting(ByVal sender As Object, _
    ByVal e As System.Windows.Forms.DataGridViewCellFormattingEventArgs) _
    Handles DataGridView1.CellFormatting
    If e.ColumnIndex = 2 AndAlso e.Value.ToString IsNot Nothing Then
    ' NOTE! The following is dangerous!
    ' I'm going to use coercion to force the
    ' string into a type long. TryParse will
    ' NOT work here. This can easily throw an
    ' exception if the string cannot be cast
    ' to a type long. I'm "depending on" the
    ' the string to cast. At the very least
    ' you might put this in a Try/Catch but
    ' that won't stop it from failing (if
    ' it doesn't work).
    Dim actualValue As Long = CType(e.Value.ToString, Long)
    Dim formattedValue As String = actualValue.ToString("n0")
    e.Value = formattedValue
    End If
    End Sub
    End Class
    Like I said, only use that hack way if there's no other option!
    I hope it helps. :)
    Still lost in code, just at a little higher level.

  • How do get rid of a tab group without closing the tabs? How do I take tabs out of a group?

    I accidentally put all my tabs in one group. I'd like to get rid of the group without closing all the tabs in it; in other words, to undo putting all the tabs in one group. It would be useful to know how to remove a tab from a group without closing the tab, accidentally putting a tab in the wrong group will probably be a common error that needs to be easily undone.

    '' SisqB;''
    ''I searched about:config and found a listing of "stuff" under the S3 Downloads ''
    Can you take a snapshot of what you see?
    In order to better assist you with your issue please provide us with a screenshot. If you need help to create a screenshot, please see [[How do I create a screenshot of my problem?]]
    Once you've done this, attach the saved screenshot file to your forum post by clicking the '''Browse...''' button below the ''Post your reply'' box. This will help us to visualize the problem.
    Thank you!

  • How to get rid of text in bookmark toolbar? the default reset will not work

    my bookmark toolbar has changed. I clicked on default reset so just icons show but it will not work. can not get rid of text.

    The Bookmarks Toolbar, by default, shows both icons and text. Here is an Add-on that will allow you to show only the icons.
    *'''''Roomy Bookmarks Toolbar''''': https://addons.mozilla.org/en-US/firefox/addon/roomy-bookmarks-toolbar/
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You may need to update some plug-ins. Check your plug-ins and update as necessary:
    *Plug-in check: https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    *Adobe Shockwave for Director Netscape plug-in: [https://support.mozilla.com/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *Adobe PDF Plug-In For Firefox and Netscape: [https://support.mozilla.com/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.com/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *Next Generation Java Plug-in for Mozilla browsers: [https://support.mozilla.com/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • TS2446 I forgot my apple password how cna get rid of that even i asked for the password receovery as well but no mail came till now

    I forgot my apple password and my user id is my current gmail account but whenever i am asking for password receovery, the message is showing that the mail sent but in actual there is no any such mail in my gmail account at all.....
    Plz help dear fast.....

    You haven't got a rescue email address on your account that the email could be being sent to, and you've checked the spam folder as well as the inbox ? If you aren't receiving the email then try contacting Support in the country where you and you iTunes account are to get the password reset : http://support.apple.com/kb/HT5699

  • Can't get rid of Perian software update window in the center of my screen.

    When I woke up my computer this morning, there was a Perian software update window right in the center of my screen.  I cannot get rid of it and don't want to install it.  No matter what I push...it won't budge.  My choices are Skip this version, remind me later or install update...as I said I don't want to install it...how do I get rid of it ?

    Hi, and welcome to Apple Support Communities.
    Click on "Skip This Version."
    If that doesn't get rid of it, hold the power button down until the MacBook shuts down. Then start up again.

  • How to get rid of duplicate files in Windows Media Player 11, I am seeking an answer if at all possible.

    I don't know if this is the appropriate forum to ask this question....if it is not please guide me to the correct support forum. I am just trying to find out if there is an easier way of getting rid of duplicate files in my Windows Media Player 11.
    Also how do I prevent my Media player from obtaining all these duplicate files from other libraries.  I have iTunes installed and my home network has four other computers belonging in the home group that have all their own respective music libraries. 
    I guess I was naïve but I thought that when Windows Media Player is out searching other libraries it would know not to take duplicates of songs that it has already.  Enough said .....if anyone out there can help me that would be great.  I have in
    the past spent many hours manually deleting songs from my music files and it really got old.

    Unfortunately your post is off topic here, in the TechNet Site Feedback forum, because it is not Feedback about the TechNet Website or Subscription.  This is a standard response I’ve written up in advance to help many people (thousands, really.)
    who post their question in this forum in error, but please don’t ignore it.  The links I share below I’ve collected to help you get right where you need to go with your issue.
    For technical issues with Microsoft products that you would run into as an
    end user of those products, one great source of info and help is
    http://answers.microsoft.com, which has sections for Windows, Hotmail, Office, IE, and other products. Office related forums are also here:
    http://office.microsoft.com/en-us/support/contact-us-FX103894077.aspx
    For Technical issues with Microsoft products that you might have as an
    IT professional (like technical installation issues, or other IT issues), you should head to the TechNet Discussion forums at
    http://social.technet.microsoft.com/forums/en-us, and search for your product name.
    For issues with products you might have as a Developer (like how to talk to APIs, what version of software do what, or other developer issues), you should head to the MSDN discussion forums at
    http://social.msdn.microsoft.com/forums/en-us, and search for your product or issue.
    If you’re asking a question particularly about one of the Microsoft Dynamics products, a great place to start is here:
    http://community.dynamics.com/
    If you really think your issue is related to the subscription or the TechNet Website, and I screwed up, I apologize!  Please repost your question to the discussion forum and include much more detail about your problem, that could include screenshots
    of the issue (do not include subscription information or product keys in your screenshots!), and/or links to the problem you’re seeing. 
    If you really had no idea where to post this question but you still posted it here, you still shouldn’t have because we have a forum just for you!  It’s called the Where is the forum for…? forum and it’s here:
    http://social.msdn.microsoft.com/forums/en-us/whatforum/
    Moving to off topic. 
    Thanks, Mike
    MSDN and TechNet Subscriptions Support

  • How to get rid off Youtube pause Popup window on Apple TV?

    The Youtube new interface has a Pause popup window. It is really annoying as it hides most of the picture and greys out the rest if you decide to examine a examine a still. Is there a way to surpass that?
    Thanks
    /k

    No there is no way to Mirror full screen from an iOS device to the Apple TV. iOS devices are not 16:9 like your HDTV so the mirrored image appears as the size your iOS device would be if it were the size of your TV. Hope that makes sense.

  • HELP! Acrobat 9 - How to get rid of updater notification for all users without admin rights

    I just bought Acrobat Pro 9 w/ volume licensing because Adobe said this would fix a problem we are having. Every morning we have users that login and get a box that says that do not have sufficient rights to update Adobe. I need this gone. Obviously I can't give them admin rights. We are running on 5 terminal servers running 2003 server. I just need a hack or something I don't really care.

    I just bought Acrobat Pro 9 w/ volume licensing because Adobe said this would fix a problem we are having. Every morning we have users that login and get a box that says that do not have sufficient rights to update Adobe. I need this gone. Obviously I can't give them admin rights. We are running on 5 terminal servers running 2003 server. I just need a hack or something I don't really care.

  • How to get rid of advertisements that appear on both the left and right of my web browsers

    Recently i noticed that when i open either Firefox or Safari, the page will load but a few seconds later, two identical ads appear on both sides of my browser and partially obstructing the webpage that i'm on... PLEASE HELP!
    this is what it looks like.... http://i43.tinypic.com/2q8aj9s.jpg

    Make sure 'block pop-ups' is selected in both browsers.
    Firefox Preferences>Content tab; Safari Preferences>Security tab.
    For both browsers download AdBlock:
    Firefox - https://addons.mozilla.org/en-US/firefox/search/?q=AdBlock&cat=1%2C0&appver=11.0 &platform=mac
    Safari - https://extensions.apple.com

  • Extremely slow boot.  How to get rid of white screen in Windows only boot.

    Hey guys I have a Windows 7 only MacBookPro 17". 2.8ghz core 2 duo, 4 gig of ram, 7200 rpm 500gb hd(passes s.m.a.r.t. btw)
    It boots extremely slow. I turn the computer on and it stays at the white screen for around 20 seconds. Then it moves to Windows 7 and continues to boot from there. I have a video:
    http://www.dailymotion.com/video/xc5taaslow-windows-7-boot-on-macbook-protech
    In a windows only setting how would I get it to just boot Windows without going threw the white screen? It also gets hung when logging in on a black screen.
    There was a post on Ubuntu forums about Ubuntu only boots about doing something to get it to only boot the MBR. I didn't really understand if this would work with Windows 7 though. Thanks for any help.

    I shut down all but one of the extensions, and that seems to have resolved the problem. Thank you!
    Now to figure out which extensions I need, and which I don't, because I don't have a clue. I don't remember installing most of these, I only recall one or two (nothing looks spammy like funmoods, but still don't remember when or why these were added...)

  • There are many complaints about iMesh, but no answers as to how to get iMesh OFF the browser after it's been uninstalled. Can Firefox PLEASE direct us how to get rid of this program. Thank you. Lucille H

    Many complaints in ASK QUESTIONS about getting rid of iMesh in a browser, but no answer is provided. Please instruct your users how to get rid of this program. I got the install information from iMesh directly but my browser will not clear it, even if I change my home page. It's an impossible program to get rid of. This can't be legal. Thanks,
    Lucille Hunt
    Mack Avenue Records.

    Hi St. Peter. Thanks for your advice. I tried entering firefox.exe as you suggeted, but got the Just Ask Jeeves page again. You suggested uninstalling Just Ask Jeeves, but I`m not sure how to go about this since it doesn`t appear in my programmes. Thanks for your help.

  • By my battery percentage there is a little icon that is a phone then a keyboard underneath it. Does anybody know what this means. And how to get rid of it?

    By my battery percentage there is a little icon like the alarm icon but it has a phone and what looks to be a keyboard underneath. Does anybody know what this means and how to get rid of it?

    You have enabled the TTY function. To turn it off, go to Settings - Phone - TTY = Off.

Maybe you are looking for

  • Is Apple warranty valid if NOT buying from an authorized reseller?

    If I buy a new, unregistered product that's NOT from an Apple-authorized reseller, is the 1 year warranty still valid? Can AppleCare still be purchased? Do I need some kind of receipt from the seller? I can't find anything on Apple's site that says I

  • WL 7.x, JDK 1.4, SSL

    Hello, Given that: (1) WL will not be certified for use with JDK 1.4 until the Olympic release (otherwise known as version 8.1, hopefully available sometime early this summer if we're lucky?). (2) Our application requires JDK 1.4 functionality (prefe

  • Root.sh diskgroup already mounted in another lock name space

    I have successfully installed oracle grid infrastructure 11.2.0.3 and have created an oracle database on an asm instance on top of it. I installed the database as a RAC database on a single node db-test-mi-1, postponing the addition of a second node

  • Output Sound

    I see how to change the output in the Preferences. However, I have an older set of accessory speakers that are quite good with a sub woofer. The difficulty SEEMS to be that it does not connect to my iMac with a USB but simply plugs in to the jack on

  • Informer is not reflecting the SOD conflicts

    Hi all We are installing Access Control to a customer which have 2 phisicsl systems For now we have connector to one phisical system (TST)    1) We created a logical system which include for now one phisical system (TST) and will include the second p