Can I use "\" to input "¥" symbol under Japanese locale?

Hi, I'm a Mac developer and I want to know the standard behavior for Mac when press "\" key under Japanese locale. Should Mac display "\" or "¥" symbol? I notice that Windows will show "¥", but many Mac applications just show "\", so I want to make clear is this is Mac's standard behavior.
Another question is, how can I input "¥" under Japanese locale? Is "Opt+Y" the only choice I can choose?

do you mean that binding a key to which character is just defined by the keyboard layout/input method? For example, if I input "\" through Kotoeri Hiragana input, it's that input's thing to decide what should output?
Yes. The result of pressing a key with a particular symbol printed on it is determined by the .keylayout file or input method which is active at the time. Using the US physical keyboard with the input set to Kotoeri Hiragana, pressing the key marked \ produces へ in direct Kana mode or \ in the normal mode.

Similar Messages

  • On a Mac OS X version 10.4.11 and itunes 9.1.1.  Can't update to itunes 10.6Trying to get a previously purchased song.  Can't use the purchased option under quick link - nothing shows up and won't let me purchase an already purchased song.  What can I do?

    On a Mac OS X version 10.4.11 and itunes 9.1.1.  Can't update to itunes 10.6, Mac too old. Trying to get a previously purchased song.  Can't use the purchased option under quick link - nothing shows up and won't let me purchase an already purchased song.  What can I do?

    If possible you need to upgrade OS X. However, what you can upgrade to is dependent on what your Mac hardware and configuration is which you have not provided in your profile.

  • How can I use the LabVIEW Symbol Editor as a Sub-VI?

    How can I use the LabVIEW Symbol Editor as a Sub-VI?

    mc-hase wrote:
    > Thank you for your ansver.
    > That means that you see no possibiltiy to use the built in window? (I
    > think the built in window is programmed with LabVIEW as well...)
    The icon editor at least up to version 7.0 of LabVIEW is not written as
    VI but directly implemented inside LabVIEW, which is written in C/C++.
    Rolf Kalbermatter
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Can I use Adobe Illustrator symbol to create a logo identity?

    Is it allowed to use an Adobe Illustrator default symbol (which is normally supplied with the program in the symbols library) to create a logo for a non-for-profit organisation? Is there a contact in Adobe for such enquiries to be officially addressed?
    Many thanks,

    Thanks, Mylenium. Actually it is for a non-for-profit ogranisation and I am not charging anything for it, it is totally on a probono basis. Also the symbol has been modified from its original form in terms of colour.
    Date: Wed, 15 Jul 2009 12:02:57 -0600
    From: [email protected]
    To:
    Subject: Illustrator Can I use Adobe Illustrator symbol to create a logo identity?
    Read the Adobe EULA, section 2.7. Basically it says (in human language) that you can use any of the files that come with Adobe programs in your own work as long as you don't sell them 1:1, i.e. it's okay to use a symbol as part of a logo, but not use a unmodified symbol alone and sell it to clients.
    Mylenium
    >

  • If i buy a T-mobile's unlocked, contract-free iPhone 6 in US at Apple's website, can i use it in China with a local carrier?

    if i buy a T-mobile's unlocked, contract-free iPhone 6 in US at Apple's website, can i use it in China with a local carrier?

    The Model 1586 / 1524 happens to be the one most compatible with China
    http://www.apple.com/iphone/LTE/
    If the phone is primarily for use in China - I would look to getting an unlocked version of that
    There are contradicting theories about Sprint for international use - so I would stay away from the Sprint model in the US

  • Can't using Chinese input in AI CC when upgrade to Mac OS X v10.9 (Mavericks)

    After upgraded to Mac OSX 10.9 (Mavericks), I can't using Chinese (Cangjie & Sucheng) input in AI Creative Cloud, however English and Japanese input are working.
    I have tried it in Photoshop CC and Indesign CC, they are no problem at all.
    Any update for this issue?

    it is irresponsible behaviour ! Don't tell me the problem comes from apple, Photoshop CC and Indesign CC can do it well ! Adobe, we pay every month, you should fix this basic bug at once !!!!!!!

  • Can i use korean input on iphone 4s?

    I know they don't have Korean OS, but can I use only korean language input for texting on iphone 4s??
    Thanks

    If you would read the published tech specs for the device, you would see right away that they have Korean OS, keyboard, and dictionary.
    http://www.apple.com/iphone/specs.html

  • Can you use screen sharing outside of your local network?

    I've been poking around with the "screen sharing" in osx Lion. I have a few questions about it.
    Firstly, is the built-in screen sharing only accessible through the finder?
    Also, is it only available on local networks? I've gotten it to work on two computers on the same network. But, can I use in the built-in screen sharing to look at my work iMac while I'm at home on my Macbook? Or would I need a full VPN client to do this? (Although isn't there built-in VPN compatibility in Lion?)
    Thanks!

    Go here..
    https://discussions.apple.com/message/16439571#16439571
    ... and read my post explaining the different ways to share your screen.  Things should be a little clearer for you, I hope.
    Bob

  • Can I use RunState.ProcessModelClient.Data.Seq[0].Locals.MyVariable in batch model to set variables in a client sequence?

    I have used RunState.ProcessModelClient.Data.Seq["MainSequence"].Locals.MyVariable to set Locals variables in client sequences running in a sequential model but it doesn't seem to work with the batch model. Using a breakpoint I found that RunState.ProcessModelClient.Data.Seq is a container listing all of the sequences in the client sequence with the Main Sequence being index 0.
    I tried using RunState.ProcessModelClient.Data.Seq[0].Locals.MyVariable to set the variables in my client sequence and it worked fine.
    My question: is this method reliable or am I doing something that might cause problems down the road?
    Thanks,
    Steve

    A few issues from doing it this way-
    1- You should try an make your process model such that it can handle almost any sequence file thrown at it.  MainSequence may not a) contain that local variable and b) be at array element 0.  Unless you do some serious error checking then using your process model elsewhere will be a problem because it will throw errors.
    2- It all depends on where you are changing that variable at.  Remember with the Batch Model that you are dealing with multiple copies of your client sequence.  If you change a Locals in the process model which threads does it actually affect?
    3- Locals is to be used for the sole purpose of the sequence it resides in.  Just like in text based programming where you have a function call:
    MyFunc(int x, int y){
    string foo;
    foo is local and really shouldn't be changed outside of MyFunc.  x and y are parameters and should be how data is shared among different sequences in TestStand.  There are variables for bigger scopes as well (i.e. StationGlobals, FileGlobals). 
    I recommend using either a StationGlobal or passing the data as a parameter. 
    In the end you are the engineer and the flexibility that TestStand gives you makes it so you can do things however you want. 
    My 2 Cents,
    jigg
    CTA, CLA
    teststandhelp.com
    ~Will work for kudos and/or BBQ~

  • HT4993 How can I use iPhone 5s sprint, to my local network in Egypt?

    I bought two iPhones 5s from eBay USA , and my brother bring it to me  ,here in  Egypt. I found that is locked to sprint.

    Sprint will only unlock it for international use for current Sprint customers in good standing. If you (or your brother) are not a Sprint customer, you can't use it.

  • Can't use two inputs at the same time (Mac)

    How can I add two different inputs in the same multitrack session (Mac)? Right now I'm only being able to use the default input. When I'm on Audio Hardware and click 'Settings' (to add another input) nothing happens. I used to do this without a problem on Windows.
    I need this to record a podcast with multiple hosts. I need to record what's being heard in the speakers in one input (the voices of the other two hosts) and my voice in the second input (I record it with the default microphone on my Macbook Pro).
    Thanks.

    If you mean 2 windows like on a windows PC, no you can't.

  • How can i use adat inputs thru my motu 828 in logic pro7

    hey guys,
    i really need help with this one. i'm new to logic and can't figure out how to use my additional inputs from adat in logic. it just shows me 12 inputs and outputs, which are just the i/o from motu 828 interface, not including the otpical once.
    thanks so much!!!!

    i have it enabled. before i was using digital performer 4.61 and i was able to see and use all of my i/o from my motu interface. as a matter of fact i still have dp on my hard drive and when it still has all the inputs there, but not in logic. i'm duing some recordings tomorrow and i need all of my inputs to be working.

  • I can't use my field-symbols in my select statement...

    Hello experts,
    I am have been having problems with my report for the past days. My problem is,
    I declared a dynamic field symbol so that I can use it in my select statement
    instead of the standard internal table. But it is giving me a dump. Below is my code:
    REPORT zfr_forex_rev_acctg
           NO STANDARD PAGE HEADING
           LINE-COUNT 0
           LINE-SIZE 100.
    Data dictionary tables                       *
    TABLES: bsis,
            bsas,
            tcurr,
            t001.
    FIELD-SYMBOLS: <fs_dyntable> TYPE STANDARD TABLE,
                   <fs_dynline>  TYPE ANY,
                   <fs_fld>      TYPE ANY,
                   <fs_data>     TYPE REF TO data,
                   <fs_1>        TYPE ANY,
                   <fs_2>        TYPE ANY TABLE.
    CLASS lcl_main DEFINITION.
      PUBLIC SECTION.
        METHODS: build_table,
                 get_data,
                 combine_data,
                 display_header,
                 display_results.
      PRIVATE SECTION.
        TYPES: BEGIN OF t_bsis_bsas,
                zuonr  TYPE bsis-zuonr,
                gjahr  TYPE bsis-gjahr,
                belnr  TYPE bsis-belnr,
                bldat  TYPE bsis-bldat,
                waers  TYPE bsis-waers,
                blart  TYPE bsis-blart,
                dmbtr  TYPE bsis-dmbtr,
                wrbtr  TYPE bsis-wrbtr,
                hkont  TYPE bsis-hkont,
                amount TYPE bsis-wrbtr,
               END OF t_bsis_bsas.
        DATA: it_bsis_bsas TYPE STANDARD TABLE OF t_bsis_bsas,
              v_counter TYPE i.
      data declarations for internal table
        DATA: lt TYPE lvc_t_fcat,
              ls TYPE lvc_s_fcat,
              fldname(50) TYPE c,
              it_ddfields TYPE TABLE OF ddfield,
              wa_ddfields LIKE LINE OF it_ddfields.
    ENDCLASS.
    CLASS lcl_main IMPLEMENTATION.
    METHOD build_table
      METHOD build_table.
        DATA: lv_from    TYPE bsis-gjahr,
              lv_asof    TYPE bsis-gjahr,
              lv_check   TYPE i,
              lt_data TYPE REF TO data,
              lt      TYPE lvc_t_fcat.
        FIELD-SYMBOLS: <fs_year> TYPE gjahr.
        ASSIGN lv_asof TO <fs_year>.
        lv_from = p_year.
        lv_asof = p_asof+0(4).
        v_counter = lv_asof - lv_from.
        wa_ddfields-fieldname = 'ZUONR'.
        wa_ddfields-position  = '0001'.
        wa_ddfields-datatype  = 'CHAR'.
        wa_ddfields-leng      =  '000018'.
        wa_ddfields-decimals  = '00000'.
        APPEND wa_ddfields TO it_ddfields.
        wa_ddfields-fieldname = 'GJAHR'.
        wa_ddfields-position  = '0002'.
        wa_ddfields-datatype  = 'NUMC'.
        wa_ddfields-leng      =  '000004'.
        wa_ddfields-decimals  = '000000'.
        APPEND wa_ddfields TO it_ddfields.
        wa_ddfields-fieldname = 'BELNR'.
        wa_ddfields-position  = '0003'.
        wa_ddfields-datatype  = 'CHAR'.
        wa_ddfields-leng      =  '000010'.
        wa_ddfields-decimals  = '000000'.
        APPEND wa_ddfields TO it_ddfields.
        wa_ddfields-fieldname = 'BLDAT'.
        wa_ddfields-position  = '0004'.
        wa_ddfields-datatype  = 'DATS'.
        wa_ddfields-leng      =  '000008'.
        wa_ddfields-decimals  = '000000'.
        APPEND wa_ddfields TO it_ddfields.
        wa_ddfields-fieldname = 'WAERS'.
        wa_ddfields-position  = '0005'.
        wa_ddfields-datatype  = 'CUKY'.
        wa_ddfields-leng      =  '000005'.
        wa_ddfields-decimals  = '000000'.
        APPEND wa_ddfields TO it_ddfields.
        wa_ddfields-fieldname = 'BLART'.
        wa_ddfields-position  = '0006'.
        wa_ddfields-datatype  = 'CHAR'.
        wa_ddfields-leng      =  '000002'.
        wa_ddfields-decimals  = '000000'.
        APPEND wa_ddfields TO it_ddfields.
        wa_ddfields-fieldname = 'DMBTR'.
        wa_ddfields-position  = '0007'.
        wa_ddfields-datatype  = 'CURR'.
        wa_ddfields-leng      =  '000013'.
        wa_ddfields-decimals  = '000002'.
        APPEND wa_ddfields TO it_ddfields.
        wa_ddfields-fieldname = 'WRBTR'.
        wa_ddfields-position  = '0008'.
        wa_ddfields-datatype  = 'CURR'.
        wa_ddfields-leng      =  '000013'.
        wa_ddfields-decimals  = '000002'.
        APPEND wa_ddfields TO it_ddfields.
        wa_ddfields-fieldname = 'HKONT'.
        wa_ddfields-position  = '0009'.
        wa_ddfields-datatype  = 'CHAR'.
        wa_ddfields-leng      =  '000010'.
        wa_ddfields-decimals  = '000000'.
        APPEND wa_ddfields TO it_ddfields.
        wa_ddfields-fieldname = 'AMOUNT'.
        wa_ddfields-position  = '0010'.
        wa_ddfields-datatype  = 'CURR'.
        wa_ddfields-leng      =  '000010'.
        wa_ddfields-decimals  = '000002'.
        APPEND wa_ddfields TO it_ddfields.
        DATA: lv_position TYPE i.
        lv_position = 0011.
        WHILE lv_check < v_counter.
         <fs_year> = lv_asof.
          wa_ddfields-fieldname = <fs_year>.
          wa_ddfields-position  = lv_position.
          wa_ddfields-datatype  = 'NUMC'.
          wa_ddfields-leng      =  '000004'.
          wa_ddfields-decimals  = '000000'.
          APPEND wa_ddfields TO it_ddfields.
          lv_asof = lv_asof - 1.
          ADD 1 TO: lv_check, lv_position.
        ENDWHILE.
        CLEAR lv_position.
        lv_position = 1.
        LOOP AT it_ddfields INTO wa_ddfields.
          ls-col_pos   = lv_position.
          ls-row_pos   = lv_position.
          ls-fieldname = wa_ddfields-fieldname.
          APPEND ls TO lt.
          ADD 1 TO lv_position.
        ENDLOOP.
        CLEAR lv_position.
        ASSIGN lt_data TO <fs_data>.
        CALL METHOD cl_alv_table_create=>create_dynamic_table
         EXPORTING
          it_fieldcatalog = lt
         IMPORTING
          ep_table = <fs_data>
         EXCEPTIONS
          generate_subpool_dir_full = 1
         OTHERS = 2.
        IF sy-subrc <> 0.
        ENDIF.
        ASSIGN <fs_data>->* TO <fs_1>.
        ASSIGN <fs_1> TO <fs_2>.
        ASSIGN <fs_1> TO <fs_dyntable>.
      ENDMETHOD.
    METHOD get_data
      METHOD get_data.
    *get records from BSIS
        SELECT zuonr gjahr belnr bldat waers blart dmbtr wrbtr hkont
        FROM bsis
        INTO  CORRESPONDING FIELDS OF TABLE <fs_dyntable>
        WHERE bukrs = p_bukrs
          AND hkont IN s_hkont
          AND budat <= p_asof.
    *get records from BSAS
        SELECT zuonr gjahr belnr bldat waers blart dmbtr wrbtr hkont
        FROM bsas
        APPENDING CORRESPONDING FIELDS OF TABLE <fs_dyntable>
        WHERE bukrs = p_bukrs
          AND hkont IN s_hkont
          AND budat <= p_asof
          AND augdt > p_asof.
      ENDMETHOD.
    START-OF-SELECTION.
      DATA: main TYPE REF TO lcl_main.
      CREATE OBJECT main.
      CALL METHOD main->build_table.
      CALL METHOD main->get_data.
    Need help on this problem. Thanks a lot guys and take care!

    Hi guys,
    I found out the problem  and Andreas is right. Now, I am having problems when including DMBTR, WRBTR in my select statement. All the others are ok. Here is my modified code. Please suggest what I need to add/modify. Thanks a lot!
    CLASS lcl_main IMPLEMENTATION.
    METHOD build_table
      METHOD build_table.
        DATA: lv_from    TYPE bsis-gjahr,
              lv_asof    TYPE bsis-gjahr,
              lv_check   TYPE i,
              lt_data TYPE REF TO data,
              lt      TYPE lvc_t_fcat.
        FIELD-SYMBOLS: <fs_year> TYPE gjahr.
        ASSIGN lv_asof TO <fs_year>.
        lv_from = p_year.
        lv_asof = p_asof+0(4).
        v_counter = lv_asof - lv_from.
      ZUONR
        wa_ddfields-fieldname = 'ZUONR'.
        wa_ddfields-position  = '0001'.
        wa_ddfields-datatype  = 'CHAR'.
        wa_ddfields-leng      =  '000018'.
        wa_ddfields-decimals  = '00000'.
        APPEND wa_ddfields TO it_ddfields.
      GJAHR
        wa_ddfields-fieldname = 'GJAHR'.
        wa_ddfields-position  = '0002'.
        wa_ddfields-datatype  = 'NUMC'.
        wa_ddfields-leng      =  '000004'.
        wa_ddfields-decimals  = '000000'.
        APPEND wa_ddfields TO it_ddfields.
      BELNR
        wa_ddfields-fieldname = 'BELNR'.
        wa_ddfields-position  = '0003'.
        wa_ddfields-datatype  = 'CHAR'.
        wa_ddfields-leng      =  '000010'.
        wa_ddfields-decimals  = '000000'.
        APPEND wa_ddfields TO it_ddfields.
      BLDAT
        wa_ddfields-fieldname = 'BLDAT'.
        wa_ddfields-position  = '0004'.
        wa_ddfields-datatype  = 'DATS'.
        wa_ddfields-leng      =  '00008'.
        wa_ddfields-decimals  = '000000'.
        APPEND wa_ddfields TO it_ddfields.
      WAERS
        wa_ddfields-fieldname = 'WAERS'.
        wa_ddfields-position  = '0005'.
        wa_ddfields-datatype  = 'CUKY'.
        wa_ddfields-leng      =  '000005'.
        wa_ddfields-decimals  = '000000'.
        APPEND wa_ddfields TO it_ddfields.
      BLART
        wa_ddfields-fieldname = 'BLART'.
        wa_ddfields-position  = '0006'.
        wa_ddfields-datatype  = 'CHAR'.
        wa_ddfields-leng      =  '000002'.
        wa_ddfields-decimals  = '000000'.
        APPEND wa_ddfields TO it_ddfields.
      DMBTR
        wa_ddfields-fieldname = 'DMBTR'.
        wa_ddfields-position  = '0007'.
        wa_ddfields-datatype  = 'CURR'.
        wa_ddfields-leng      =  '000013'.
        wa_ddfields-decimals  = '000002'.
        APPEND wa_ddfields TO it_ddfields.
      WRBTR
        wa_ddfields-fieldname = 'WRBTR'.
        wa_ddfields-position  = '0008'.
        wa_ddfields-datatype  = 'CURR'.
        wa_ddfields-leng      =  '000013'.
        wa_ddfields-decimals  = '000002'.
        APPEND wa_ddfields TO it_ddfields.
      HKONT
        wa_ddfields-fieldname = 'HKONT'.
        wa_ddfields-position  = '0009'.
        wa_ddfields-datatype  = 'CHAR'.
        wa_ddfields-leng      =  '000010'.
        wa_ddfields-decimals  = '000000'.
        APPEND wa_ddfields TO it_ddfields.
      AMOUNT
        wa_ddfields-fieldname = 'AMOUNT'.
        wa_ddfields-position  = '0010'.
        wa_ddfields-datatype  = 'CURR'.
        wa_ddfields-leng      =  '000010'.
        wa_ddfields-decimals  = '000002'.
        APPEND wa_ddfields TO it_ddfields.
        DATA: lv_position TYPE i.
        lv_position = 0011.
      Additional fields for the years
        WHILE lv_check < v_counter.
          wa_ddfields-fieldname = <fs_year>.
          wa_ddfields-position  = lv_position.
          wa_ddfields-datatype  = 'NUMC'.
          wa_ddfields-leng      =  '000004'.
          wa_ddfields-decimals  = '000000'.
          APPEND wa_ddfields TO it_ddfields.
          lv_asof = lv_asof - 1.
          ADD 1 TO: lv_check, lv_position.
        ENDWHILE.
        CLEAR lv_position.
        lv_position = 1.
        LOOP AT it_ddfields INTO wa_ddfields.
          CASE wa_ddfields-fieldname.
            WHEN 'BLDAT'.
              ls-col_pos   = lv_position.
              ls-row_pos   = lv_position.
              ls-fieldname = wa_ddfields-fieldname.
              ls-inttype   = 'D'.
              ls-ref_table = 'BSIS'.
              ls-ref_field = 'BLDAT'.
            WHEN 'WAERS'.
              ls-col_pos   = lv_position.
              ls-row_pos   = lv_position.
              ls-fieldname = wa_ddfields-fieldname.
              ls-ref_table = 'BSIS'.
              ls-ref_field = 'WAERS'.
            when 'DMBTR'.
              ls-col_pos   = lv_position.
              ls-row_pos   = lv_position.
              ls-fieldname = wa_ddfields-fieldname.
              ls-ref_table = 'BSIS'.
              ls-ref_field = 'DMBTR'.
            when 'WRBTR'.
              ls-col_pos   = lv_position.
              ls-row_pos   = lv_position.
              ls-fieldname = wa_ddfields-fieldname.
              ls-ref_table = 'BSIS'.
              ls-ref_field = 'WRBTR'.
            WHEN OTHERS.
              ls-col_pos   = lv_position.
              ls-row_pos   = lv_position.
              ls-fieldname = wa_ddfields-fieldname.
          ENDCASE.
          APPEND ls TO lt.
          ADD 1 TO lv_position.
        ENDLOOP.
        CLEAR lv_position.
        ASSIGN lt_data TO <fs_data>.
        CALL METHOD cl_alv_table_create=>create_dynamic_table
         EXPORTING
          it_fieldcatalog = lt
         IMPORTING
          ep_table = <fs_data>
         EXCEPTIONS
          generate_subpool_dir_full = 1
         OTHERS = 2.
        IF sy-subrc <> 0.
        ENDIF.
        ASSIGN <fs_data>->* TO <fs_1>.
        ASSIGN <fs_1> TO <fs_2>.
        ASSIGN <fs_1> TO <fs_dyntable>.
      ENDMETHOD.

  • Can I use an animated symbol acting like a mouse cursor?

    Hi,
    I'd like to use an EDGE animated symbol ( a blinking magic wand) as my mouse cursor (hiding the original cursor) that stays on the stage all the time at a certain point in the timeline and when clicked on a hotspot, goes to another point in timeline where the symbol no longer act as a mouse cursor. I used the following code suggested in the following thread by YOSHIOKA Ume
    Re: How to I have an animated symbol follow the coordinates of the cursor when clicked?
    1:create a symbol named "Symbol_1"
    2:add this code on Symbol_1-Timeline.complete.
    //delete this instance when timeline complete. sym.deleteSymbol();
    3:add this code on document.compositionReady.
    //on/off mousemove event handler method
    sym.$("Stage")  
    .mouseover(function(){    
    sym.$("Stage").on("mousemove",draw);  
    //create instance of Symbol_1 on stage.
    function draw(evt){  
    var instance = sym.createChildSymbol("Symbol_1", "Stage");  
    instance.getSymbolElement().css({    
    position:"absolute",    
    top:evt.clientY,    
    left:evt.clientX   });
    But the problem is, the symbol is being repeated/drawn one after another according to the above code, which I don't want. Changing the cursor using CSS requires a URL of a image file, not a symbol inside EDGE as it seems. How can I get back the normal mouse cursor in another point in the timeline (and go back to the animated symbol mode again if needed?). If I click on another hotspot element on the stage, do I actually click on the attached symbol as a cursor? Or the hotspot?
    Also, how can I put a constraint on the cursor so that it stays within a certain rectangular area smaller than the stage?
    A suggestion is much appreciated.

    Here is a example I had to move a symbol around as a mouse cursor and play different part of the symbol timeline based on user action.
    mouseCursor.zip - Google Drive
    To constraint the symbol to stage area,check for the x and y values in the event callback function before moving the symbol.
    To get back the normal cursor set the css back to default
    ex: sym.getSymbol('Stage').getSymbolElement().css({ 'cursor' : 'default'});

  • HT204655 Can you use one Photos library under different accounts?

    I, like many, have recently migrated from iPhoto to the new Photos App. I'm having one significant issue that is bothering me, using a single Photos library under two different accounts on my Mac. In iPhoto, I could easily point both accounts at one library. The only minor issue with doing this was that both accounts couldn't have it open at the same time. However, everything else worked great, including setting the screensaver on both accounts to be the iPhoto library.
    Now that I use Photos, everything works fine on one account, but if I try and open the same Photos library on a different account, it gives a generic error and fails. What am I doing wrong? Is this not possible? That's a pretty obnoxious issue if so.

    It should be fine... it certainly works with iTunes for Windows. You just need to run the same version of iTunes on each machine you want to connect to.
    tt2

Maybe you are looking for

  • Cannot view Profile Manager Portal

    I can use some help here.  Clean install of 10.7 Loin + Server app.  Everything went fine.  The server (Mac Mini) is configured as an OD Master with these services running - Address book, iCal, File Sharing, Mail, VPN, Web and Profile Manager.   DNS

  • When I click on the "+" tab a new window does not open. Why?

    Before today, when I clicked the "+" tab a new tab (window) opened. Now it does not. What changed? I'm operating Firefox 3.5.3 -- Because I want the Google Toolbar. Using Windows 7 on a Dell laptop.

  • Text editor problem

    Hi, my editor auto format my code as below. How to reset the newline symbol and ">>>"? http://i69.photobucket.com/albums/i59/ddlam2/why2.png

  • Should I install Logic 8 on my new iMac for crying out loud?

    I'd like to - but just wanna make sure... or should I wait for updates before even playing with it? Shall I keep Logic 7.2 on here for any reason? And what do I do about old 7.2 files opening in 8? What happens? Thanks.

  • JRE 6 update 11 installs via GPO but fails in Internet Explorer

    The problems I am experiencing are a bit different than those I've read about here and elsewhere. I am installing JRE 1.6.0.11 to WinXP clients via group policy. The installation itself appears to work OK but when I go to test Java I am finding that