Has anybody found a fix to Facebook video calling in Mavericks, or am I being a moron over the whole issue?

I'm having, and have for a while now, since installing Mavericks had a issue with using video calling for Mavericks. Even though the video icon for video calling is availible in safari, Firefox etc the java app will not download and install. I know there were issues with this initially but have they been resolved? It is doing my proverbial head in, I've searched forums looked at my library playlists etc etc etc, but a fix has evaded me. please please please please somebody give asome sort of affirmitive answer one way or another as to: 1. can it be fixed or 2. will it be fixed!!!!!!!!!

Hi Jerry,
thanks ....
I've just sussed an action .... after I wrote out my own question, I started thinking about it in a different way, the 300 dpi secondary issue was just a niggle after all .... I was coming back to close this question as solved .... I went back to the initial re-size / action logic
Thanks for you help, your answer was spot on, the erroneous results that I was getting earlier were just frustrating ....
action screen-shot attached .... the 2nd step independently from the 1st seemed to answer both height and resolution requirements ....
Gary

Similar Messages

  • Has anybody found a fix to The document could not be printed and There were no pages selected to print error

    Has anybody found a fix to "The document could not be printed" and "There were no pages selected to print" error?
    I am using a Mac and I'm running the latest versions of OS X 10.6.8 and Adobe 11.0.10 but I'm unable to print.  I need REAL HELP not a suggestion or a get around!  and NO print as an image doesn't work, nor do I see that as a fix!
    Please help!

    Hello PW, I am having this problem and all suggestions haven't worked yet. Where is the Preferences|Documents you are referring to? I am on a PC and using Windows.
    EDIT: I found it and did, but still not working.

  • Anybody found a fix for the netstream.seek bug?

    The bug I am talking about is only being able to seek to a point in a video that the play head has been before.
    Here is how the bug is described at :http://www.brooksandrus.com/blog/2005/12/17/5-reasons-netstream-sucks/
    "Seeking is super slow until all keyframes are cached. No bull, if you have a file which you’ve completely preloaded, the keyframes aren’t cached until the video playhead reaches that point in time for the first time. If I load a file and seek to the end, the player has to chug through all of the keyframes prior to my seek point. This is slow, slow if I have video of even several minutes."
    That was posted 5 years ago. I have found the bug referenced in the following posts:
    http://forums.adobe.com/message/1917914#1917914
    http://forums.adobe.com/message/692394?tstart=0
    I would assume that since this bug has been around for at least 5 years, there would a bug report filed for it or a work around found. But I can't seem to find either.
    I have tried multiple codecs and encodings with no luck. I'm having a hard time accepting that there is not fix for this problem. Flash has to read and cache the key frame information of the entire video before being able to seek to the end. Does anybody know where the flash player writes this information? Let me be clear, this is not streaming video, this is video that is running local off the hard drive. The flash player stores this key frame information somewhere until the computer is restarted. At that point when the video is played again, it has to read the entire file again. You can close and open the player multiple times and it will only perform the caching the first time and not again until a computer restart.
    again, I am not trying to seek to a point that has not been loaded yet. This is a swf that loads a video off the hard drive.
    One that that I have noticed is that when H.264 files are loaded, the player immediately performs the caching scan before it begins to play. When it is finished, you can seek to any point quickly. The time it takes for the caching scan is dependent upon the size of the file and the number of keyframes it has. Whereas the rest of the video codecs will play immediately but will only seek quickly to cached keyframes.
    I have only seen this problem discussed in a few spots, with no solutions. it is a very old bug. Has anybody found a fix, work around or bug report on it?
    Thanks for your help
    -Mike

    package {
        import flash.display.Sprite;
        import flash.events.NetStatusEvent;
        import flash.events.SecurityErrorEvent;
        import flash.events.TimerEvent;
        import flash.media.Video;
        import flash.net.NetConnection;
        import flash.net.NetStream;
        import flash.text.TextField;
        import flash.utils.Timer;
        import flash.utils.getTimer;
         [SWF(width="400", height="600", backgroundColor="#FFFFFF")]
         public class SeekTest extends Sprite
              private var videoURL:String = "test.flv";
            private var connection:NetConnection;
            private var stream:NetStream;
              private var tick:Timer;
              private var startTime:int;
              private var skipCount:int;
              private var duration:Number;
              private var txt:TextField;
              public function SeekTest()
                   txt = new TextField();
                   txt.wordWrap = true;
                   txt.height = 300;
                   txt.width = 400;
                   addChild(txt);
                   tick = new Timer(0.1);
                   tick.addEventListener(TimerEvent.TIMER, checkLoad);
                   connection = new NetConnection();
                connection.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
                connection.addEventListener(SecurityErrorEvent.SECURITY_ERROR, securityErrorHandler);
                connection.connect(null);
              private function netStatusHandler(event:NetStatusEvent):void {
                    //print("Net Status:", event.info.code);
                switch (event.info.code) {
                    case "NetConnection.Connect.Success":
                        connectStream();
                        break;
                    case "NetStream.Play.StreamNotFound":
                        print("Stream not found: " + videoURL);
                        break;
                        case "NetStream.Seek.Notify":
                             print("--- Seek Completed in", (flash.utils.getTimer() - startTime)/1000, "seconds.");
                             seekDone();
                             break;
            private function securityErrorHandler(event:SecurityErrorEvent):void {
                print("securityErrorHandler: " + event);
            private function connectStream():void {
                stream = new NetStream(connection);
                stream.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
                var metaOb:Object = new Object;
                metaOb.onMetaData = metadata;
                stream.client = metaOb;
                var video:Video = new Video();
                    video.height = 300;
                   video.width = 400;
                   video.y = 300;
                video.attachNetStream(stream);
                startTime = flash.utils.getTimer();
                stream.play(videoURL);
                addChild(video);
                tick.start();
            public function metadata(info:Object):void
                 duration = info.duration;
                 print("Metadata: duration=" + info.duration + " width=" + info.width + " height=" + info.height + " framerate=" + info.framerate);
              private function checkLoad(e:TimerEvent):void
                   var seconds:Number = (flash.utils.getTimer() - startTime) / 1000
                   if(stream.bytesLoaded == stream.bytesTotal && stream.bytesTotal != 0 && seconds > 3)
                        skipCount = 0;
                        print("Video 100% Loaded. Performing first seek after 3 seconds of video playing.");
                        tick.stop();
                        startTime = flash.utils.getTimer();
                        stream.seek(duration - 2);
              private function seekDone():void
                   if(skipCount == 0)
                        //just skipped to the end of the video the first time
                        //jump back to the begining and do it again.
                        startTime = flash.utils.getTimer();
                        print("Seeking back to the begining to time the second seek to the end.")
                        stream.seek(0);
                   }else if(skipCount == 1)
                        startTime = flash.utils.getTimer();
                        print("Second seek to the end. ")
                        stream.seek(duration - 2);
                   skipCount++;
              private function print(... args):void
                   trace(args)
                   txt.appendText(String(args.join(" ")) + "\n\n");
    The above is a simple test I put together. Use a large FLV for the testing. Remember, the first seek to the end will be the longest and you may not get the same results unless you restart or use another FLV.

  • In Adobe Pro XI when converting an excel file to a pdf, the pdf is not retaining the page size settings.  Has anyone found a fix for this?

    In Adobe Pro XI when converting an excel file to a pdf, the pdf is not retaining the page size settings.  Has anyone found a fix for this?

    It shouldn't print each page as a separate job and
    each tab has a different name, so, even if it did, it
    ought to give the printouts the name of the tabs.
    It doesn't print each page as a separate job unless the orientation is different - that's the bug. And the name of the job is taken from the name of the window, not the name of the tabs. That's how every application works, which, I think, is why Excel allows the specific selection or the active sheets to be printed.
    Still, that does sound like a plausible explanation.
    However, even if presented with multiple prints with
    the same name, the spooler should print each one!
    The spooler does print each one - you can watch the spooler process the multiple jobs. I think, though, that they are being overwritten since all the jobs have the name of the window as the job title. And since this happens after the Save Dialog is presented, there's really nothing the application can do. To Excel, it's one job, the multiple orientations don't matter; it's just that Apple doesn't handle it correctly.
    As a workaround, you can print the selections one at a time and give them unique names and then rejoin them in one PDF file.

  • Has anybody found out how to change the workgroup name in 10.5?

    I have been trying to connect to XP machine shared folders and it is not working.
    I've tried using smb and it gives connection error or says Ithe user has not permission in the machine
    I've started in 10.4 from backup disk and it is working OK.
    I see that in 10.4 it asked for DOMAIN/ Workgroup name , and this option has disappeared in 10.5
    Has anybody found out how to change the workgroup name in 10.5?

    System Preferences - Networking

  • After updating my 4S to iOS 5.1.1 last night, none of my data applications are working today, nor Siri, iMessage or anything of the like. I'm at a loss as to what might have caused it. Is anyone else having this issue/has anyone found a fix?

    After updating my 4S to iOS 5.1.1 last night, none of my data applications are working today, nor Siri, iMessage or anything of the like. I'm at a loss as to what might have caused it. Is anyone else having this issue/has anyone found a fix? Everything seems to work fine if I connect to wireless, but if I'm not connected to it then nothing is working. My service provider says everything should be working fine, I still have the 3G symbol and full bars.

    Somebody clearly hasn't read the User Guide.
    Basic troubleshooting steps are retart, reset, restore from backup, restore as NEW. 
    If you have tried ALL of these steps and you're still having problems, then you need to bring your phone into Apple for evaluation.

  • Has anybody tried to transfer Hi-8 video to iDVD?

    Has anybody tried to transfer Hi-8 video to iDVD?

    Has anybody tried to transfer Hi-8 video to iDVD?
    I have done lots of that.
    To get your Hi-8 video into iMovie, use the Grassvalley ADVC300.  With the ADVC300 Audio and Video go in, FireWire comes out. It also comes with a nice Macintosh application that works flawlessly with iMovie 06 and iDVD 09/11 (I have used it a few times with iMovie 11).

  • Has anybody been sucessful in integrating other  Video encoders (on2 Flix, Mainconcept) with  Adobe AIR applications

    Has anybody been sucessful in integrating other Video
    encoders (on2 Flix, Mainconcept, or any other commercially
    available video encoder) with Adobe AIR live video streaming
    applications ?
    Most of the companies provide SDK's
    Is it possible at all to integrate them with Adobe Air
    applications built using Flex/ Actionscript?

    With the use of a little Alchemy magic, you can turn a C/C++ library into actionscript accessable classes!

  • Has anybody found a vco like LM566 model?

    HI,
    Has anybody found a vco like LM566 model? I need simulate the running of vco for my students.
    thank you so much.
    MCP

    I'm always interested in helping students (and their instructors).  On that note, I just passed along a phase-locked loop circuit to the forum, through a thread I began many months ago. 
    This url,
    http://forums.ni.com/ni/board/message?board.id=370​&message.id=50&query.id=581439#M50
    should get you to the thread.
    It isn't what I'd call a "designed" PLL, as I tweaked it into operation (the 1k was increased to 10k).  But I think it's still pretty cool to play with, and I thought your students and the others here might like it.  However, do note that I used a building block VCO. ...at least for the moment that is. ;-)

  • Facebook video calling / chat does not work after windows 8.1 upgrade / update from windows 8

    I originally had windows 8  where facebook calling was working fine. 
    I upgraded to 8.1 (Single language), since then  I am unable to see the Facebook video calling button.
    Facebook videocall button disappeared in each profile.I tried firefox, chrome but all ended up the same.
    Please help.

    Hi,
    Please check this fix:
    To activate video calling
    https://www.facebook.com/videocallnow/posts/250167428331356
    Please Note: 
    This response contains a reference to a third party World Wide Web site. Microsoft is providing this information as a convenience to you. Microsoft does not control these sites and has not tested any software or information found on these sites; therefore,
    Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. There are inherent dangers in the use of any software found on the Internet, and Microsoft cautions you to make sure that you
    completely understand the risk before retrieving any software from the Internet.
    Kate Li
    TechNet Community Support

  • Does Firefox support "Facebook video calling?

    The video button for "Facebook video calling is not showing up. I check the help page for Facebook to see if Firefox browser supported it. It said it did. I installed the "Facebook Video Calling Plugin". But the icon still does not show up.

    Hi,
    Please check this fix:
    To activate video calling
    https://www.facebook.com/videocallnow/posts/250167428331356
    Please Note: 
    This response contains a reference to a third party World Wide Web site. Microsoft is providing this information as a convenience to you. Microsoft does not control these sites and has not tested any software or information found on these sites; therefore,
    Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. There are inherent dangers in the use of any software found on the Internet, and Microsoft cautions you to make sure that you
    completely understand the risk before retrieving any software from the Internet.
    Kate Li
    TechNet Community Support

  • I got a macbook pro 13 inch core i5  late 2011 , it came with osx lion  and i been using facebook videocalls normaly , now i updated to Mountain lion but when i use facebook video calls in (safari ,chrome ) i see the window box but i only see my self  i c

    i got a macbook pro 13 inch core i5  late 2011 , it came with osx lion  and i been using facebook videocalls normaly , now i updated to Mountain lion
    but when i use facebook video calls in (safari ,chrome ) i see the window box but i only see my self  i can hear my friends but cant see em, they also can see me and hear me but i just see me and hear them .
    any ideas ?

    Your wifi problem sounds very much like the problem I had. The wifi would drop out, the icon showed it was still connected. If I turned it off, I couldn't turn it back on. Another user here pointed me to the problem, which was the wifi cable (the flat cable goint from the card to the motherboard). I found it on ebay for $13 and it's been running fine since I replaced it. This is the repair guide for your machine. The part number will be on there if you click the link.
    http://www.ifixit.com/Guide/MacBook+Pro+15-Inch+Unibody+Late+2011+AirPort-Blueto oth+Cable+Replacement/7510

  • Facebook video calling software encountered an error when starting

    hp pavilion cto notebook
    dv4t-4200
    when i was trying to have a video call on facebook,
    even i reinstall th FB video calling, unable to solve it...
    but skype video calling is working perfectly,, but i cant do same on facebook video calling,, please help me out from this sucking error...

    my laptop bought from USA.
    hp pavilion dv4t-4200 cto entertainment notebook pc
    Windows 7 Home Premium 64-bit Service Pack 1
    Product number: A1M02AV
    Yes the other video msgs like skype works perfectly....
    if i click on learn more button i am getting
    this is what i am getting, and i have done with all the above methodes...
    and no use, i was unable to use it,,, [please help me]

  • Ipad retina Facebook video call!

    The speaker and webcam is not working when I used the Facebook Video call with Vichat app. which app is best in video calling? when I open the account and privacy setting, they are showing the same but on the P.C. I know it is different.
    can somebody please help me. Thank you.

    Start here:
    http://support.apple.com/kb/HT4319

  • Why won't my camera work in Facebook video call?

    Have a new MacBook Pro running Mavericks. When I tried to use the video call feature in Facebook, it told me I didn;t have the necessary java to execute the install. I downloaded the file suggested online (Java for OS X 2014-001: How to re-enable the Apple-provided Java SE 6 web plug-in and Web Start features) and the install went through. However, when I try to make a call it connects, I can see the other person's video and hear her/him but my camera does not activate (No green light. Person being called can hear me, but no picture appears for them). FaceTime works fine. Skype works fine. Google+ Hangout asks me to give permission to use camera, but hangs up. I also tried to make a FB video call in Safari and that did not work either (same problem).

    varhodes wrote:  Why won't my camera work in Facebook video call?
    Because something is wrong.
    You've done well determining that there is nothing wrong with your Mac or its Apple Software.
    Search FaceBook Help for answers to your FaceBook question.
    Message was edited by: EZ Jim
    Mac OSX 10.9.4

Maybe you are looking for

  • Where do I see the price of my book?

    As the title says, how do I see the price of the book I've created? Is it the price that is showed when I choose the layout? But why is the price for extra pages showed? What happens if I press the Buy button? Do I get to see the price before I confi

  • How can I make audio come out of the phone speaker rather than the standard speaker in android?

    just like the title says. is this possible? Has anyone sussessfully done this?

  • Netting of GL in F.01

    Hiii guru's, How to do netting of GL in F.01 report. In F.01 we get GL P & L statement.i want  total of group of GLs.  System should not show individual GLs. Total of the Group should appear. Subcontracting group.           GL XXXXX         1111     

  • Differences between JCA und JCE

    Can someone explain me the differences between JCA and JCE ? I guess there are more features in JCE, but I don't see exactly what. Thanks, Claude

  • Query regarding groups

    Hi All I have a query Name TC defects A UT 1 A VT 2 B UT 3 A UT 4 B VT 5 A PT 6 I want the sum of all the defects in different columns NAME UT VT PT A 2 1 1 B 1 1 0 Thanks for your help Edited by: user_7000013 on Oct 20, 2010 11:57 AM