Logic Collaboration Via Dropbox not working

Hi
I've started co-writing with a couple of other Logic9 Users and assumed that by sharing the .lso in dropbox that we could literally save updated versions of the song and add in parts as we see fit.
We're all (for writing purposes) using the factory Logic Sample Libraries.
Wrong.
As soon as I try open an updated Project from dropbox its asking me to locate samples etc.
Any thoughts? Only thing I can think of is that the one of the writers has HIS instruments/samples in the default installation location whereas I have mine on an external TB drive.
Of course what we dont wann do is have logic "Include Assets" every time we save the latest song version to Dropbox cos thats 500MB+ of instrument samples evry time

Unfortunately, Logic doesn't work that way... (Actually it's OS X that doesn't work that way to be more precise)
Logic uses Spotlight to track everything initially but when you save a project out and load it back in it looks at Spotlight for the files and other 'pointers'.. such as the names of the Hard Drives where things are stored.
Different Hard Drives (or even simply different names for your system Hard Drive) and you are proverbally screwed....
The only way i have successfully managed this without needing to include all assets.. is identical systems right down to drive names and so on..
Hence my use of Gobbler... which is a godsend for sharing Projects with others in a practical way. It is much better than Dropbox mainly because it  it 'understands' Logic Pro and the demands/needs of LP users..

Similar Messages

  • Share via Mail not working after Yosemite upgrade

    Hi all,
    I recently upgraded from Lion to Yosemite and now I cannot use the Send via Mail option in Pages (or Numbers for that matter).
    I searched for this already in another tread but the answer (permission repair) did not work. The Exporting option still works, although it wants to save the file in a strange location, namely LIBRARY - CACHES - CLEANUP AT STARTUP - COM.APPLE.IWORK.PAGES.8572.TEMP.XXXXXXX    instead in DOCUMENTS or DESKTOP.
    Any and all advice on this small but annoying inconvenience is welcome :-)
    Thanks
    Ray

    Pages '09 v4.3 has lost this capability on Yosemite. Export to desired document format, and then drag/drop into Mail body.

  • Installing Flash Player 11.8.800.94 via GPO not working properly

    Hello,
    i've installed Flash Player 11.8.800.94 via GPO.
    Installation works fine, but there is no flash player available in Firefox or Internet Explorer.
    Deployed both Flash Players.
    Tried to reinstall Flash Player 11.8.800.94 for Firefox, but it's still not active.
    Windows 7, 64bit
    Greetings,
    Michael

    Hello Comvel.
    RE:
    Hello,
    i haven't fixed it yet.
    I've deployed the last few version of flash player without any problems.
    I haven't found any new things in the admin guide.
    The plugins don't show up in both browsers. I can't enable them.
    On the most importent clients, i've installed flash player manually.
    I know it has been a few months since your post but, I was wonderingif you were able to find a solution for this that didn't involve manual installations. I've recently deployed 11.8.800.175 and am running into the same problems. Some work stations are just fine. But others, (both windows 7 and xp, all IE8) are not working. When navigating to a site like youtube, theres a banner that says update is needed. When you go to manage add-ons there is no shock object/add on.

  • Sync Google Contacts via iTunes not working

    Hi
    Just got a new Macbook with Yosemite and am syncing my Google Mail, Calendar, Contacts with the Macbook without difficulty,  I have disabled iCloud syncing for Mail, Calendar, and Contacts. 
    Now, I want to get Google Contacts set up on my old iPhone 3G (iOS 4.2.1) as a stop gap before getting a new iPhone down the line.  However, I can't find a reliable way of getting my Google Contacts on to the iPhone 3G.
    Exchange Sync and CardDAV do not work.  I don't mind syncing via iTunes but I can't set this up either.  Despite telling iTunes to sync 'All Contacts' it won't sync those from my Google account.  Only contacts in 'On My Mac' group sync across, but I don't want to manually keep track of and copy new Google contacts into this group just to sync.
    Why won't iTunes sync the Google contacts group - currently it is the only group in my OS X Contacts.
    I have reset sync and reinitialised the iPhone to factory image - neither works.
    Any advice appreciated.

    try rebooting the appletv.
    also, you have a first generation appletv but have posted in the second generation appletv forum.

  • Abap code Logic for splitting is not working

    Hi,
    I have a requirement to split a single amount and product into several parts. so far my logic is not working as only the first row is being fetched.
    TYPES: BEGIN of map_tab,
             ZPRODH4 TYPE NEWMAPPINGTABLE-/BIC/ZNEW_MP,
             ZSPRATIO TYPE NEWMAPPINGTABLE-/BIC/ZSP_RATIO,
             ZMATERIAL TYPE NEWMAPPINGTABLE-MATERIAL,
           END OF map_tab.
    Data:IT_MAP_TAB TYPE HASHED table of MAP_TAB with unique Key ZPRODH4,
         wa_it_map_tab like line of IT_MAP_TAB.
    Data rp TYPE _ty_s_TG_1.
    LOOP AT RESULT_PACKAGE into rp.
    Clear wa_it_map_tab.
    read table IT_MAP_TAB into wa_it_map_tab with table key ZPRODH4 =
    rp-prodh4.
    IF sy-subrc EQ 0.
    select SINGLE /BIC/ZNEW_MP /BIC/ZSP_RATIO MATERIAL into corresponding
    fields of wa_it_map_tab from NEWMAPPINGTABLE
    where  PRODH4 = rp-PRODH4.
    IF sy-subrc EQ 0.
      rp-PRODH4 = wa_it_map_tab-ZPRODH4.
      rp-AMOUNT = rp-AMOUNT * wa_it_map_tab-Zspratio.
      rp-MATERIAL = wa_it_map_tab-ZMATERIAL.
    ENDIF.
    ENDIF.
    MODIFY RESULT_PACKAGE FROM rp.
    ENDLOOP.
    <br><br>
    This is how my tables looks like
    Source Table
    PROD                                       AMOUNT
    900006600999                          1000
    400004400000                           500
    NEW MAPPING TABLE
    PROD                                      NEWPROD                      MATERIAL                             SPLITRATIO
    900006600999                         1000066001111                    7000                                         0.5
    900006600999                         1000066002222                    7001                                         0.4
    900006600999                         1000066003333                    7002                                         0.1
    OLD MAPPING TABLE
    PROD                              MATERIAL
    4000044000000               7100
    TARGET TABLE
    PROD                        PROD3               MATERIAL        AMOUNT
    1000066001111         100006600            7000                 500            
    1000066002222         100006600            7001                 400          
    1000066003333         100006600            7002                 100
    4000044000000         400004400            7100                 500

    Hi,
    I rewrote the code the like this and it is still not working as the new value is not being fetched.
    {* TABLES: ...
    Defining tables
    Tables: /BIC/OLDTABLE,/BIC/NEWTABLE.
    $$ end of global - insert your declaration only before this line -
    The follow definition is new in the BW3.x
    TYPES:
    BEGIN OF DATA_PACKAGE_STRUCTURE.
    INCLUDE STRUCTURE /BIC/CS8ZSEM_TC03.
    TYPES:
    RECNO LIKE sy-tabix,
    END OF DATA_PACKAGE_STRUCTURE.
    DATA:
    DATA_PACKAGE TYPE STANDARD TABLE OF DATA_PACKAGE_STRUCTURE
    WITH HEADER LINE
    WITH NON-UNIQUE DEFAULT KEY INITIAL SIZE 0.
    New Material table
    DATA: BEGIN OF I_S_NEWTAB,
    PRODH4 TYPE /BIC/NEWTABLE-PRODH4,
    /BIC/ZNEW_MP TYPE /BIC/NEWTABLE-/BIC/ZNEW_MP,
    /BIC/ZSP_RATIO TYPE /BIC/NEWTABLE-/BIC/ZSP_RATIO,
    MATERIAL TYPE /BIC/NEWTABLE-MATERIAL,
    END OF I_S_NEWTAB.
    Data: i_t_newtab LIKE TABLE OF I_S_NEWTAB.
    *Old Material table
    DATA: BEGIN OF I_S_OLDTAB,
    PRODH4 TYPE /BIC/OLDTABLE-PRODH4,
    MATERIAL TYPE /BIC/OLDTABLE-MATERIAL,
    END OF I_S_OLDTAB.
    DATA: i_t_oldtab like table of I_S_oldTAB.
    data: e_s_result type STANDARD TABLE OF DATA_PACKAGE_STRUCTURE WITH
    HEADER LINE
    WITH NON-UNIQUE DEFAULT KEY INITIAL SIZE 0.
    data: e_t_result type STANDARD TABLE OF DATA_PACKAGE_STRUCTURE WITH
    HEADER LINE
    WITH NON-UNIQUE DEFAULT KEY INITIAL SIZE 0.
    data: amount type DATA_PACKAGE_STRUCTURE-/BIC/AMOUNT.
    data: CUSTSOLD type DATA_PACKAGE_STRUCTURE-/BIC/CUSTSOLD.
    selecting data from new table
    Select PRODH4 /BIC/ZNEW_MP /BIC/ZSP_RATIO MATERIAL FROM /BIC/NEWTABLE
    into corresponding fields of table i_t_newtab.
    SORT i_t_newtab by PRODH4.
    Selecting data from old material table
    Select PRODH4 MATERIAL FROM /BIC/OLDTABLE into corresponding fields
    of table i_t_oldtab.
    SORT i_t_oldtab by PRODH4.
    LOOP AT DATA_PACKAGE INTO e_s_result.
    read table i_t_oldtab into i_s_oldtab with key PRODH4 =
    e_s_result-PRODH4.
    if sy-subrc EQ 0.
    MOVE i_s_oldtab-PRODH4 to e_s_result-PRODH4.
    MOVE i_s_oldtab-PRODH4(14) to e_s_result-PRODH3.
    MOVE i_s_oldtab-MATERIAL to e_s_result-MATERIAL.
    APPEND e_s_result to e_t_result.
    ELSE.
    LOOP AT i_t_newtab into i_s_newtab where PRODH4 = e_s_result-PRODH4.
    amount = i_s_newtab-/BIC/ZSP_RATIO * e_s_result-/BIC/AMOUNT.
    CONCATENATE DATA_PACKAGE-SOLD_TO i_s_newtab-PRODH4(10) into AMOUNT.
    MOVE i_s_newtab-/BIC/ZNEW_MP to e_s_result-PRODH4.
    MOVE i_s_newtab-MATERIAL to e_s_result-MATERIAL.
    MOVE i_s_newtab-/BIC/ZNEW_MP(14) to e_s_result-PRODH3.
    MOVE amount to e_s_result-/BIC/AMOUNT.
    MOVE ZASTUOTE to e_s_result-/BIC/CUSTSOLD.
    APPEND e_s_result to e_t_result.
    ENDLOOP.
    ENDIF.
    ENDLOOP.
    REFRESH DATA_PACKAGE.
    MOVE e_t_result to DATA_PACKAGE[].}

  • Javascript calls via getURL not working anymore

    After upgrading to flash player 9,0,115,0 a simple call like
    getURL("javascript(alert'message')); doesn't work anymore on
    Internet Explorer (it fails without any error in policyfiles.txt,
    but it still work on Firefox). My IE version is 7.
    I can't use ExternalInterface 'cause i need to publish as
    Flash Player 7 AS2.0.
    Any comment or suggestion?

    I have a similar problem. When running a local HTML file,
    using IE7 and FP 9,0,115,0, all the getURL function calls cease to
    work.
    If I downgrade to FP8, still using IE7, everything works.
    If I downgrade to IE6, still using FP9.0.115.0, everything
    works.
    If I load the HTML via HTTP (instead of local), using IE7 and
    FP9.0.115.0, everything works.
    If I use Firefox, with FP9.0.115.0, everything works.
    So, the function calls fail only when the swf is contained on
    a
    local HTML file, using
    IE7, and
    FP9.0.115.0. The problem is, most of our customers have that
    software profile, and all of them need to load the content locally
    (its very heavy for network transmission).
    All the getURLs are like this:
    getURL("javascript:someFunction()");
    We're setting the 'allowScriptAccess' to 'always'.
    Also, if we put the OBJECT tag inside the HTML (instead on an
    external JS file), the function calls still do not work.

  • Logic Pro X is not working with nanoPAD2

    Hello,
    I bought the nanopad2, I am using it with Logic Pro X and I am having some strange situation, basically Logic is not respecting the changes that I do in the Korg Kontrol Editor, for example if I set in the Kontrol Editor that the first pad is D1 note when I press that pad Logic interprets that the note is A#1.
    I thought that maybe the problem was the device but I have tested it in Reaper and it works perfectly.

    Hi Guys, thanks but I have found the solution. Basically the issue was due a wrong configuration on Logic, in order to set up for use it with nanoPAD2 you have to go to: Logic Pro X -> Preferences -> Display -> Display Middle C as: G4 (Roland).
    And it is all, the issue was fixed.
    Thanks for your help!!

  • Dropbox not working properly

    Public Drop Box is not working between mine and my husband's accounts on the same laptop.
    It used to work and now the folders don't show up on the other side.
    help please?
    Thx, Lucy

    To generalise this a bit more. Not only thunar-dropbox does not open the link in my preferred browser, i.e. chromium, but also other applications such as zim do not open links in chromium.
    This must be a special problem related to links.
    To recapitulate.
    - xdg-open http://google.com opens a new chromium window. works
    - exo-open http://google.com opens a new chromium window. works
    - chromium-browser is defined as default browser through exo-preferred-applications
    - perl-file-mimeinfo is installed
    - xdg-settings get default-web-browser reports me
    xdg-settings: unknown desktop environment
    - I export the DE and BROWSER variable in my .bashrc
    export DE=xfce
    export BROWSER=exo-open
    - As fallback my ~/.local/share/applications/defaults.list contains the following entries
    text/html=chromium-browser.desktop;
    application/x-directory=chromium-browser.desktop
    I'm helpless what else to do. So if someone can please explain me the mimetype handling in Openbox. I'm very glad for that.
    Regards
    Last edited by orschiro (2011-09-23 03:09:44)

  • Soundtrack Pro, with Logic Studio. app will not work, while Garage Band is present on my iMac?

    Still new to Logic Pro. Got the Soundtrack Pro when i bought the Logic Studio. am i to understand that this app will not work, while Garage Band is present on my iMac?
    if this is true, i'd welcome any suggestions.  do i have to delete GarageBand on current machine which has Logic Pro?
    appreciate any help
    thanks,

    My MacPro w/ OSX 10.6.8 runs GarageBand, SoundtrackPro and Logic 9 (Express) without issues.
    Everything was installed fresh - ie no overwrite OS upgrades and no app version overwrite upgrades.
    Just so we are clear - an UPGRADE would be from OSX 5 to 6 or from Logic 8 to 9 and involves a purchase. UPDATES are those decimal increments - 10.6.7 to 10.6.8  or Logic 9.1.3 to 9.1.6 that are free.
    Sometimes the sequence of installs can make a difference.
    Good luck,
    x

  • Via Heade not Work!! (6.0sp1)

    Hi.
    i used the http header that "Via".
    but web server response "400" error into GET method.
    i have that logs.
    it's OK - sjs web 6.1sp6 on Windows. return code 200.
    started....started....
    WWWConnect::Connect("192.168.0.141","80")\n
    IP = "192.168.0.141:80"\n
    source port: 64654\r\n
    REQUEST: **************\n
    GET / HTTP/1.0\r\n
    Via: test\r\n
    Host: 192.168.0.141\r\n
    Accept: */*\r\n
    \r\n
    RESPONSE: **************\n
    HTTP/1.1 200 OK\r\n
    Server: Sun-ONE-Web-Server/6.1\r\n
    Date: Thu, 03 Jun 2010 08:23:01 GMT\r\n
    Content-length: 461\r\n
    Content-type: text/html\r\n
    Last-modified: Sun, 31 May 2009 13:36:07 GMT\r\n
    Accept-ranges: bytes\r\n
    Connection: close\r\n
    \r\n
    <!DOCTYPE doctype PUBLIC "-//w3c//dtd html 4.0 transitional//en">\r\n
    <HTML>\r\n
    <HEAD>\r\n
    <meta http-equiv="Content-Type"\r\n
    \tcontent="text/html; charset=iso-8859-1">\r\n
    \t<TITLE>Sun[tm] ONE Web Server, Enterprise Edition 6.1</TITLE>\r\n
    </HEAD>\r\n
    \r\n
    <FRAMESET BORDER=0 ROWS="80, *">\r\n
    <FRAME NAME="banner" SRC="banner.html" SCROLLING="no">\r\n
    \t<FRAME NAME="content" SRC="launch.html" SCROLLING="auto">\r\n
    </FRAMESET><noframes></noframes>\r\n
    </HTML>\r\n
    \r\n
    WWWConnect::Close("192.168.0.141","80")\n
    closed source port: 64654\r\n
    finished.
    it's not work . iplanet 6.0sp1 on solaris. return code 400.
    started....
    WWWConnect::Connect("192.168.0.71","80")\n
    IP = "192.168.0.71:80"\n
    source port: 64717\r\n
    REQUEST: **************\n
    GET / HTTP/1.0\r\n
    Via: test\r\n
    Host: 192.168.0.71\r\n
    Accept: */*\r\n
    \r\n
    RESPONSE: **************\n
    HTTP/1.1 400 Bad request\r\n
    Server: Netscape-Enterprise/6.0\r\n
    Date: Thu, 03 Jun 2010 08:23:18 GMT\r\n
    Content-type: text/html\r\n
    Content-Length: 147\r\n
    Connection: close\r\n
    Via: 1.1 AN-0003011042661574\r\n
    \r\n
    <HTML><HEAD><TITLE>Bad request</TITLE></HEAD>\n
    <BODY><H1>Bad request</H1>\n
    Your browser sent a query this server could not understand.\n
    </BODY></HTML>
    WWWConnect::Close("192.168.0.71","80")\n
    closed source port: 64717\r\n
    finished
    why? 6.0 is not support via header?
    any idea?
    thk...

    6.0 is out of support life. pl upgrade to 7.0 update 8 or above

  • Connection to server via smb not working

    hi,
    i have an old G4 iBook 10.3.9 that i'm using for school. to connect to our school server for course material, we were given smb log-in instructions from our it dept. when i put in the ip address, i get a prompt for the id and password, but i cannot get access. we tried logging on with my professor's macbook pro (10.5) and it worked flawlessly.
    i've done all software updates and rechecked the procedure dozens of times, but i can't figure out why it's not working. if anyone has an idea, i'm all ears.
    thanks,

    created in my UTF-8 Mysql DB your table and inserted a record; the select shows:
    SQL> select * from "movieclass"@mysql;
    idClass
    ClassName
    123
    H e l l o
    As you can see the content is there, the "space" between the letters is related to unicode. Each character is interpreted by 2 bytes and SQL*Plus wrongly displays both. Using iSQLPLus or SQLDeveloper does not show the "space" between the letters.
    Here the data type mapping:
    SQL> desc "movieclass"@mysql;
    Name Null? Type
    idClass NUMBER(3)
    ClassName NOT NULL NVARCHAR2(50)
    What's the exact version of DG4ODBC you're using? 11.1.0.7?
    According to the listener file you're using DG4ODBC on Windows. There was a high/low byte issue in DG4ODBC for Windows. This issue is fixed in 11.1.0.7 and a certain patch. So I recommend you to get first the 11.1.0.7 patchset (if you don't already have it installed):
    6890831 Oracle Database Family: Patchset
    11.1.0.7.0 PATCH SET FOR ORACLE DATABASE SERVER 11.1.0.7.0
    and then please apply also the latest patch:
    8689191 Oracle Database Family: Patch
    ORACLE 11G 11.1.0.7 PATCH 16 BUG FOR WINDOWS 32 BIT 11.1.0.7.0
    There was a high/low byte issue
    Edited by: kgronau on Aug 11, 2009 10:28 AM

  • Why does the logic pro 9 upgrade not work on OS X 10.8.4 ?

    Just decided to upgrade to logic 9 from my 8 (an upgrade from 6!) but I also have Protools on my computer (dont hate). Tools 11 needs 10.8.4 but the logic 9 update refuses to work with 10.8.4 ...BTW pro 8 is still working well on my system, but 9 has some additional cool featurs etc
    Additionally an upate to Logic X loses all my 32bit plugins so...I am  staying with 8/9 for a while ..any help to get 9 functional??

    It is the installer that's quitting, or Logic Pro when you try to launch it? If the latter, download all the available updates, either through Software Update or the standalone downloaders;
    http://support.apple.com/downloads/#logic%20pro%209
    and apply them before attempting to launch Logic. That might work better.
    Regards.

  • Read subfrom value via context not work

    Hi,
    I was created a context "MedicalClaimsInfo" with cadinality 1..n and sub value node under "MedicalClaimsInfo" called "ClaimDetails" with cadinality 0..n
    In interactive form, i created subform to populate a table to capture claim details record into context "ClaimDetails".
    May I know in java web dynpro, how am i going to capture the context record ?
    Following code is not work ! and return null.
    IClaimsDetailsNode nodeClaimsDetails = wdContext.nodeClaimsDetails();
    int sizeClaimsDetails = nodeClaimsDetails.size();
    String s = "";
    for(int j=0; j<sizeClaimsDetails; ++j)
    s = s + " : " + nodeClaimsDetails.getClaimsDetailsElementAt(j).getSubty();
    wdThis.wdGetAPI().getComponent().getMessageManager().reportSuccess(s);

    problem solved

  • Script Logic in BPC is not working properly

    Hi All,
    I have the BPC Microsoft version 7.0.114. I am trying to create a script logic to calculate price x units.
    I have an application called GYP with the following dimensions:
    PL (Account type) in this dimension are the units
    Time
    Category
    Entity
    Product
    RptCurrency
    I have another application called PRICE with the following dimensions:
    Price  (Account type) in this dimension are the prices
    Time
    Category
    Entity
    Product
    RptCurrency
    The script logic i created in the GYP application is as follows:
    *XDIM_MEMBERSET PL="Units"
    *XDIM_MEMBERSET PRODUCT=<ALL>
    *XDIM_MEMBERSET ENTITY=<ALL>
    *XDIM_MEMBERSET CATEGORY="Budget"
    *LOOKUP PRICE
    *DIM PR:PRICE ="PRICES"
    *ENDLOOKUP
    *WHEN PL
    *IS "Units"
    *REC(FACTOR=LOOKUP(PR), PL="Revenues")
    *ENDWHEN
    *COMMIT
    I also put in the default.lgf :
    *INCLUDE UnitsxPrice.LGF
    *COMMIT
    I have loaded data for units and price only for one product to validate the script logic but I'm not getting any calculated value in the revenues element.
    I have read a lot of documentation about script logic but i haven't found which could be the problem.
    Please, could you help me to know what i am missing to?
    Thanks in advance for all your help.
    Regards,
    Luisana

    Hi,
    Your script logic looks fine to me. However, I would request you to make a small change in your default logic.
    Lets say that you created the script logic with the name CALCULATION.LGF, then the default logic should look like below:
    *INCLUDE CALCULATION.LGF
    Notice that the name of the script logic should be consistent (and I have removed the commit statement from the default logic).
    Hope this helps.

  • Putting a multidimensional array (from amfphp) into list dataprovider via actionscript not working

    when i do it using mxml, the list populates but when i try
    doing it using actionscript 3 it is not working.
    //DOESNT WORK...
    var catList:List = new List;
    catList.dataProvider = multiDArr;
    catList.labelField = 'label';
    this.addChild(catList);
    //WORKS...
    var catList:List = new List;
    catList.dataProvider = singleDArr;
    catList.labelField = 'label';
    this.addChild(catList);
    //WORKS...
    <mx:List dataProvider="{multiDArr}" />
    // here is the array i am passing from amfphp and putting
    into multiDArr ...
    $arr[$i]['label'] = mysql_result($result,$i,'feature_name');
    $arr[$i]['_type'] = mysql_result($result,$i,'feature_type');
    $arr[$i]['_value'] =
    mysql_result($result,$i,'feature_value');

    well i got a solution to my problem...for now!

Maybe you are looking for