How can I set it so when people ring my mobile, it...

How can I set it so when people ring my mobile, it rings me on skype?
I get 0 signal in my house but I have internet and I need to take calls badly.

Hi kpet417,
If you want to add calendar and weather to be seen on Notification Center, then open that up and look at the bottom for the edit button to bring up options to add to it. Take a look at the article below for more information. 
Mac Basics: Notifications keep you informed
https://support.apple.com/en-us/HT204079
Take it easy,
-Norm G. 

Similar Messages

  • How can i set  "Createdby" attribute  When using Custom JheadStart Security

    Hello
    We do not use JASS for Authentication , please help us how can i set createtby attributes with jhs.username in application for any entity object?
    thanks

    See a similar question at History Attributes when using Custom Authentication Type

  • How can i set a password when i open mozilla firefox homepage

    how can i set username and password to the homepage of mozilla firefox

    hello saranghaekijenia, can i ask what you are trying to achieve by setting a password? maybe there is a better way...

  • How can I set the language when sending an e-mail with attachment - 'Html'?

    "Character Broken"
    I made an ALV program, and this convert to "HTML',  and send an e-mail with this.
    Used Process is:
    DATA: gt_abaplist LIKE TABLE OF abaplist,
          gt_html LIKE TABLE OF w3html,
          doc_chng LIKE sodocchgi1,
          objpack LIKE TABLE OF sopcklsti1 WITH HEADER LINE,
          objhead LIKE TABLE OF solisti1 WITH HEADER LINE,
          mail LIKE TABLE OF solisti1 WITH HEADER LINE,
          reclist LIKE TABLE OF somlreci1 WITH HEADER LINE,
          lv_line TYPE i.
    DELETE FROM MEMORY ID '%_LIST'.
    SUBMIT z_template
       AND RETURN EXPORTING LIST TO MEMORY.
    CALL FUNCTION 'LIST_FROM_MEMORY'
      TABLES
        listobject = gt_abaplist
      EXCEPTIONS
        not_found  = 1
        OTHERS     = 2.
    CALL FUNCTION 'WWW_HTML_FROM_LISTOBJECT'
      TABLES
        html       = gt_html
        listobject = gt_abaplist.
    doc_chng-obj_name   = 'URGENT'.
    doc_chng-sensitivty = 'O'.
    doc_chng-obj_descr  = ' '.
    doc_chng-obj_langu  = '3'.
    objhead-line        = ' '.
    APPEND objhead.
    mail[] = gt_html[].
    DESCRIBE TABLE mail LINES lv_line.
    CLEAR: objpack.
    objpack-transf_bin = 'X'.
    objpack-head_start = 1.
    objpack-head_num   = 0.
    objpack-body_start = 1.
    objpack-body_num   = lv_line.
    objpack-doc_type   = 'htm'.
    objpack-obj_descr  = ' '. 
    objpack-doc_size   = lv_line * 255.
    objpack-obj_langu = '3'.
    APPEND objpack.
    CLEAR: reclist.
    reclist-receiver = 'e-mail address'.
    reclist-rec_type = 'U'.
    APPEND reclist.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
      EXPORTING
        document_data              = doc_chng 
        put_in_outbox              = 'X'
        commit_work                = 'X'
      TABLES
        packing_list               = objpack
        object_header              = objhead
        contents_bin               = mail
        receivers                  = reclist
      EXCEPTIONS
        too_many_receivers         = 1
        document_not_sent          = 2
        document_type_not_exist    = 3
        operation_no_authorization = 4
        parameter_error            = 5
        x_error                    = 6
        enqueue_error              = 7
        OTHERS                     = 8.
    SUBMIT rsconn01 AND RETURN.
    I want to show  this by "Japanese".
    But the character is broken.
    LIke This:
    u01D1u072C          u0205|            u0205u072C          u0508           QC u04B90m
    How can I set the language?  How can I solve "Charancter Broken" ?
    Plesse, let me know.
    Thank you so much.
    Edited by: Jaime White 999 on Nov 21, 2011 8:45 AM
    Edited by: Jaime White 999 on Nov 21, 2011 8:46 AM

    Hi Jaime,
    Are you saying, you are getting junk characters in the email attachment? Then pls check the following. Since you want to send Japanese fonts, please pass language 'J' in both  objpack-obj_langu = '3' & doc_chng-obj_langu  = '3' instead of '3' please replace it with 'J'.
    Another thing which you may have to check is the SCOT device type. As I understand from my basis colleague, this may also affect your attachment fonts since the emails are sent through SCOT. Go to transaction SCOT-> Settings-> Device types for format conversion. Check whether wrong device type is defined for Japanese there. Hope this helps
    Regards,
    Gokul

  • How can I set a property when an event happens? (selection changed on datagrid)

    I have a datagrid, I would like to change the backgrund of the datagrid when the selection changed event is fired.
    I can not use data trigger, because is in the case that I expected a value, but in this case is when change, to any value.
    An option is to use an event trigger, but all the examples that I have found is to use with an actions, and I just want to set a property.
    How could I do that?
    I am using MVVM pattern, so I would like to avoid the use in code-behind.
    Thank so much.

    You could use an event trigger and implement your own TriggerAction<T> that sets the background property. There is an example of how to create a custom TriggerAction available here:
    http://stackoverflow.com/questions/942548/setting-a-property-with-an-eventtrigger.
    The following example sets the Background property of the DataGrid to a red SolidColorBrush when the SelectionChanged event is fired. It should give you the idea:
    <DataGrid x:Name="dgrid"
    xmlns:local="clr-namespace:WpfApplication22">
    <i:Interaction.Triggers>
    <i:EventTrigger EventName="SelectionChanged">
    <local:SetPropertyAction PropertyName="Background" TargetObject="{Binding ElementName=dgrid}">
    <local:SetPropertyAction.PropertyValue>
    <SolidColorBrush>Red</SolidColorBrush>
    </local:SetPropertyAction.PropertyValue>
    </local:SetPropertyAction>
    </i:EventTrigger>
    </i:Interaction.Triggers>
    <DataGrid.Columns>
    namespace WpfApplication22
    public class SetPropertyAction : TriggerAction<FrameworkElement>
    public string PropertyName
    get { return (string)GetValue(PropertyNameProperty); }
    set { SetValue(PropertyNameProperty, value); }
    public static readonly DependencyProperty PropertyNameProperty
    = DependencyProperty.Register("PropertyName", typeof(string),
    typeof(SetPropertyAction));
    public object PropertyValue
    get { return GetValue(PropertyValueProperty); }
    set { SetValue(PropertyValueProperty, value); }
    public static readonly DependencyProperty PropertyValueProperty
    = DependencyProperty.Register("PropertyValue", typeof(object),
    typeof(SetPropertyAction));
    public object TargetObject
    get { return GetValue(TargetObjectProperty); }
    set { SetValue(TargetObjectProperty, value); }
    public static readonly DependencyProperty TargetObjectProperty
    = DependencyProperty.Register("TargetObject", typeof(object),
    typeof(SetPropertyAction));
    protected override void Invoke(object parameter)
    object target = TargetObject ?? AssociatedObject;
    PropertyInfo propertyInfo = target.GetType().GetProperty(
    PropertyName,
    BindingFlags.Instance|BindingFlags.Public
    |BindingFlags.NonPublic|BindingFlags.InvokeMethod);
    propertyInfo.SetValue(target, PropertyValue);
    For more information about how to hook up event triggers and handle events in MVVM, please refer to my blog post:
    http://blog.magnusmontin.net/2013/06/30/handling-events-in-an-mvvm-wpf-application/
    Please also remember to mark helpful posts as answer.

  • How can i set settings so when i delete emails off my mac they go off my phone and iPad, how can i set settings so when i delete emails off my mac they go off my phone and iPad

    i want my mac to be the controller of the emails on  my iphone 4s and ipad hd---how do i do this?

    That is how Time Machine works.
    It is not going to keep files you delete from your computer forever.
    But you haven't stated how they are stored on the TC.
    If you copy files to the TC they can be stored long term.. or use another type of backup software.
    See Q3 here about storing data and TM on the TC.
    http://pondini.org/TM/Time_Capsule.html

  • How can I set song as my ringing tone on my iPhone

    How can I set a song as my ringing tone on my iPhone

    You cannot.
    You would have to create a ringtone from the song, then sync it to iphone.
    Google will find several ways to do this

  • How can I set up iCloud?

    How can I set up iCloud? at my IOS mobile.

    Visit https://www.apple.com/icloud/setup/ios.html, good luck!

  • Can't set up icloud as I only have mobile me

    How can I set up icloud, if i only have mobile me? I purchased this mac laptop from neighbor...

    Welcome to the Apple Community.
    iCloud is only available with OS X 10.7.2 or later, Mobile Me finished some time ago.

  • Don't see the green rectangle when taking photo, 2. How can I set up viber on my iPad

    1.When taking photo with this iPad, I don't see the green rectangle. My friend told me that in order to take a clear picture, you need to see the green rectangle. When I take a picture of myself, then I see it. Why is that?
    2. How can you set up Viber? Does Viber can make long distance call back to US when I am out of the country? For example: if I am in Hong Kong, I want to make a call back home to a US phone #, is there any charge. What about SMS? The people I call or SMS have to be on Viber also?
    How can I see your response? Are you going to email me? My email address is [email protected]
    Thanks,
    Christine

    Have you checked Skype's website regarding the ability to do this with their iPad app?

  • How can I set the page that will open, when I open a new tab, to be the same as the homepage?

    How can I set the page that will open, when I open a new tab, to be the same as the homepage?
    An app changed it to some other search engine, before installing the app, I the tab that would open was the homepage I set.
    In my case it is Google, and I want my new tabs to open on Google like they did before the installation.
    thank you,
    Asaf Privman.

    You can middle-click or Ctrl left-click the Home button on the Navigation toolbar to open the Home page in a new tab.
    You can look at one of these extensions:
    * NewTabURL : https://addons.mozilla.org/firefox/addon/newtaburl/
    * New Tab Homepage : https://addons.mozilla.org/firefox/addon/new-tab-homepage/

  • I have bought an iPhone4 and to be able to use it for the first time I connected into a friends itunes. Now when I want to buy itunes stuff on the phone it asks me her password. How can I set up again my itunes account?

    I have bought an iPhone4 and to be able to use it for the first time I connected into a friends' itunes. Now when I want to buy itunes stuff on the phone it asks me her password. How can I set up again my itunes account?
    Now I also have a macbook where I can sync my iphone but it doesn't allow me

    first of all only sync it with 1 computers itune account
    second settings->general->store click the appleID box with her appleID in it and log out

  • How can I set up lightroom 5 in my macbook, so that it becomes my default editing program, so that it starts up when I insert my sd card into the mac

    How can I set up lightroom 5, so that it becomes my main / default editing program & that when I insert my sd card into the mac lightroom starts instead of iPhoto .

    Thanks.  Im new to apple, which preference?
    Sent from my iPhone

  • How can I set up my email so when I delete mail from my Mac it deletes from my iPhone as well?

    How can I set up my email so when I delete mail from my Mac it deletes from my iPhone as well?

    That is a function of your email account, if it is an Imap account it will sync, if it's a POP account, it won't.
    Who provides your email.

  • How can I set up a new network on my apple tv when my remote app isn't picking it up because they aren't on the same network?

    How can I set up a new network on my apple tv when my remote app isn't picking it up because they aren't on the same network? The actual remote doesn't work anymore, so I've been using the remote app on my phone but now that our internet changed, I can't do anything at all. Please help!

    You can't use the remote app to setup a network. If your physical remote isn't working you will need borrow another or purchase a replacement.

Maybe you are looking for

  • Can we use Column Names in Parameter Cursor

    Hi can we use Column Names in Parameter Cursor?? DECLARE CURSOR Emp_Cur (P_Deptno NUMBER) IS SELECT Empno, Ename FROM Emp WHERE Deptno = P_Deptno; BEGIN FOR Emp IN Emp_Cur(10) LOOP DBMS_OUTPUT.PUT_LINE('The Employee Number is: '||emp.Empno); DBMS_OUT

  • Issues with EDGE connection - Curve 8520

    Hi!! I have been having problems with the Blackberry EDGE internet connection on my phone for the past 3 months. I thought it may be a problem with my mobile provider, Yoigo, but they have told me they don't know what's wrong and cannot fix the probl

  • Should I limit the number of photos in a gallery for the phone?

    I have a client with a desktop gallery with about 40 photos. Before I add them all to a phone version, I'm wondering if that's wise in terms of load time on a phone... Anyone have any suggestions for a ballpark number to use for the phone version so

  • Email Via website

    i have set up my yahoo email no problems on the E75 - i am now trying to set up my works email on it. The company i work for sent me the following information: Currently your XXXXX email account is not set up as a standard pop/smtp account so you won

  • For some unaparent reason opening a new tab does not open my home page google. Been ok for years

    Now on Firefox 28.0. I got an update for Divx and installed. Following this new tabs were direct to search.conduit. I uninstalled this but now when I open new tabs I get a blank page and have to manually direct to my homepage. Previously a new tab op