Problems with Facebook and theater mode

When a photo is clicked on Facebook, the theater mode appears normally but the original page scrolls up randomly. Is there a fix for this?

Hannes.S wrote:
Hi tjk,
thank you for your reply.
I will do that, if there is no other solution. I just thought, it'll be better to know what's the problem with my mac...
But probably you're right, this will be the best solution.
The repair techs would be the best person to ask that. 

Similar Messages

  • Problem with Facebook and instagram after istalling iOS 7.1. Can not open them!

    Problem with Facebook and instagram after istalling iOS 7.1. Can not open them!

    Hi Hanjon!
    Here is an article that will help you troubleshoot these purchased apps:
    iOS: An app you installed unexpectedly quits, stops responding, or won’t open
    http://support.apple.com/kb/ts1702
    Thanks for being a part of the Apple Support Communities!
    Regards,
    Braden

  • Facebook and theater mode

    When a photo is clicked in Facebook and the theater mode appears, the original page scrolls up erratically and I have to scroll back down to the post. This specially happens when a wall is extended several times using the "Show more posts" button. Anyone else has this annoying issue?

    1. Update all drivers AND BIOS http://mobilesupport.lenovo.com/us/en/products/laptops-and-netbooks/yoga-series/yoga-2-13-notebook-l...
    2. If #1 did not work, attempt a factory reset with OneKeyRecovery.
    3. If #1 and #2 did not work perhaps contact tech support by phone in your country.
    Jonas
    Microsoft MVP: Windows Consumer Expert
    Yoga Tablet 2 10 || ThinkPad X1 Carbon (20A7007MPH) || ThinkPad Helix (3698-6EU) || IdeaCentre B540
    Twitter: @jonashendrickx

  • Problem with rotation and landscape mode in iOS 8

    From start of iOS 8 I have got problem with rotation in my iPhone 5S 32GB as well as in my iPad mini retina 32GB. Automatical rotation to landscape mode is not working correctly. For example if you take the phone or tablet to landscape mode in base display and tap to Safari, Mail, Messages, the app will start but stay in normal mode, not landscape. Then you have to back the phone to normal portrait mode and back to landscape and only then the phone do the landscape mode. I have never seen this problem in iOS 7 or older.
    Could you help me anyone with this problem? Or is the problem generally in iOS 8.
    Thanks a lot
    Jakub

    Brian, thanks, but it's not a rotation lock issue - at least not relating to the rotation lock setting. It's just a general use setting. Right now i have my iPhone propped in landscape mode. If I now hit the home button, essentially returning to a portrait setting though my phone is still positioned in landscape, then open any other app that supports landscape, that app WILL NOT orient itself to landscape mode. It will stay in portrait mode. The phone has to be physically oriented to portrait, then back to landscape for the app to register landscape mode properly. This is a glitch, and not a rotation lock issue. it ought to be noted that this was not an issue in iOS 7 or any previous iteration.

  • Upload problems with Facebook and Vimeo from Premiere Elements 10

    I have created a project in HD and am trying to upload to Vimeo.  Premiere Elements 10 does not have a preset so I followed some instructions from the Vimeo website.  Project is "blurry" when viewed.  I checked with Vimeo and they said what they converted matches what I sent so the problem must be in the export - bit rate may be incorrect.  Can anyone give me the correct presets for Vimeo from Premiere Elements 10.  I can view other people's video in HD and they look fine so I don't think it's my computer monitor.   I'm sure you will need more information about my project so please give me a list of specific things you need to know.  Thank you.
    My Facebook problem is as follows.  If I use the preset from Premiere Elements 10 to upload to Facebook it looks fine, HD quality as expected.  Problem is, I would like to upload to my business page.  Since the personal page and the business page (managed by my personal account) share a login, the preset always loads to my personal page.  Does anyone know the values of the preset so I can upload the video to my business page.  My business is event and wedding videography so I would like the posts to be as clear as possible.
    If the problem with the Vimeo uploads is solved then I suppose I can just share the Vimeo file on Facebook.  Thank you.

    VDRAVES
    I think that you are overlooking what you already have with regard to a Vimeo HD preset for export to file for upload of the saved file at the Vimeo website.
    Please see
    Share/Computer/AVCHD with Presets = Vimeo HD
    Under the Advanced Button/Video Tab, you can customize the preset further from 1280 x 720 to 1920 x 1080 and increase the bitrate, if necessary, to a level that does not give you a prohibitive file size. With Profile = Main and Level = 3.1, the bitrate range is 0.19 to 14 Mbps (megabits per second).
    I would start with the default bitrates of Target = 8 Mbps and Maximium = 9 Mbps and explore and experiment from there.
    If you customize the preset to 1920 x 1080 in the Export Settings customization area, then change the Profile to High and the Level to 5.1
    When you do that the bitrate range will be 0.19 to 300 Mbps instead of 0.19 to 14 Mbps.
    In all cases, watch for file size versus bitrate versus quality of end product.
    Please give that a look and then let us know if the above resolves your Vimeo and Facebook question.
    Please review and let us know the outcome.
    Thank you.
    ATR

  • Problems with environments and transactional mode in the Python API

    Hello everyone,
    I have been having problems with the Python API, and I wonder if anyone can comment? I am using DB XML version 2.2.13, with python 2.3 (RedHat linux WS 4.0) and python 2.4 (SuSE 10.1) with identical results. I started with a simple example:
    #!/usr/bin/python
    """XPath example from http://www.w3schools.com/xpath/default.asp
    ported to DbXML
    from bsddb3.db import *
    from dbxml import *
    books = """<?xml version="1.0" encoding="ISO-8859-1"?>
    <bookstore>
      [xml data omitted for brevity]
    </bookstore>"""
    if __name__ == "__main__":
        conFlags = DB_CREATE | DB_NOMMAP
        myMgr = XmlManager()
        myMgr.setDefaultContainerFlags(conFlags)
        myMgr.setDefaultContainerType( XmlContainer.NodeContainer)
        uc = myMgr.createUpdateContext()
        container = myMgr.createContainer("books.dbxml")
        container.putDocument("books.xml", books, uc)So far, so good - this works, and creates a container books.dbxml that I can open and query. Next, I try to instantiate the XmlManager using an environment:
    if __name__ == "__main__":
        envFlags = DB_CREATE | DB_PRIVATE
        conFlags = DB_CREATE | DB_EXCL | DB_NOMMAP
        myEnv = DBEnv()
        myEnv.open("/home/pkeller/dbxml_tests", envFlags, 0)
        myMgr = XmlManager(myEnv, DBXML_ADOPT_DBENV)
        myMgr.setDefaultContainerFlags(conFlags)
        myMgr.setDefaultContainerType( XmlContainer.NodeContainer)
        uc = myMgr.createUpdateContext()
        container = myMgr.createContainer("books.dbxml")
        container.putDocument("books.xml", books, uc)This fails with the following output:
    Traceback (most recent call last):
      File "w3school_xpath_c2.py", line 60, in ?
        container = myMgr.createContainer("books.dbxml")
      File "/scratch_bernoulli/pkeller/dbxml/install/lib/python2.3/site-packages/dbxml.py", line 125, in createContainer
        def createContainer(*args): return dbxml.XmlManagercreateContainer(*args)
    RuntimeError: Error: Invalid argument
    Segmentation faultA bit odd - I can't find anything in the docs about the required arguments to XmlManager.createContainer being different if an environment has been used explicitly.
    Anyway, I persevered (my aim being to use transactional mode in Python). Changing the environment and container flags like so:
        envFlags = DB_CREATE  | DB_INIT_LOCK | DB_INIT_LOG | DB_INIT_MPOOL | DB_INIT_TXN | DB_PRIVATE
        conFlags = DB_CREATE  | DB_EXCL | DBXML_TRANSACTIONAL | DB_NOMMAPThis change allowed the script to run, outputting the single classic line:
    Segmentation fault(the C++ API docs at http://www.sleepycat.com/xmldocs/gsg_xml/cxx/transaction.html#initializetransaction are incorrect by the way - there is no flag DB_TRANSACTIONAL).
    In spite of the segfault, the file "books.dbxml" was produced and could be queried by another application. A transaction log file "log.0000000001" was also written (10485760 bytes long).
    Running this last example again with "python -v" showed that the segfault was being produced during the python's cleanup phase:
    # clear __builtin__._
    # clear sys.path
    # clear sys.argv
    # clear sys.ps1
    # clear sys.ps2
    # clear sys.exitfunc
    # clear sys.exc_type
    # clear sys.exc_value
    # clear sys.exc_traceback
    # clear sys.last_type
    # clear sys.last_value
    # clear sys.last_traceback
    # clear sys.path_hooks
    # clear sys.path_importer_cache
    # clear sys.meta_path
    # restore sys.stdin
    # restore sys.stdout
    # restore sys.stderr
    # cleanup __main__
    Segmentation faultCan anyone clarify what is going on? I had been hoping to deploy DB XML as an alternative to something more admin-heavy, but with this behaviour that would be hard to justify. A dirty exit from Python means that no-one will consider trusting their data to this engine (or am I doing something wrong?).
    Regards,
    Peter.

    Peter,
    Your first failure -- invalid argument -- was due to an invalid combination of
    flags to DBEnv.open(). Along with DB_CREATE you need at least DB_INIT_MPOOL.
    As you can see, it worked once you added more flags.
    The second, cleanup problem (segmentation fault) is the result of out of order
    destruction of objects. This is fixed in the next release (later this year), but
    you can work around it by ensuring that your XmlContainer and XmlManager
    objects are deleted/cleaned up before the DBEnv object.
    Python will cleanup in reverse order of creation, unless you perform explicit
    deletions, which is also fine (e.g. del container, del myMgr).
    Explicit deletion is always safe.
    Regards,
    George

  • Problems with facebook and YouTube

    Okay, so I upgraded my MacBook pro (early 2011) to mountain lion, and everything worked fine, it was also faster than lion. The problem is that yesterday I had troubles with facebook, the tab where I was got blocked and since that moment I can't log in to facebook, YouTube and other sites in any browser, I've tried all of them. It happened while I was usin chrome but safari, Firefox, opera, they don't work unless I set the private browsing. I don't know what to do, please help me.

    I had ths problem to and found out how to fix this here are some steps to fix it.Type on your keyboard ctrl+shift+delete (hold control shift and delete at the same time) after you press these keys a pop-up will come up saying "Clear All histroy" at the top where it says "time range to clear" select Everything after that underneath Details at the bottom check all the boxes off the list then click "Clear Now" (I attached a picture to show what it should look like you can see the picture at the bottom of this post)the the problems should be cleared with youtube and facebook
    ***By the way firefox doesn't force you to update you don't have to update firefox if you don't want to***
    All the help from-
    Spencer4757
    I helped you, can you help me by visiting my websites and other sites:
    My Website: http://www.spenceriscool.co.cc/
    My Youtube channel: http://www.youtube.com/spencer4757
    Twitter Fan Page : http://twitter.com/#!/spencerizcool
    Facebook Fan Page : https://www.facebook.com/pages/Spencer-Is-Cool/120710047950205

  • Problems with facebook and loading page in Safari

    When I am chatting on facebook and try to click around on the page, most specifically when I have other tabs running on Safari, facebook will not completely load and i will get the spinning cursor on the facebook tab that will not go away. It continually tries to load with no success. I have to close the window and open a new one for it to go away. It only seems to happen when I am chatting with people on facebook chat...any suggestions?

    Ok...
    Time to get out your install disc, run the Disk Utility app and check the startup disk for errors.
    Insert your install disk and Restart, holding down the "C" key until grey Apple appears.
    Go to Installer menu and launch Disk Utility.
    (In Mac OS X 10.4 or later, you must select your language first from the installer menu)
    Select your HDD (manufacturer ID) in the left panel.
    Select First Aid in the Main panel.
    (Check S.M.A.R.T Status of HDD at the bottom of right panel. It should say: Verified)
    Click Repair Disk on the bottom right.
    If DU reports disk does not need repairs quit DU and restart.
    If DU reports errors Repair again and again until DU reports disk is repaired.
    When you are finished with DU, from the Menu Bar, select Utilities/Startup Manager.
    Select your startup disk and click Restart
    While you have the Disk Utility window open, look at the bottom of the window. Where you see Capacity and Available. *Make sure there is always 15% free space.*

  • Problems with Facebook and graphics?

    About a week ago i notice the lag time in typing is terrible and i must wait for the keyboard to catch up with me.  Now, the pictures and other graphics interfaces on Facebook are all screwed up.  I click on a picture in someone's timeline and the photo just starts to blink.  Sometime a cover photo on a friends page just does wierd things and blinks or even moves into strange positons.  I do not know when the last update to the graphic chip was, but is anyone else having this problem?  Sometimes it happens on twitter, but i think that is about all.  I really dont see it on web sites.
    i have a 15 inch macbook pro, retina, 16 MB of ram, SSD bought last july.

    Contact Facebook & Twitter customer support to determine if the issue is on their end. 
    How large is your hard drive and how much hard drive space do you have left? If you have Apple Care or are still under your 90 days of free phone tech support, call them. 

  • Problem with facebook and candy crush

    The face book will not talk with candy crush what is needed to be done?

    Contact the app developers and ask them for help.
    This is not the Facebook or Candy Crush support forum.

  • I'm having problems with iPhoto and the facebook set-up.  Every time I attempt to do so it says an error has occured and try again later.  I have not seen a solution posted.  Therefore, how does one contact Apple to solve the problem?  I'm new to the worl

    I'm having problems with iPhoto and the facebook set-up.  Every time I attempt to do so it says an error has occured and try again later.  I have not seen a solution posted.  Therefore, how does one contact Apple to solve the problem?  I'm new to the world of iMac but I find it a bit frustrating trying to solve basic issues/problems:(

    For what it's worth, you posted this in 2011, and here in 2014 I am still having this same issue. Over the last two days, I have had to unlock my apple account 8 times. I didn't get any new devices. I haven't initiated a password reset. I didn't forget my password. I set up two factor authentication and have been able to do the unlocking with the key and using a code sent to one of my devices. 
    That all works.
    It's this having to unlock my account every time I go to use any of my devices. And I have many: iMac, iPad, iPad2, iPad mini, iPhone 5s, iPod touch (daughter), and my old iPhone 4 being used as an ipod touch now.  They are all synced, and all was working just fine.
    I have initiated an incident with Apple (again) but I know they are just going to suggest I change my Apple ID. It's a simple one, and one that I am sure others think is theirs. I don't want to change it. I shouldn't have to. Apple should be able to tell me who is trying to use it, or at least from where.
    Thanks for listening,
    Melissa

  • Having problems with Facebook on my ipad2. Updated operating system. Problem started before that and continues. Can't click on like or make comments. Sent email to Facebook. Their response was that they don't answer individual emails but read them. Sigh!

    Stated above, I have issues with Facebook and my iPad 2. I have updated the operating system, but the problem started before that. Can't click on like or enter comments. Problem started about a week ago. Sent email to Facebook and they responded that they don't answer individual emails but read them. Lots help that was.

    Facebook is basically broken, at least as far as it pertains to mobile browsers. THey changed something in their coding and now mobile browsers don't work with facebook. ANd their app, well their app has been less than stellar for a long time.
    Unfortunately, it's up to facebook to fix things, not apple. All you can do is find work arounds. Look for third party apps, I have one called Facely HD which seems to work reasonably well (even though it does seem to not see all posts). There may be others that work better. You can also simply not access facebook on your mobile until they fix it.
    It's all on them and users can only be patient or find other ways to work around it.

  • I have problems synchronizing my iPhone 5 contacts with Facebook and Gmail. What is the way to do it?

    When I synchronize my iPhone 5 with Facebook and Gmail, contacts changes. How should I do that synchronization?

    Google contact sync is set up through Settings > Mail, Contacts, Calendars > and inside that setting somehwere is something that says Contacts. Make sure that switch is ON. Same for Facebook. In settings > Facebook is an item that says Contacts. Make sure it is ON.

  • I'm having problems with facebook notifications.  The sound doesn't work but shows up in banner.  Any suggestions?  I've tried everything but restoring.  Is it a phone problem or an app problem?

    I am having a problem with facebook notifications.  The sound doesn't work but appears as a banner.  I've tried everything but restoring the phone.  Is this a phone problem or an app problem?  Has anybody experienced this problem and were they able to correct it? 

    1) This is because of software version 1.1. See this
    thread for some options as to how to go back to 1.0,
    which will correct the problem...
    http://discussions.apple.com/thread.jspa?threadID=3754
    59&tstart=0
    2) This tends to happen after videos. Give the iPod a
    minute or two to readjust. It should now be more
    accurate.
    3) This?
    iPod shows a folder icon with exclamation
    point
    4) Restore the iPod
    5) Try these...
    iPod Only Shows An Apple Logo and Will Not Start
    Up
    iPod Only Shows An Apple Logo
    I think 3,4, and 5 are related. Try the options I
    posted for each one.
    btabz
    I just noticed that one of the restore methods you posted was to put it into Disk Mode First rather than just use the resstore straight off, I Have tried that and seems to have solved the problem, If it has thank you. previously I have only tried just restoring it skipping this extra step. Hope my iPod stays healthy, if it doesnt its a warrenty job me thinks any way thanks again

  • Problem with Preview and PSD files - random gray square

    Hi guys, hope you can help...
    I've got a problem with Preview and PSD files.
    If I open in Preview both an original jpg straight from my reflex and the photoshop version of the same picture, the psd file presents a gray square (of what it seems unrendered image) in a random area of the photo (sometimes in the center.). The square is quite big...
    If I zoom in or zoom out it disappears...if I scroll to another photo and then back to the psd, the square it's there again...sometimes in a different position.
    I've tried the same psd on my older iMac with leopard...and got no problem at all.
    I suspect it got something to do with my Ati...
    (this is the second iMac 27...the first went back for gray banding on the lcd screen and flickering and yellow tinge........)
    Thanks for your help.
    DAve.

    maybe I'm onto something...
    I've just found out that opening Preview in 32bit mode (instead of default 64bit) works flawlessly with any psd files. If I switch back to 64bit mode, Preview is much faster but the gray square comes back...
    It seems like the i7 is much faster than the Ati....
    Any more realistic ideas?

Maybe you are looking for

  • Is there a way to create a smart folder in iTunes, that contains the most recent (say 10) used playlists?

    Is there a way to create a smart folder in iTunes, that contains the most recent (say 10) used playlists? By having this I would be three clicks (touches from what is recent). Thanks

  • How do I restore a custom item in the Search bar?

    I have just bought a new comouter. One of the things I want to set up on it is the same set of options in the Firefox Search bar. In my old computer I set up the ARTFL Roget's Thesaurus as as one of the list of options for search engines. (This Thesa

  • Problem with Outlook Express 5.0.6

    I am using an iBook OS 9.2. Since moving to DSL I can receive e-mail but no longer send e-mail using Outlook Express 5. I have been instructed to download Outlook Express 5.0.6 from Mactopia to solve this problem. My download is complete but when I g

  • How to make transparent buttons?

    Is there a way to make transparent button. A sort of fake button that way, I can make many of them and have just one big background image at the back to save loading time but still able to capture clicks in specific area. Anyone?

  • Connect by - find the top level by pasing in any other level

    I have a connect by loop. select  parent, child from parentchild start with parent = :passed_in_parameter connect by nocycle prior  child = parentThis works fine but i have an addiitional requirement to find the top level of this tree. By passing in