How to solve w7 dpi problem with fullscreen video playback?

when i use custom dpi size in W7 i get problems to playback videos on sites like GTA 5 Cheats . it doesn't hide the windows menu bar. why is that?

You can set the layout.css.devPixelsPerPx pref on the <b>about:config</b> page to 1.0 or on Windows 8 to 1.25 and if necessary adjust layout.css.devPixelsPerPx starting from 1.0 in 0.1 or 0.05 steps (1.1 or 0.9) to make icons show correctly.
*http://kb.mozillazine.org/about:config
See also:
*https://support.mozilla.org/kb/forum-response-Zoom-feature-on-Firefox-22
Use an extension to adjust the text size in the user interface and the page zoom in the browser window.
You can look at this extension to adjust the font size for the user interface.
*Theme Font & Size Changer: https://addons.mozilla.org/firefox/addon/theme-font-size-changer/
You can look at the Default FullZoom Level or NoScript extension if web pages need to be adjusted after changing layout.css.devPixelsPerPx.
*Default FullZoom Level: https://addons.mozilla.org/firefox/addon/default-fullzoom-level/
*NoSquint: https://addons.mozilla.org/firefox/addon/nosquint/

Similar Messages

  • Problems with Flash video playback

    I'm having a problem with Flash video playback, hoping
    someone here can help.
    I have several movies which I have converted to .flv using
    the Flash authoring tool. I have then created an .swf for each
    movie, embedding the .flv along with the playback component,
    playback controls, etc.
    I can open these .swfs using Flash Player and everything
    displays and plays as expected. However, when I embed the .swf into
    a web page and open it using a browser, the playback controls don't
    show up, and the movie will only play if it has been encoded to
    autoplay. I am on an Intel Mac, using the latest Flash Player
    plug-in, and am having this problem in both Firefox 2.0.0.11 and in
    Safari 2.0.4.
    I'm guessing that the problem lies in how I have encoded the
    .swfs into the web page? Hoping someone has a solution, or at least
    a good suggestion!
    thanks,
    - sounddevisor

    Yes, that is exactly what I needed. Thanks!
    Just to clarify for anyone else who stumbles across this -
    the extra .swf files (which contain the skin for the player) need
    to be in the same directory as the .html doc which is displaying
    the video .swf. Hope that helps someone else!

  • Problem with 5800 video playback

    I am having problems with high quality playback on my 5800. When I transfer videos using high quality encoding through the OVI suite or through an external converter, and play it back on the phone, it practically never plays smoothly. it suffers from frame skips and hanging of videos in the middle of playback while the audio still continues in the background. this also holds true for the videos that came with the phone. is there any way to smooth it out. I am presently downloading the firmware update but I don't think it will fix the issue since it was not mentioned in the update list.
    any help will be greatly appreciated.
    thanks.

    I installed the new firmware and, as I expected, it hasn't solved the problem

  • How to solve a serious problem with the Battary of my T500 laptop ?

    Hi Forum,
    My personal laptop is Lenovo THINKPAD T500 2055, and its main specifications are as follows:
    - 39T6651 SBB 9 CELL LI-ION BATTERY
    - Intel Core 2 Duo processor T9400 (2.53GHz 1066MHz 6MBL2)
    - 8 GB DDR3 SDRAM Memory Module 4 GB (2 x 4 GB) 1066MHz DDR31066/PC38500 DDR3 SDRAM SoDIMM Kingston.
    - 2 GB Intel Turbo Memory hard drive cache.
    - ATI Mobility Radeon 3650 with 256MB.
    - 160 GB Hard Disk Drive, 7200rpm.
    - Windows 7 Ultimate with the latest Service Pack (x64).
    My problem precisely and concisely is the Battary. I have been using my laptop with the same battary since 01.01.2009 (Almost 3.5 Years), and the battary has been working quite OK.
    Most of the time my laptop is plugged in and working with the electricity. However, A very few times I used the laptop while it is running on battery, Nevertheless, I have the habit to empty the batter once in a while i.e. Every 3 weeks, I unplug the charger and keep using the laptop till I see the warning orange sign (5%), then, I plug it in again.
    Thankfully, I never had any problems with the battary nor the laptop, and when I charge the laptop usually it shows full sign (100%).
    Three days ago, All of a sudden my laptop starts flashing the orange battary sign constantly while charge indicates 100%. When I try running on the battery by unplugging the AC adapter, the laptop loses power immediately and shuts down right away.
    What do you think should I do? Could you please provide me any useful tips to resolve this problem?
    I would greatly and sincerely appreciate all your inputs !
    Thanks for your consideration of my request, and I very much look forward to hearing from you at your earliest convenience !
    Solved!
    Go to Solution.

    In the control panel goto the "Lenovo - Power Manager" and click the battery tab, there is a maintenance button in there that will let you change the charging profile for your battery.   (from memory, so exact wording may be off)
     The lower the numbers you use there, the longer the battery *should* last.    These batteries degrade faster at higher charge levels, however storing them at too low of levels is also not good for them... I've read that 40% is optimal, but just not realistic if you use your computer.
    --- ThinkPad T61 / Win 7 / Core 2 / 4gb RAM / Nvidia / Still used daily --- ThinkPad Edge 15/ i5 / Win 7 / TrueCrypt / 8gb RAM / Hated it, died at 1 yr 1 mo old --- ThinkPad T510 / Win 7 / TrueCrypt / i5 / 8gb RAM / Nvidia / Current primary machine --- ThinkPad X220 / i7 / IPS / 4gb / TrueCrypt / My Road Machine

  • How to solve the setColor() problem with multithreading?

    My fractal program uses a custom number of threads to draw the complete image. If I use just 1 thread, the image looks clean, if I use more threads some pixels of the image gets other colors. The problem ist the painting code:
    g2d.setColor(col);
    g2d.drawLine(x, y, x, y);as it is necessary to first set the color of the graphics object and then draw the line. I can solve this pixel color problem by synchronizing the Graphics2D object:
    synchronized (g2d) {
      g2d.setColor(col);
      g2d.drawLine(x, y, x, y);
    }but this slows the code down to times where just 1 thread is calculating the image. Unfortunately, I can't find a draw() method that has a color parameter.
    I tried to divide the panel into multiple BufferedImages (1 for each thread) which solves the pixel problem but only the first BufferedImage get's drawn.

    I solved my problem now. My solution is to use a separate BufferedImage for each Thread. I still had a bug where i didn't transformed the x/y coordinates of the complete image to the shifted x/y coordinates of the single BufferedImages, so that the threads draw the image out of the visible area which looked like all threads after the first only had a black image. After adjusting teh coordinates, the fractal now gets drawn correctly. And boy it's much faster with multiple threads - even on single core systems. On a dual core system, using 10-20 threads about doubles the performance as both cores have work almost all the time until the fractal is finished. :-)

  • Problem with itunes video playback.

    many of my high quality video files seem to run so smoothly with my media players lik VLC, but when i play them in itunes the video gets stuck and the audio keeps playing.. how do i solve this..

    What was the fix for this? Everything has sucked for my itunes video playback since the last major revision release.

  • SEVERE, MAJOR Problems with ITunes Video Playback on 64-bit Win7

    So I got a new rig (ASUS G74SX running 64-bit Win7 Home Prem) after I figured my nearly 5-year old HP Pav dv9500t running 32-bit Vista Home Prem had put in good years of work.  In using ITunes on the Vista system, I never really saw problems with its player on video podcasts.
    Completely different story on the Win7 machine.  Aside from all the other problems noted with ITunes itself (not the player) in this forum, there is this:
    1. When something like UAC occurs, the video clip runs in the player, but the video is frozen (like a photographic still) while the audio continues to run on normally.  Workaround:  minimize then restore the player window, then the video part of playback returns.  Of course that gets annoying doing that multiple times after a while.
    2. With one video podcast (for example, The Young Turks podcasts), while the audio again continues normally, the video track lags unbelievably.  The video appears in slow motion.  The viewer risks a headache from vertigo if the viewer continues watching slow motion video unmatched with the normal audio.
    At first I considered the possiblity that it was related to a 5400 rpm hard disk drive, which came with the new machine and I would not have normally have not bought myself, but I had someone buying it for me (my HP system only had 7200 rpm drives...what is ASUS thinking in letting Best Buy do a performance markdown?).  Then I played that video podcast with VLC media player, and it absolutely had NO problem keeping up with the video and audio.  (Another thing to like and prefer with this player is that you can keep the window on top.)
    Seriously, the programming group at ITunes should be ashamed and maybe every member of its group should consider getting another day job.  With each revision, ITunes seems to get worse.

    My installation of version 10.6.x of ITunes does not have QuickTime.
    As of version 10.5 of ITunes, QuickTime is no longer apparently bundled with ITunes, which clearly has its own player.  In addition, I have used a minimal install of ITunes.  This eliminates the install of the bug-ridden Bonjour service, which was filling up Windows event logs needlessly and crashing from time to time anyway.
    Now although I installed ITunes only a few days ago in this new laptop, I did find ITunes in the Programs & Features page and clicked Repair.  After the "repair," I played the video revealing the flaws of the ITunes player, and the playback problems were still there.  I used the other media player and it played flawlessly.

  • Problem with iPod video playback

    I have a problem with some of my movies' playbacks on my Nano 5g. Though working perfectly fine on both my computer, and my iPod video, on my Nano some videos are slightly cut off on the right of the screen, I'm missing about 10% of the video due to the cut off. Though technically I should still be able to watch the movies fine, it niggles me and inhibits my full enjoyment of the videos. Is there any way I can crop or rescale the movie so it will fit properly on my screen? Thanks
    (I have already tried both wide screen and scale to screen size on the iPod)

    Go to the video settings (iPod nano) and turn off fit to screen.
    Click to download iPod nano (5th generation) - User Guide
    Message was edited by: David M Brewer

  • Lenovo A536 problem with audio video playback.

    I've bought lenovo a536 smartphone 3days ago and I couldn't listen to music continuesly.
    The audio or video player is stop playing or pausing unexpectedly. It is only giving problem while using headset.
    Try to fix this critical bug.
    It just ruined the reputation of lenovo.
    Such a worst design ever with lots of bugs.

    I have more informations..
    First a iWire cable is a simple display port to Hdmi 1.4 cable (you can buy it from applestore and it support audio + video).
    SO, I installed windows 7 on bootcamp, and when I plug the iWire cable on my macbook pro while the home theater + videoprojector are ON, windows crash and restart...
    If I plug the iWire cable on the macbook but if only the home theater is ON and the videoprojector is OFF, then it works... The hometheater is recognized as a TV...
    What I don't understand is that my apple TV don't have problem with this config, nether my westerdigital tv.. It's only with a macbook.. display port should not be exactly same thing as a hdmi output maybe.. :/
    I think I will have to buy a longer hdmi cable to plug it on the vp, and a optical cable for the audo to my ht :/

  • Problem with purchased video playback and app stability

    Music videos I've purchased through the iTMS play for about 20 seconds then the audio stops, and about 5 seconds later the app crashes and returns me to the main menu or the phone reboots; this problem occurs only with a video I've purchased, as any other video or even podcast plays without a hitch. It's something I can recreate without problem, I just have to play a purchased video and it will crash the app.
    I've tried doing a regular reboot and even a full restore, neither of which fixes the problem.
    The applications in general seem stable for the most part, but sometimes I even have problems doing basic functions like browsing pictures in Photos, using Maps, or even typing up something in Notes.
    Do I have a lemon or the start of one? Is there a solution that I've overlooked? What should I do if this is just hardware failure? I really, really enjoy my phone for the majority of it and it's something that I'm always discussing with my friends and family. Thanks in advance for any answers.

    Go to the video settings (iPod nano) and turn off fit to screen.
    Click to download iPod nano (5th generation) - User Guide
    Message was edited by: David M Brewer

  • How do you fix scaling issue with any video playback control bar (too small to see) on Firefox 28?

    Using a 3200x1800 dpi resolution lap top (Samsung Ultrabook 9 series), when I want to play videos on a webpage, the playback control bar (runs across the bottom of a given video for settings like play, pause, sound level, etc.) is too small to see. I tried scaling using various methods, Windows 8.1 OS, Firefox ad-ons like No squint with no success. Of course, these tools work to rescale everything else but the playback control bar. This is not a problem on IE as when you rescale, everything including the playback control bar
    rescales. Thanks

    You can set the layout.css.devPixelsPerPx pref on the <b>about:config</b> page to 1.0 or on Windows 8 to 1.25 and if necessary adjust layout.css.devPixelsPerPx starting from 1.0 in 0.1 or 0.05 steps (1.1 or 0.9) to make icons show correctly.
    *http://kb.mozillazine.org/about:config
    See also:
    *https://support.mozilla.org/kb/forum-response-Zoom-feature-on-Firefox-22
    Use an extension to adjust the text size in the user interface and the page zoom in the browser window.
    You can look at this extension to adjust the font size for the user interface.
    *Theme Font & Size Changer: https://addons.mozilla.org/firefox/addon/theme-font-size-changer/
    You can look at the Default FullZoom Level or NoScript extension if web pages need to be adjusted after changing layout.css.devPixelsPerPx.
    *Default FullZoom Level: https://addons.mozilla.org/firefox/addon/default-fullzoom-level/
    *NoSquint: https://addons.mozilla.org/firefox/addon/nosquint/

  • Problems with HD video playback/editing

    I bought an Aiptek A-HD video camera from best buy about 6 months ago, and it's great but the video is really glitchy on my computer (Dimension 4700). I assume I need to upgrade my graphics card, but I don't really know what's what. Help please?

    Video RAM is only used in large quantities when the card is in 3D mode (primarily for storage of textures).
    For any 2D operations, very little video RAM is required.
    I strongly suggest focusing on your CPU/system RAM, then later on your video card.  Even the Intel GMA X4500MHD (a barebones/basic chipset) is capable of full H.264/AVC offloading for playback.
    For editing you will be solely CPU-bound.  The exception is that some super-high-end editing software CAN offload to newer NVidia GPUs (using a technique called GP-GPU), but so far almost no software does it, and a lot of reviews indicate that the video quality suffers in such cases.
    *disclaimer* I am not now, nor have I ever been, an employee of Best Buy, Geek Squad, nor of any of their affiliate, parent, or subsidiary companies.

  • We have version 10.5.8 photoshop CS3 for Mac. How do we fix a problem with photoshop not resizing dpi? For example we resized a 72 dpi image to 200 dpi, when we do a pdf analysis it read as 344 dpi.

    We have version 10.5.8 photoshop CS3 for Mac. How do we fix a problem with photoshop not resizing dpi? For example we resized a 72 dpi image to 200 dpi, when we do a pdf analysis it read as 344 dpi.

    Sounds like it's a problem with the Acrobat settings. Did you set them to the same resolution?

  • Hello Apple? How do i fixed my problem with my ipad apps every time i open that apps it takes 10min. to play the games ant its getting LOST MODE and the ipad system is crashing

    How do i fixed my problem with my ipad apps every time i open that apps it takes 10min. to play the games ant its getting LOST MODE and the ipad system is crashing

    We are fellow users here on these user-to-user forums, you're not talking to iTunes Support nor Apple.
    Have you tried closing all apps via the iPad's multitasking bar and then doing a soft-reset and seeing that helps ? To close all apps :
    iOS 7: double-click the home button to open the taskbar, and then swipe or drag each app's screen from there up and off the top of the screen to close it, and click the home button to close the taskbar.
    iOS 6 and below : from the home screen (i.e. not with any app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of each app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    Soft-reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • HT5137 I made a purchase with my debit card on The Simpson Tapped out game, And now my game won't open. It just kicks me out every time I click on it. How do I fix this problem with out deleting my app?

    I made a purchase with my debit card on The Simpson Tapped out game, And now my game won't open. It just kicks me out every time I click on it. How do I fix this problem with out deleting my app?

    Personally, I would never use a debit card online, for security reasons.  If your card gets hacked its your money that is stolen.  At least with a credit card it is the card providers money that is stolen.
    Anyway,  I would delete the app and re-install.  If you paid for the app in the first place you will be able to re-install free of charge.  Also, the app should allow the in-app purchase to happen again as it should recognise that you have already purchased it previously.
    Finally, it might be that the 3G doesnt have as much ram as more recent models of iphone and you may have applications running in the background that are preventing the app to function with the in-app purchase unless you shut down any apps eating all you memory that are running in the background.  Shut-down these apps (and the simpson tap out app) by exiting to your home screen and double-tapping the home button to show what apps are running in the background.  press and hold any of the open apps until it starts shaking.  close all the apps down.  exit then re-launch the app.
    good luck.

Maybe you are looking for

  • SRM BI Content Installation

    Hi Experts, I need data flow of Objects from SRM(R/3) to BI SRM data target. If any body involved in this. Please share the SRM BI Content Installation procedure apart from help.sap.com. Advance Thanks, BBC

  • Upgrade WLC 5508 to 7.3x or 7.4x?

    Hi Community, In order to enbale HA SSO on our two 5008 WLC's, I plan to upgrade them to 7.3 / 7.4 (currently 7.2) Right now 7.3.112.0 is the latest release. We do not have any 1600 series AP's, which requires 7.4. So here's my question..any reason g

  • Activity failed for BPM DC

    Hi, I am using CE 7.11 and I have created a BPM DC. I do not find any problem while building are deploying. But, when i activate this DC, its not getting activated, in the build log it is showing that DC is broken. any idea where i am going wrong? Th

  • Mavericks boot takes 5 minutes after Boot Camp

    The boot of my MacBook Air is taking too much time, about five minutes according to my tests. Yesterday I reinstalled OS X and then installed Windows 8.1 on a Boot Camp partition. After choosing the boot disk from OS X settings, the boot of my OS X p

  • Interpreting Kernel Panic Log

    I have a 15" aluminum G4 that's about 2.5 years old. I'm running OS 10.4.7. I've always had problems with kernel panics but I've learned to live with them -- until recently. They seem to be increasing in frequency; about 4 per day now. It usually hap