Can someone explain to me about the "Facebook" interfacing with mountain lion?

I've been hearing about one of the new features of Mountain Lion can now interact with facebook?  If this is true how?

Pending.  Facebook integration will be launched in the fall.
http://www.apple.com/osx/whats-new/features.html#facebook

Similar Messages

  • Can someone explain me well when the infopackage use batch or dialog?

    Hi Gurus,
    can someone explain me well when the infopackage use batch or dialog?

    Hi ,
    first of of in Bi_btch job nothin comes in the log .. but if you use PSa and then into data target then it willl definatly create background jobs .. but i feel it doesnt relate to the concept you are taking about ..
    if you us e a sepeate update from PSA step the it will create backgroung jobs ..of  king bi_btch and if you push the packets maually then it will create jobs like bi_book .. thats the diff ..
    The initialization and execution of an InfoPackage is implemented as a process type in the process chain maintenance. The Start Later in Batch setting is hidden if the InfoPackage is used in a process chain. This is because the start of the request is determined by the process chain itself.
    If you do not use the InfoPackage in the process chain maintenance and you want to process the data request in the background, select the radio button Start Later in Batch and define the required start time. If start times already exist for this data request, this is indicated with a  next to the Scheduling Options pushbutton. You can change the start time using Settings Options. You can also enter an end date for the data request with a background job.
    If you schedule an InfoPackage in the batch later, the background request job runs until all data is updated in BW. This is displayed with a corresponding indicator in the Schedule tab page.  The load process remains active until the data is updated.
    For example, this gives external scheduling tools the option of monitoring the request job. The job then also runs with a request from an SAP source system as long as the source system has sent the data to the BW system and posted it or until the monitor sets the request to red. In the job log, a success or error message is displayed according to whether the request was posted successfully or not.
    regards,
    shikha

  • Can someone explain to me what the Terminal does?

    Can someone explain to me what the Terminal application does? A good explanation would be greatly appreciated, thanks!
    NA

    Can someone explain to me what the Terminal
    application does? A good explanation would be greatly
    appreciated, thanks!
    Sure, go here:
    http://www.macdevcenter.com/pub/a/mac/2001/12/14/terminal_one.html
    Powermac G5 - Macbook C2D   Mac OS X (10.4.8)   Both macs are heavily upgraded and used frequently.

  • Hi, I can't get my old wacom intuos2 to work with mountain lion, any suggestions? Apart from buy a new tablet.

    Hi, I can't get my old wacom intuos2 to work with mountain lion, any suggestions? Apart from buy a new tablet.

    I was out of town for a few days. I had no issue installing the driver on Mountain Lion (10.8.2). What specifically happens when you try to install?
    If you get this message:
    then you need to right-click on the installer package and select 'Open' when you get this message:
    If this isn't your issue you need to be more specific about what is happening.

  • HT1218 How can I make my first generation AirPort Express work with Mountain Lion? I have a 13" MacBook Pro (non-retina).

    How can I make my first generation AirPort Express work with Mountain Lion? I have a 13" MacBook Pro (non-retina).

    Hi guys, recently had the same issue. You require an older version of Airport Utility to configure the older Airport Express. It can be found here.
    http://www.google.com/url?sa=t&rct=j&q=airport%20utility%205.6%20for%20lion&sour ce=web&cd=1&ved=0CFMQFjAA&url=http%3A%2F%2Fsupport.apple.com%2Fkb%2FDL1482&ei=Ip MBUPLwLoq42wW4puXMBA&usg=AFQjCNGOFUPMM0ZjsKeyj5CcL2oe9Eaf7A

  • Can I still use a regular mice and keyboard with Mountain Lion?

    I want to upgrade to mountain lion, but want to know Can I still use a regular mice and keyboard with Mountain Lion?

    Thanks for the reply
    I wasn't currently using the keyboard and mouse that came with computer and wasn't ready to use those yet, but did want to upgrade to have the latest system for now

  • Why can't i use my flagged pictures in sreensaver with mountain lion

    in the previous OS i was able to sellect my flagged pics in iphoto to use in my screensaver also it would put a diffrent pic on my two screens.  Now with mountain lion i can't figure out how to do either of these things.  Has anyone elce had this issue?

    Apple appears to have significantly changed the Screen Savers tab in System Preferences.  I was able to select the Flagged smart album (or any other iPhoto album for that matter) by selecting the type of slideshow (from the 'Slideshow' section).  Then selected the "Source" popup menu box, selected "iPhoto Library..." then selected the Flagged (or whatever iPhoto album/event you want).  Then select the "Choose" button and you are done.

  • Can I stream a dvd to my apple tv with mountain lion?

    I have a 2009 MBP 13 and want to send a dvd to my apple tv. wlll this work with Mountain Lion, or Snow Leopard?

    Sorry, but there is no way to stream a physical DVD from any Mac, regardless of the OS it's running. If this DVD is not copy-protected (most commercial DVDs are), you can convert it and import it into iTunes and then stream it from your Mac.
    Regards.

  • Can someone explain how to set the focus to a component

    Hello,
    What is the best way to ensure that a component gets the focus with code. I have tried requestFocus and requestFocusInWindow and none of them seems to do there work. The frame containing the components that should get the focus is displayed, the component is focusable so that is not the problem. What I found out is that if the component is deep in a nesting of panes (where the top pane is in the frame) is that calling requestFocus or requestFocusInWindow does not give the component where this focus is called on the focus but either the pane that contains it, one of the parent panes of this pane or one of the components in these panes, in almost all cases the component requesting the focus does not get the focus at all. I always have to write a work around in defining a focus listener for all these panes that transfer the focus back to the component that requested the focus originally, I can't believe that this is the way to ensure that a component has the focus via code. I have searched for documentation but found nothing on what requestFocus(inWindow) is actually dooing (a lot about focus traversibility but I don't want to control this, just make sure that a component gets the focus).
    Again I'm pretty sure that the toplevel window is activated and that the component that requested the focus is focusable (I had created a derived version of the DefaultFocusManager that showed who has focus). Personally I think (and I'm not alone if you do a search in this forum on focus management) that there is either a big problem in the documentation of focus management or that it is still not possible to even try to set the focus on a component in a easy way.
    Marc

    Hello,
    thanks for your reply, here is some example code that illustrates the problem I have (the actual code is to big to show here, which is the raison why I did not posted it here). The code wil create a frame with a JPanel with a JTextField, a 'New' Jbutton and a 'Delete' Jbutton, a tabbed pane in the center ('New' will create a new JPanel, add it to the tabbed pane and set the focus on it, either by calling RequestFocusInWindow() directly or by calling it via InvokeLater (someone on this forum suggested to use this). I changed also the focusmanager to show the component that has the focus when you type something. To test compile and run the program (either with a call to requesteFocusInWindow directly or indirectly (by changing the comments), on my system I get the following behaviour:
    1. requestFocusInWindow called directly
    Start program en type, the tabbed pane has the focus
    Press New and type something, a button has the focus not the created panel
    Press New again and type something, a button has the focus not the created panel
    2. requestFocusInWindow be called indirectly
    Start program and type, the tabbed pane has the focus
    Press New and type, the created panel has the focus (I thought at one moment that I had found the solution there, but alas ...)
    Press New again and type something, a button has again the focus.
    Note that with my real program it is not always a button that will have the focus, sometimes it is a combobox or a TextField (I tried to get this with the example code (the JTextField) but did not succeed.
    Hopes this clarify the problem a little bid, what I want is when the window is visible to set focus on newly created panes (or in the real program on the panel that is selected via the tabbed pane or via a key combination to shift the focus between the panels) but requestFocusInWindow seems to behave unpredicatable. I can't imagine that what I see is a bug so I must make some assumptions which are not valid but I don't see them, btw listening on the WindowListener is I think not the solution because the frame is already displayed when I want to set the focus and I do not use a modal dialog box.
    The example code follows here
    Marc
    * Main.java
    * Created on December 21, 2004, 8:58 AM
    package testfocus;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    * @author marc
    public class Main
    static int counter;
    /** Creates a new instance of Main */
    public Main()
    * @param args the command line arguments
    public static void main(String[] args)
    JFrame frm=new JFrame();
    JPanel content=new JPanel();
    frm.setContentPane(content);
    final JTabbedPane paneContainer=new JTabbedPane();
    JPanel bar=new JPanel();
    JButton create=new JButton(new AbstractAction("New")
    public void actionPerformed(ActionEvent ev)
    counter++;
    final JPanel pnl=new JPanel();
    pnl.setName("test"+counter);
    paneContainer.add(pnl);
    pnl.setFocusable(true);
    pnl.requestFocusInWindow();
    /* Either use this or the previous line
    SwingUtilities.invokeLater(new Runnable()
    public void run()
    pnl.requestFocusInWindow();
    JButton delete=new JButton(new AbstractAction("Delete")
    public void actionPerformed(ActionEvent ev)
    int i=paneContainer.getComponentCount()-1;
    if (i>=0)
    paneContainer.remove(i);
    JTextField dummy=new JTextField("Test");
    bar.add(dummy);
    bar.add(create);
    bar.add(delete);
    content.setLayout(new BorderLayout());
    content.add(bar,BorderLayout.SOUTH);
    content.add(paneContainer,BorderLayout.CENTER);
    frm.setSize(300,400);
    FocusManager.setCurrentManager(new DefaultFocusManager()
    public void processKeyEvent(Component component,KeyEvent ev)
    System.out.println("Focus owner"+getFocusOwner());
    super.processKeyEvent(component,ev);
    frm.setVisible(true);
    }

  • Can someone explain this chart about Li-ion charge cycles to me

    I consider myself a pretty smart guy, but i couldn't figure this out. I'm thinking that apple just provided this graph without any real explanation of what it means. I'm talking about the one on .. http://www.apple.com/batteries/ that has a caption starting with "Charge Cycle." They provide a general explanation of cycles below, but don't seem to address the same thing the illustration they provided does. What does the 40% 20% 30% 20% 50% 60% mean? Why is "1 Cycle" in the middle and what is the difference between cycle 0-1 and 1-2. basically that illustration makes no sense to me and i'd love for someone to explain it

    That charge is telling you how the charger charges the battery. The voltage charge is the green line and the amperage is the orange line. Voltage goes up to its full extent in the first couple of hours. The amperage starts at full charge strength and goes down as the batery charges so it will not overheat the battery. The most important thing to know about charging a Li (Lithium-ion) battery is that it has two different charge times, quick and full. most Li batteries get about an 80% charge at the quick charge time and 100% charge at the full charge time. when you first charge any rechargable battery make sure you do a full charge and then a full discharge with another full charge afterward. If you do not do this the life of the batery will be significantly diminished.
    I hope this information helps. If you want more information in this subject ask a more direct question.

  • I am trying to use an external HD and need to configure it for the MAC. Can someone explain how to configure the HD (Western Digital - My Passport SE)?

    Can someone help explain how to add an external HD to the Mac? I have a Western Digital My Passport SE and need to configure if for the MAC and add it to the HD location on my Mac.

    Connect the external drive to the Mac. You can do that while the Mac is on, (If the drive is one that has to be plugged into a wall outlet do that too and turn the power on.) If there is a light on the drive it should turn on.
    Now double click on the hard drive icon - top left of the screen of your computer. When it opens look for the Applications folder. Double click that. Next look for a folder called Utilities. Double click. In there you will see a file called Disk Utility.app. Double click on that.
    You will now see something like this, with two items on the left. The second one is your new drive.
    Select it - one click. And click on Erase - one of the buttons at the top, You will see this.
    You must select the Format, it's a drop down - the one shown in the image above is best. You can change the name from Untitled if you want. The name can be changed later if you prefer.
    At this point look at the bottom right. There is a button there called Erase. Click on it. Then go get yourself a cup of coffee - this will take a few minutes.

  • XFL - can someone explain CUBICS attribut in the EDGE tag?

    As there is no XFL documentation, I would like to ask if someone knows what's the CUBICS attribut in EDGE tag used for. I have a script which creates new shapes in XFL, but I don't know how to deal with the cubics part. I don't create it, but than I notice that there are issues when I try to edit shape whithout the cubics info in the IDE (like adding new point). The solution is to touch the shape a little bit, save and reload the source which creates the CUBICS records, but anyway, I would like to understand it a little bit.
    Here is a simple example how cubics looks like:
    <edges>
          <Edge fillStyle0="1" edges="!3786.5 0.5S1|0 0.5!0 0.5|0 3542.5!0 3542.5|3786.5 3542.5!3786.5 3542.5|3786.5 0.5"/>
          <Edge cubics="!3787 3543(;3787,3543 3787,1 3787,1q3787 3543 3787 1);"/>
          <Edge cubics="!0 1(;0,1 0,3543 0,3543q0 1 0 3543);"/>
          <Edge cubics="!3787 1(;3787,1 0,1 0,1q3787 1 0 1);"/>
          <Edge cubics="!0 3543(;0,3543 3787,3543 3787,3543q0 3543 3787 3543);"/>
    </edges>

        Upgrading is always exciting, gbright! You can save up to $25 per line when upgrading with Edge. This does require you upgrading your device and accepting an Edge agreement. You will still qualify for your monthly employee discount off the More Everything access charges as long as the plan is $34.99 or higher. Each line has its own contract/edge agreement. You do not need to wait for the 4th line to be eligible to take advantage of Edge or the discounts. If you are eligible for the standard Edge, you do not need to trade in your current devices. You only trade in the devices when it is early edge. I can provide you more details in a private message.
    I just sent you a follow request. Please follow back and send me this information in a private message.
    Thank you,
    LenaA_VZW
    Follow us on Twitter @VZWSupport

  • Can someone explain this behavior?? (session 0 with htp.init)

    Hi,
    I've noticed that when you access a page using the Session 0 and that page contains an "htp.init" in a before header process, for some reason the session expires and creates a new one.
    I made an example on apex.oracle.com, but first let me explain what've done exactly.
    There's two pages. On page 1, I have an item named :P1_COLOR that is assigned the value of an application item :P_RED. This application item is affected in an application process before header that runs only on page 1 (the value assigned is "This is red"). I also have an item that displays the session id using this code:
    return :APP_SESSION;
    Then, I have a link called "page 2" in the HTML region :
    a href="f?p=&APP_ID.:2:&APP_SESSION.:::::">page 2</a
    Also, more importantly, on page 1 I have a process before header that sets a cookie:
    begin
    htp.init;
    owa_util.mime_header('text/html', FALSE);
    owa_cookie.send(
    name    => 'MY_COLOR_COOKIE_'||:P_RED,
    value   => 'test_value',
    expires => SYSDATE365,+
    path    => null,
    domain  => null                );
    owa_util.mime_header('text/html', TRUE);
    END;
    Now if you go in the application normally without session 0, you will see the "This is red" with the session id and when you click on page 2 you will still see "This is red" with the same session ID
    http://apex.oracle.com/pls/otn/f?p=60310:1::::::
    But when using the Session 0, you see "This is red" with a session id, but when you click page 2, you don't see "This is red" and a new session ID is created, but the link in the address bar still contains the session 0. Also, if you press BACK and then go on page 2 again, you don't lose the :P_RED value nor the session. There seems to be a problem only the first time around.
    http://apex.oracle.com/pls/otn/f?p=60310:1:0:::::
    Can anyone explain me this behavior? Is it a bug? What is the work around? Because, i know that if you want to set a cookie you need "htp.init".
    Note: I 've commented the cookie part of my process and only left the htp.init uncommented and had the same result, that's why I'm saying it is caused by htp.init
    Thanks, reginald
    Edited by: reggieh on Mar 19, 2009 7:09 AM

    Yes, you might need to do something like that. The zero SID cookie is set only once: the first time the application is visited with a zero for session ID. So for email links where you use zero in the link, you could make the link target page a dummy public page (999) with BRANCH_TO_PAGE_ACCEPT in the request and the actual page you want the user to go to in the portion of the request after the pipe symbol, e.g., for page 10, the url would look like:
    http://host:port:/pls/DAD/f?p=60310:999:0:BRANCH_TO_PAGE_ACCEPT|10
    An after-submit process on page 999 would use :REQUEST as the page to redirect to:
    owa_util.redirect_url('f?p=' || :APP_ID || ':' || :REQUEST || ':' || '0');
    apex_application.g_unrecoverable_error := true;
    If this works the way we're thinking, the zero sid cookie will be sent when page 999 is requested, then page 999's after-submit process would take the user to the desiired page on which your process could set the tracking cookie.
    Scott

  • Can someone explain to me "Recommended WAN Access Speed (with services)?

    Looking at this spec sheet:
    http://www.cisco.com/c/dam/en/us/products/collateral/routers/3900-series-integrated-services-routers-isr/Routing_Poster.pdf
    Why offer GE WAN ports on a 1921 if the recommended WAN access speed is only 15Mbps?  Can someone provide context?  I think I'm misunderstanding the specs.
    Thanks!

    Photo sync is only one way, computer to iPhone.
    To get pictures from the iPhone to the computer, copy them to the computer as you would with any other device.
    Pictures saved from emails or instant messages (if done on the device) are in the camera roll.
    Pictures previously synced to the device from a computer are not available to be copied off the device.  They should already be on a computer.

  • Can I use Facebook integration with Mountain Lion without adding all my Facebook contacts to my contacts in Mountain Lion?

    I wanted to post a picture from email straight to Facebook....  Mountain Lion asked if I wanted to add all my Facebook contacts to my Contacts app...  Do I need to do that?  I'd like to keep that separated...

    Yes, you can keep your facebook contacts out of your contacts app.
    Open system preferences>mail, contacts, and calendars>(your facebook account)>contacts
    There should be a check box for contacts, if you uncheck it, your facebook contacts/friends should not end up in your contacts app.
    I'm not 100% sure, sorry, I don't have facebook integration activated on my Mac.

Maybe you are looking for